
/* Ürünler Bölümü */
.products-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Arka plan gradyent - Modern renkler */
.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #0f766e 50%, #164e63 75%, #0c4a6e 100%);
    z-index: -10;
}

/* Blur blob efektleri - Renkli */
.blur-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -10;
    animation: pulse 6s ease-in-out infinite;
    mix-blend-mode: screen;
}

.blob-1 {
    top: -100px;
    right: -100px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    opacity: 0.3;
}

.blob-2 {
    bottom: -150px;
    left: -100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    opacity: 0.25;
    animation-delay: 2s;
}

.blur-blob::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(34, 197, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1) translateY(-20px);
    }
}

/* Header Başlık - Modern Styling */
.header-section {
    text-align: left;
    margin-bottom: 64px;
}

.header-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    background: rgba(6, 182, 212, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    backdrop-filter: blur(10px);
}

.label-line {
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4 0%, #10b981 100%);
    border-radius: 999px;
    animation: slideRight 0.8s ease-out;
}

@keyframes slideRight {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 24px;
        opacity: 1;
    }
}

.header-label span {
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-section h2 {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #cc2020 0%, #e0f2fe 50%, #a7f3d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(4, 9, 9, 0.3);
}

.header-section .lead {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 500px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Ürün Kartı - Modern Design */
.product-card {
    position: relative;
    height: 100%;
    cursor: pointer;
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.3) 0%, 
        rgba(16, 185, 129, 0.2) 50%, 
        rgba(6, 182, 212, 0.1) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
    filter: blur(12px);
}

.product-card:hover .card-glow {
    opacity: 1;
    filter: blur(20px);
    transform: scale(1.05);
}

.card-content {
    position: relative;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.7) 0%, 
        rgba(30, 41, 59, 0.5) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.1) 0%, 
        transparent 50%, 
        rgba(16, 185, 129, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .card-content::before {
    opacity: 1;
}

.product-card:hover .card-content {
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.3),
                0 0 40px rgba(6, 182, 212, 0.1);
    transform: translateY(-12px);
    border-color: rgba(6, 182, 212, 0.4);
}

/* Loading Badge - Modern */
.loading-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.15) 0%, 
        rgba(16, 185, 129, 0.1) 100%);
    border: 1.5px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    margin-top: 80px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 24px rgba(6, 182, 212, 0.8);
    }
}

.loading-badge span {
    font-size: 14px;
    background: linear-gradient(135deg, #1b1c1c 0%, #070f0c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .header-section {
        text-align: center;
    }

    .header-label {
        justify-content: center;
    }

    .header-section h2 {
        font-size: 38px;
    }

    .header-section .lead {
        margin-left: auto;
        margin-right: auto;
    }

    .blur-blob {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .header-section h2 {
        font-size: 28px;
    }

    .header-section .lead {
        font-size: 16px;
    }
}

:root {
    --primary: #6610F2;
}

.top-bar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.btn-light {
    background-color: #fff;
    border-color: #dee2e6;
    color: #212529;
}

.bg-primary, .btn-primary {
    background-color: #672f2f !important;
}

.navbar-brand {
    color: var(--primary);
}

.btn-light i {
    color: var(--primary);
}

.slider_nav {
    max-height: 250px;
}

@media (min-width: 1200px) {
    .slider_nav {
        max-height: 300px;
    }
}

@media (min-width: 1400px) {
    .slider_nav {
        max-height: 350px;
    }
}

.img-wrap {
    position: relative;
    padding: 1rem;
}

.img-wrap span {
    position: absolute;
    top: 10px;
    right: 10px;
}

.info-wrap {
    padding: 1rem 1.2rem;
}

.info-wrap .title {
    display: block;
    text-decoration: none;
    color: #51585e;
}

/* .price-wrap .price-discount {
    font-size: 1.2em;
} */

.img-wrap {
    height: 240px;
    text-align: center;
}

.img-wrap img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: cover;
}

.breadcrumb a {
    color: #fff;
    opacity: .9;
}

.breadcrumb .breadcrumb-item {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

/* gallery */
.gallery-wrap .img-big-wrap {
    width: 100%;
    height: 400px;
    margin-bottom: 1rem;
    text-align: center;
}

.gallery-wrap .img-big-wrap img {
    max-width: 100%;
}

.gallery-wrap .thumbs-wrap {
    text-align: center;
}



.gallery-wrap .thumbs-wrap a {
    width: 60px;
    height: 60px;
    border: 1px solid #dde2e6;
    border-radius: .4rem;
    margin: 3px;
    display: inline-block;
    overflow: hidden;
}

.gallery-wrap .thumbs-wrap img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.checked {
    color: orange;
}
