/* Products Page Styles */
.products-page {
    padding-top: 80px;
    background:white;
}

/* Filters */
.product-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    justify-content: center;
}

.filter-btn {
    font-weight: bold;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Play', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--text-primary);
    color: var(--text-primary);
    font-weight: bold;
    transform: translateY(0px);
}

.filter-btn.active {
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.2);
}

/* Product Categories */
.product-category {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 80px;
    transition: opacity 0.3s ease;
}

.category-title {
    color: var(--accent-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
}

/* Product Grid */
.product-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Play', sans-serif;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-features li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.product-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--baslik-text-primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .category-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-items {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .product-image {
        height: 200px;
    }

    .product-group {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .category-title {
        font-size: 1.8rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Show All Button */
.show-all-products {
    text-align: center;
    margin: 50px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.show-all-products.visible {
    opacity: 1;
    visibility: visible;
}

.btn-show-all {
    padding: 15px 30px;
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid var(--baslik-text-primary);
    border-radius: 8px;
    color: var(--baslik-text-primary);
    font-family: 'Play', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-show-all i {
    font-size: 1.2rem;
}

.btn-show-all:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.15);
}

/* Ürün listesi için düzenleme */
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Her bir ürün grubunun genişliğini ayarla */
.product-group {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 20px;
}

/* Liste elemanlarının font boyutunu büyüt */
.product-group ul li {
    font-size: 1.1rem;
}

/* Hero Section Stilleri */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #041b72, #020833);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 27, 114, 0.7);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.nav-btn:hover,
.nav-btn.active {
    background: #fff;
    color: #041b72;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Kategori Blokları */
.category-block {
    padding: 80px 0;
    position: relative;
    background: #fff;
}

.category-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.category-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.category-col h2 {
    color: #072878;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Ürün Listesi */
.product-list {
    list-style: none;
    padding: 0;
}

.product-list li {
    padding: 1rem;
    border-bottom: 1px solid rgba(7, 40, 120, 0.1);
    color: #072878;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.product-list li:hover {
    background: rgba(7, 40, 120, 0.05);
    padding-left: 1.5rem;
}

.category-section {
    display: none;
    opacity: 1;
    transition: opacity 0.3s ease;
    padding: 60px 0;
    background: #fff;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .category-content {
        grid-template-columns: 1fr 1fr;
    }

    .category-col:last-child {
        grid-column: 1 / -1;
    }

    .hero-title {
        font-size: 3rem;
    }

    .category-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .category-content {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .hero-section {
        min-height: 60vh;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .nav-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .nav-btn {
        width: 100%;
    }
}

.slide-image {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1; /* En alta al */
    cursor: pointer;
}

.blur-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    z-index: 0; /* Arka planda kalması için */
    opacity: 0.5; /* Opaklık ayarı */
    margin: 20px 0; /* Üstte ve altta boşluk bırak */
}