/* ==========================================================================
   ASSO GÄ°YÄ°M - PROFESSIONAL CSS (FULL VERSION)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Renk Paleti (Grimsi & AÃ§Ä±k) */
    --gold: #C8973F;
    --gold-l: #e8c96d;
    --dark: #2d2d2d;
    --gray: #777;
    --gray-l: #e0e0e0;
    --cream: #f4f4f4;
    /* Sayfa arka planÄ± artÄ±k grimsi aÃ§Ä±k */
    --cream2: #ececec;
    --white: #ffffff;
    --red: #d32f2f;
    --green: #2e7d32;

    /* GÃ¶lge ve Border Radius */
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow2: 0 10px 40px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --radius2: 20px;
    --trans: all 0.3s ease;

    /* Tipografi */
    --disp: 'Outfit', sans-serif;
    --body: 'Inter', sans-serif;
}

/* â”€â”€ GENEL AYARLAR â”€â”€ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--body);
    background: var(--cream);
    color: var(--dark);
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--trans);
}

a:hover {
    color: var(--dark);
}

img {
    max-width: 100%;
    display: block;
}

/* HATA DÃœZELTME: NoktalÄ± virgÃ¼l eksikliÄŸi giderildi */
button,
input,
select,
textarea {
    font-family: var(--body);
}

/* â”€â”€ DUYURU (Eski HTML'ler iÃ§in yedek) â”€â”€ */
.duyuru {
    background: var(--dark);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
}

.duyuru span {
    display: inline-block;
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(100vw);
    }

    to {
        transform: translateX(-100%);
    }
}

/* â”€â”€ ARAMA BARI (Header altÄ± arama) â”€â”€ */
.search-bar {
    padding: 12px 0;
    background: var(--cream2);
    border-bottom: 1px solid var(--gray-l);
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-form input {
    flex: 1;
    border: 2px solid var(--gray-l);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    transition: var(--trans);
}

.search-form input:focus {
    border-color: var(--gold);
}

.search-form button {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--trans);
}

.search-form button:hover {
    background: var(--dark);
}

/* â”€â”€ BUTTONLAR â”€â”€ */
.btn-asso {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--trans);
    border: none;
    text-decoration: none;
    white-space: nowrap;
    background: var(--gold);
    color: var(--white);
}

.btn-asso:hover {
    background: #b8873e;
    color: var(--white);
    transform: translateY(-1px);
}

.btn-asso-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 9px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans);
    text-decoration: none;
}

.btn-asso-outline:hover {
    background: var(--gold);
    color: var(--white);
}

/* (Eski PHP'ler için Bootstrap overridelarÄ±) */
.btn-primary {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--white);
}

.btn-primary:hover {
    background: #b8873e !important;
    border-color: #b8873e !important;
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--dark2);
    color: var(--white);
}

/* ── PREMIUM HERO SLIDER (SWIPER) ── */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-swiper {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    /* Based on user image dimensions ~1.6:1 */
    min-height: unset;
}

@media (max-width: 1024px) {
    .hero-swiper {
        height: auto;
        min-height: unset;
    }
}

@media (max-width: 768px) {
    .hero-swiper {
        height: auto;
        min-height: unset;
        aspect-ratio: 16 / 10; /* Match desktop ratio to prevent vertical crop */
    }
    .slide-bg {
        object-fit: cover;
        object-position: center top; /* Focus on the top/center of the model */
    }
}

.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    /* Alt kısma hizalama */
    justify-content: center;
    padding-bottom: 20px;
    /* Alttan boşluk - Yazıları aşağı indirdik */
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* Blurred background removed as images now use object-fit: cover */

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fill exactly */
    object-position: center;
    z-index: 1;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none;
}

.slide-link:hover .slide-bg {
    transform: scale(1.06) !important;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.01);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    /* Genişletildi */
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-tagline {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.btn-hero-premium {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    padding: 18px 45px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    /* Sharp corners for luxury */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #fff;
    text-decoration: none;
}

.btn-hero-premium:hover {
    background: transparent;
    color: #fff;
    padding-right: 55px;
}

/* Swiper Customization */
.hero-pagination.swiper-pagination-bullets {
    bottom: auto !important;
    top: 50% !important;
    right: 30px !important;
    left: auto !important;
    transform: translateY(-50%);
    width: auto !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
    width: 3px;
    height: 25px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    height: 45px;
}

.hero-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-radius: 50%;
    transition: all 0.3s;
}

.hero-nav-btn::after {
    font-size: 0 !important;
}

/* Hide default icon */
.hero-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .slide-content {
        text-align: center;
        margin: 0 auto;
    }

    .slide-title {
        font-size: 2.8rem;
        margin-bottom: 30px;
    }

    .slide-tagline {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .btn-hero-premium {
        padding: 14px 30px;
        font-size: 11px;
    }

    .hero-nav-btn {
        display: none;
    }

    /* Better UX on mobile */
    .hero-pagination.swiper-pagination-bullets {
        bottom: 20px !important;
        top: auto !important;
        right: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        flex-direction: row !important;
        justify-content: center !important;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 25px;
        height: 2px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 40px;
        height: 2px;
    }
}

/* ── STRIPS (PROFESYONEL BİLGİ BANDI) ── */
/* ── TRUST BAR (PROFESYONEL BİLGİ BANDI) ── */
.trust-bar {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 45px 0;
    margin-top: 50px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}

.trust-icon {
    width: 52px;
    height: 52px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--dark);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.trust-item:hover .trust-icon {
    background: var(--gold);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
    border-color: var(--gold);
}

.trust-title {
    font-family: var(--disp);
    font-weight: 800;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 991px) {
    .trust-bar {
        padding: 40px 0;
    }

    .trust-item {
        margin-bottom: 5px;
    }
}

/* ── SECTIONS (BÖLÜMLER) ── */
.section {
    padding: 64px 0;
}

.section-sm {
    padding: 40px 0;
}

.section-cream {
    background: var(--cream2);
    padding: 64px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 44px;
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--disp);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-line {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ── KATEGORİ GRID ── */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.cat-card {
    position: relative;
    border-radius: 6px;
    /* Keskin ve profesyonel hatlar */
    overflow: hidden;
    background: #000;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    aspect-ratio: 3/4.2;
    /* Daha uzun ve şık bir dikey form */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cat-card-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease;
}

.cat-card:hover .cat-card-img img {
    transform: scale(1.08);
    opacity: 0.65;
}

.cat-card-body {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 30px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cat-card-name {
    font-family: var(--disp);
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 2px;
}

.cat-card-count {
    font-size: 11px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.cat-card-btn {
    margin-top: 15px;
    padding: 8px 16px;
    border-radius: 4px;
    background: var(--gold);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.cat-card:hover .cat-card-btn {
    opacity: 1;
    transform: translateY(0);
}

@media(max-width: 1200px) {
    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 900px) {
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media(max-width: 500px) {
    .cat-grid {
        grid-template-columns: 1fr;
    }
}

/* ── ÜRÜN KARTLARI ── */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

@media(max-width: 768px) {
    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.prod-card {
    background: var(--white);
    border-radius: 10px;
    /* Zarif ve profesyonel kavis */
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.prod-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.prod-img {
    position: relative;
    aspect-ratio: 3/4.2;
    overflow: hidden;
    background: #fdfdfd;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.prod-card:hover .prod-img img {
    transform: scale(1.08);
}

.prod-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.badge-sale {
    background: var(--red);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: #000;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prod-body {
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.prod-cat {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.prod-name {
    font-family: 'Outfit', sans-serif;
    /* Şık başlık fontu */
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prod-price {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

.price-now {
    font-size: 17px;
    font-weight: 700;
    color: #000;
}

.price-old {
    font-size: 13px;
    color: #ccc;
    text-decoration: line-through;
}

.price-pct {
    font-size: 10px;
    font-weight: 800;
    color: var(--red);
}

.prod-card-footer {
    display: flex;
    gap: 12px;
    margin-top: auto;
    align-items: center;
}

.prod-add-btn {
    flex: 1;
    background: #fff;
    color: #999 !important;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 14px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.prod-add-btn:hover {
    background: var(--gold);
    color: #fff !important;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(200, 151, 63, 0.3);
}

.prod-fav-btn-inline {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.prod-fav-btn-inline:hover {
    color: #000;
    border-color: #000;
}

.prod-fav-btn-inline.active {
    background: #fff;
    color: var(--red);
    border-color: var(--red);
    animation: heartPop 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heartPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

/* ── ÜRÜN KARTI CAROUSEL (SWIPE) ── */
.prod-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.prod-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
}

.prod-carousel-track::-webkit-scrollbar {
    display: none;
}

.prod-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.prod-carousel-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    -webkit-user-drag: none;
}

.prod-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.prod-card:hover .prod-carousel-slide img {
    transform: scale(1.08);
}

/* Navigation Arrows */
.prod-carousel-prev,
.prod-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    color: #1a1a1a;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    outline: none;
}

.prod-carousel-prev { left: 8px; }
.prod-carousel-next { right: 8px; }

.prod-card:hover .prod-carousel-prev,
.prod-card:hover .prod-carousel-next {
    opacity: 1;
}

.prod-carousel-prev:hover,
.prod-carousel-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.prod-carousel-prev:active,
.prod-carousel-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Dot Indicators */
.prod-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prod-card:hover .prod-carousel-dots {
    opacity: 1;
}

.prod-carousel-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.prod-carousel-dots .dot.active {
    background: #fff;
    transform: scale(1.25);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

/* Mobile: dots always visible, arrows hidden */
@media (max-width: 768px) {
    .prod-carousel-dots {
        opacity: 1;
        bottom: 8px;
    }

    .prod-carousel-dots .dot {
        width: 5px;
        height: 5px;
    }

    .prod-carousel-prev,
    .prod-carousel-next {
        display: none;
    }
}

/* ── KAMPANYA (CAMPAIGN) ── */
.campaign-wrap {
    background: var(--dark);
    border-radius: var(--radius2);
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

.campaign-wrap::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 240px;
    height: 240px;
    background: rgba(201, 152, 74, .08);
    border-radius: 50%;
}

.campaign-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.campaign-text h2 {
    font-family: var(--disp);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.campaign-text h2 span {
    color: var(--gold);
}

.countdown {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.cd-box {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(201, 152, 74, .25);
    border-radius: var(--radius);
    padding: 12px 16px;
    text-align: center;
    min-width: 60px;
}

.cd-num {
    font-family: var(--disp);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.cd-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-top: 3px;
}

.campaign-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex: 1;
    max-width: 420px;
}

.camp-prod {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--cream2);
    cursor: pointer;
    transition: var(--trans);
}

.camp-prod:hover {
    transform: scale(1.02);
}

.camp-prod img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: contain;
}

.camp-prod-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--red);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.camp-prod-footer {
    padding: 8px;
    background: rgba(26, 26, 26, .8);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.camp-prod-name {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.camp-prod-price {
    font-size: 13px;
    color: var(--gold);
    font-weight: 700;
}

/* Light Theme Variant */
.campaign-wrap--light {
    background: linear-gradient(135deg, #F9F8F6 0%, #F0EDE8 100%);
    border: 1px solid var(--gray-l);
}

.campaign-wrap--light::before {
    background: rgba(201, 152, 74, .06);
}

.campaign-wrap--light .campaign-text h2 {
    color: var(--dark);
}

.campaign-wrap--light .campaign-text p {
    color: var(--gray);
}

.camp-prod-footer--light {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(6px);
}

.camp-prod-footer--light .camp-prod-name {
    color: var(--dark);
}

@media(max-width: 900px) {
    .campaign-wrap {
        flex-direction: column;
    }

    .campaign-products {
        max-width: 100%;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width: 600px) {
    .campaign-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── NEDEN BİZ (WHY US) ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.why-card {
    text-align: center;
    padding: 24px 16px;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    margin: 0 auto 14px;
    box-shadow: 0 4px 16px rgba(201, 152, 74, .25);
}

.why-card h4 {
    font-family: var(--disp);
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 6px;
}

.why-card p {
    font-size: 13px;
    color: var(--gray);
}

@media(max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 600px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── YORUMLAR ── */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius2);
    padding: 22px;
    box-shadow: var(--shadow);
}

.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-av {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.review-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.review-prod {
    font-size: 12px;
    color: var(--gray);
}

.review-stars {
    color: #f59e0b;
    font-size: 13px;
    margin-left: auto;
}

.review-text {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    font-style: italic;
}

@media(max-width: 900px) {
    .review-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
}

/* ── BÜLTEN (NEWSLETTER) ── */
.newsletter {
    background: var(--dark);
    padding: 60px 0;
}

.newsletter-inner {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter h2 {
    font-family: var(--disp);
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: 8px;
}

.newsletter p {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 24px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    border: 1.5px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .07);
    color: #fff;
    border-radius: var(--radius);
    padding: 11px 16px;
    font-size: 14px;
    outline: none;
    transition: var(--trans);
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

@media(max-width: 500px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ── FORMLAR ── */
.form-grup {
    margin-bottom: 18px;
}

.form-label,
label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-kontrol {
    width: 100%;
    border: 1.5px solid var(--gray-l);
    border-radius: var(--radius);
    padding: 11px 14px;
    font-size: 14px;
    outline: none;
    transition: var(--trans);
    background: #fff;
    color: var(--dark);
}

.form-kontrol:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 152, 74, .12);
}

textarea.form-kontrol {
    resize: vertical;
    min-height: 100px;
}

/* ── PAGE HEADER (Sayfa Üstleri) ── */
.sayfa-ust {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2412 100%);
    padding: 44px 0 32px;
    margin-bottom: 40px;
}

.sayfa-ust h1 {
    font-family: var(--disp);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 6px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li a {
    color: var(--gold);
}

.breadcrumb li {
    color: rgba(255, 255, 255, .55);
}

/* ── ÜRÜN DETAY SAYFASI ── */
.detail-main-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius2);
    border: 1px solid var(--gray-l);
}

.detail-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.detail-thumb {
    width: 68px;
    height: 86px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--trans);
    flex-shrink: 0;
}

.detail-thumb.active,
.detail-thumb:hover {
    border-color: var(--gold);
}

.detail-title {
    font-family: var(--disp);
    font-size: 1.9rem;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.25;
}

.size-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sz-btn {
    min-width: 52px;
    padding: 9px 14px;
    border: 2px solid var(--gray-l);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--trans);
    background: #fff;
    color: var(--dark);
    text-align: center;
}

.sz-btn:hover,
.sz-btn.selected {
    border-color: var(--gold);
    background: rgba(201, 152, 74, .08);
}

.sz-btn.out {
    opacity: .35;
    cursor: not-allowed;
    text-decoration: line-through;
}

.qty-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--gray-l);
    border-radius: var(--radius);
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-input {
    width: 56px;
    text-align: center;
    border: 1.5px solid var(--gray-l);
    border-radius: var(--radius);
    padding: 8px;
    font-size: 15px;
    font-weight: 700;
    outline: none;
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--gray-l);
    margin-bottom: 24px;
    gap: 0;
}

.tab-btn {
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    margin-bottom: -2px;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

/* ── SEPET SAYFASI (CART) ── */
.cart-table {
    background: var(--white);
    border-radius: var(--radius2);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.cart-table th {
    background: var(--cream2);
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray);
}

.cart-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--cream2);
    vertical-align: middle;
}

.cart-img {
    width: 64px;
    height: 82px;
    object-fit: cover;
    border-radius: var(--radius);
}

.cart-summary {
    background: var(--white);
    border-radius: var(--radius2);
    padding: 24px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 80px;
}

.sum-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.sum-row.total {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    border-top: 1px solid var(--cream2);
    margin-top: 12px;
    padding-top: 12px;
}

/* ── ÖDEME SAYFASI (CHECKOUT) ── */
.checkout-card {
    background: var(--white);
    border-radius: var(--radius2);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.checkout-card h4 {
    font-family: var(--disp);
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.pay-opt {
    border: 2px solid var(--gray-l);
    border-radius: var(--radius);
    padding: 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--trans);
}

.pay-opt.selected,
.pay-opt:hover {
    border-color: var(--gold);
    background: rgba(201, 152, 74, .05);
}

/* ── HESABIM / PROFİL ── */
.profil-kart {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.profil-kenar {
    background: var(--white);
    border-radius: var(--radius2);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.profil-kenar-ust {
    background: linear-gradient(135deg, var(--dark), #2d2412);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.profil-avatar {
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-family: var(--disp);
    font-weight: 700;
    margin: 0 auto 10px;
}

.profil-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-l);
    transition: var(--trans);
}

.profil-menu a:hover,
.profil-menu a.aktif {
    color: var(--gold);
    background: rgba(201, 152, 74, .06);
    border-left: 3px solid var(--gold);
    padding-left: 17px;
}

/* ── SİPARİŞLER ── */
.order-card {
    background: var(--white);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    padding: 18px;
    margin-bottom: 14px;
    transition: var(--trans);
}

.order-card:hover {
    box-shadow: var(--shadow2);
}

/* ── PROFESSIONAL UI ADDITIONS ── */
.checkout-card {
    background: var(--white);
    border-radius: var(--radius2);
    padding: 24px;
    border: 1px solid var(--gray-l);
    margin-bottom: 24px;
    transition: var(--trans);
}

.checkout-card h4 {
    font-family: var(--disp);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 12px;
    margin-bottom: 24px;
    display: inline-block;
}

.adres-item {
    padding: 16px;
    border: 2px solid var(--gray-l);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--trans);
    position: relative;
}

.adres-item:hover {
    border-color: rgba(201, 152, 74, 0.4);
}

.adres-item.selected {
    border-color: var(--gold);
    background: rgba(201, 152, 74, 0.04);
}

.adres-item input[type="radio"] {
    accent-color: var(--gold);
    transform: scale(1.1);
}

.pay-opt {
    border: 2px solid var(--gray-l);
    border-radius: var(--radius2);
    transition: var(--trans);
    cursor: pointer;
    background: #fff;
}

.pay-opt:hover {
    border-color: rgba(201, 152, 74, 0.35);
}

.pay-opt.active {
    border-color: var(--gold);
    background: rgba(201, 152, 74, 0.06) !important;
    color: var(--gold);
}

.pay-opt i {
    color: var(--gray);
    font-size: 2rem;
    transition: var(--trans);
}

.pay-opt.active i {
    color: var(--gold);
}

.price-filter-inputs .input-group-text {
    color: var(--gray);
    font-weight: 600;
    border-radius: var(--radius) 0 0 var(--radius);
}

.price-filter-inputs input {
    height: 44px;
    border-radius: 0 var(--radius) var(--radius) 0 !important;
    font-size: 14px;
}

.price-filter-inputs input:focus {
    border-color: var(--gold);
    box-shadow: none;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.cursor-pointer {
    cursor: pointer;
}

.text-gold {
    color: var(--gold) !important;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991px) {
    .checkout-sidebar {
        position: static !important;
    }
}

/* ── GİRİŞ / KAYIT (AUTH) ── */
.giris-kart {
    background: var(--white);
    border-radius: var(--radius2);
    box-shadow: var(--shadow2);
    padding: 40px;
}

/* ── BİLDİRİMLER (TOAST & ALERTS) ── */
#toast-zone {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    background: var(--dark);
    color: #fff;
    padding: 12px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
    font-size: 13px;
    font-weight: 500;
    min-width: 240px;
    border-left: 4px solid var(--gold);
}

.toast.err {
    border-color: var(--red);
}

.toast.warn {
    border-color: #f59e0b;
}

.toast.ok {
    border-color: var(--green);
}

.alert {
    padding: 13px 18px;
    border-radius: var(--radius);
    margin-bottom: 14px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── BOŞ DURUM (EMPTY STATE) ── */
.bos-durum {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius2);
    border: 1px dashed var(--gray-l);
}

.bos-durum .ikon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* ── WHATSAPP BUTTON ── */
.wp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
    z-index: 800;
    transition: var(--trans);
}

.wp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ── SPINNER ── */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(201, 152, 74, .25);
    border-top: 2px solid var(--gold);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* YARDIMCI SINIFLAR */
.text-gold {
    color: var(--gold) !important;
}

/* ─────────────────────────────────────────────────────────────
   EKSİK SINIFLAR — FOOTER, BUTONLAR, SAYFA BAŞLIKLARI
   (Analiz sırasında tespit edilen eksikler tamamlandı)
   ───────────────────────────────────────────────────────────── */

/* ── BUTONLAR (Eksik) ── */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border: 2px solid var(--dark);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: var(--trans);
    font-family: var(--body);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--trans);
    border: none;
    text-decoration: none;
    font-family: var(--body);
}

/* ── SAYFA BAŞLIĞI (page-header) ── */
/* urunler.php eski sayfa-ust yerine page-header kullanıyor */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2412 100%);
    padding: 44px 0 28px;
    margin-bottom: 36px;
}

.page-header h1 {
    font-family: var(--disp);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 8px;
}

.page-header .breadcrumb li a {
    color: var(--gold);
}

.page-header .breadcrumb li {
    color: rgba(255, 255, 255, .55);
}

/* ── FOOTER (Tam Footer CSS) ── */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 64px 0 0;
    margin-top: auto !important;
    font-size: 13.5px;
    line-height: 1.7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col-brand {}

.footer-brand {
    font-family: var(--disp);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.footer-brand span {
    color: var(--gold);
}

.footer-text {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    text-decoration: none;
    transition: var(--trans);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-title {
    font-family: var(--body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 13px;
    transition: var(--trans);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-list a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-contact i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

.footer-payments {
    margin-top: 20px;
}

.small-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 8px;
}

.payment-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 18px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 0;
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 12px;
    transition: var(--trans);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ── PROFİL EKSİKLERİ ── */
.profil-kart {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.profil-kenar {
    background: var(--white);
    border-radius: var(--radius2);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.profil-kenar-ust {
    background: linear-gradient(135deg, var(--dark), #2d2412);
    color: white;
    padding: 28px 20px;
    text-align: center;
}

.profil-avatar {
    width: 68px;
    height: 68px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-family: var(--disp);
    font-weight: 700;
    margin: 0 auto 10px;
}

.profil-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-l);
    transition: var(--trans);
}

.profil-menu a:hover,
.profil-menu a.aktif {
    color: var(--gold);
    background: rgba(201, 152, 74, .06);
    border-left: 3px solid var(--gold);
    padding-left: 17px;
}

/* ── ALERT DÜZELTMELERİ ── */
.alert {
    padding: 13px 18px;
    border-radius: var(--radius);
    margin-bottom: 14px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(46, 125, 50, .08);
    color: var(--green);
    border-left: 4px solid var(--green);
}

.alert-warning {
    background: rgba(230, 81, 0, .08);
    color: #e65100;
    border-left: 4px solid #e65100;
}

.alert-danger {
    background: rgba(211, 47, 47, .08);
    color: var(--red);
    border-left: 4px solid var(--red);
}

.alert-info {
    background: rgba(21, 101, 192, .08);
    color: var(--blue);
    border-left: 4px solid var(--blue);
}

.alert-kapat {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.5;
    line-height: 1;
}

.alert-kapat:hover {
    opacity: 1;
}

/* ── SIPARIŞ DURUM RENKLERİ ── */
.status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-beklemede {
    background: #fff8e1;
    color: #e65100;
}

.status-hazirlaniyor {
    background: #e3f2fd;
    color: #1565c0;
}

.status-kargoda {
    background: #e8f5e9;
    color: #1b5e20;
}

.status-teslim_edildi {
    background: #e8f5e9;
    color: #064e3b;
}

.status-iptal {
    background: #ffebee;
    color: #b71c1c;
}

.status-iade {
    background: #f3e8ff;
    color: #6b21a8;
}

/* ── GİRİŞ KARTI (Auth) ── */
.giris-kart {
    background: var(--white);
    border-radius: var(--radius2);
    box-shadow: var(--shadow2);
    padding: 40px;
}

/* ── YARDIMCI ── */
.text-muted {
    color: var(--gray) !important;
}

.text-center {
    text-align: center !important;
}

.mt-auto {
    margin-top: auto !important;
}

.gap-2 {
    gap: 8px !important;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

/* ─────────────────────────────────────────────────────────────
   PREMIUM MODAL & UI COMPONENTS
   ───────────────────────────────────────────────────────────── */
.asso-modal-wrap {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.asso-modal-wrap.open {
    display: flex !important;
    opacity: 1;
}

.asso-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.asso-modal-wrap.open .asso-modal {
    transform: scale(1) translateY(0);
}

.asso-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    transition: 0.2s;
}

.asso-modal-close:hover {
    color: var(--asso-dark);
}

.success-icon {
    font-size: 60px;
    color: #10b981;
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.btn-asso-outline {
    background: transparent;
    border: 2px solid var(--asso-gold);
    color: var(--asso-gold);
}

.btn-asso-outline:hover {
    background: var(--asso-gold);
    color: #fff;
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Spinner Animation */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

/* ── COLOR VARIANTS (D&R Style) ── */
.color-variant-link {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid var(--gray-l);
    overflow: hidden;
    transition: var(--trans);
    display: block;
}

.color-variant-link:hover,
.color-variant-link.active {
    border-color: var(--gold);
}

.color-variant-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-variant-check {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: var(--gold);
    color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* ── QUICK BUY (Card Level) ── */
.prod-quick-buy {
    margin-top: auto;
    padding-top: 10px;
}

.prod-card-select {
    flex: 1.2;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--gray-l);
    background: #fff;
    font-size: 12px;
    padding: 0 8px;
    outline: none;
    transition: var(--trans);
}

.prod-card-select:focus {
    border-color: var(--gold);
}

.prod-card-qty {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f0f0f0;
    border-radius: 8px;
    height: 36px;
    overflow: hidden;
}

.prod-card-qty button {
    border: none;
    background: transparent;
    width: 24px;
    height: 100%;
    font-size: 16px;
    color: #666;
    cursor: pointer;
}

.prod-card-qty button:hover {
    background: rgba(0, 0, 0, 0.05);
}

.prod-card-qty input {
    width: 20px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
}

.prod-card-add {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gold);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.prod-card-add:hover {
    background: var(--dark);
    transform: scale(1.05);
}

.prod-card-add:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── PCFG STYLE CARDS ── */
.pcfg-card {
    margin-bottom: 30px;
    position: relative;
}

.pcfg-img-wrap {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.pcfg-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pcfg-card:hover .pcfg-img {
    transform: scale(1.05);
}

.pcfg-badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--pcfg-red);
    color: #fff;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pcfg-hover-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    transition: bottom 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pcfg-card:hover .pcfg-hover-actions {
    bottom: 0;
}

.pcfg-quick-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.pcfg-quick-sizes button {
    border: 1px solid #ddd;
    background: #fff;
    padding: 5px 10px;
    font-size: 11px;
    cursor: pointer;
    transition: 0.2s;
}

.pcfg-quick-sizes button:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.pcfg-quick-add {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.pcfg-name {
    display: block;
    font-size: 13px;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pcfg-price {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

.pcfg-price-new {
    font-size: 14px;
    font-weight: 700;
    color: var(--pcfg-red);
}

.pcfg-price-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

/* ── LISTING PAGE (Boyner/D&R Style) ── */
.listing-hero {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #ccc;
}

.filter-header {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 8px;
    letter-spacing: 0.5px;
    color: var(--dark);
}

.filter-scroll::-webkit-scrollbar {
    width: 4px;
}

.filter-scroll::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.page-link {
    border-radius: 4px !important;
    margin: 0 2px;
    border: 1px solid #eee;
    transition: 0.2s;
}

.page-link:hover {
    background: #f8f9fa;
}

.page-item.active .page-link {
    background: var(--dark) !important;
    border-color: var(--dark) !important;
    color: #fff !important;
}

/* ── PROFESSIONAL PRODUCT CARD (Asso Style) ── */
.asso-prod-card {
    background: #fff;
    border-radius: 0px;
    transition: var(--trans);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.card-image-wrap {
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
    aspect-ratio: 3 / 4;
    /* Profesyonel moda çekim standardı */
}

.card-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.asso-prod-card:hover .card-main-img {
    transform: scale(1.08);
}

/* Badges */
.card-badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff3b30;
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 2px;
    z-index: 2;
}

/* Wishlist Button */
.card-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: 0.3s;
    z-index: 5;
}

.card-wishlist-btn:hover,
.card-wishlist-btn.active {
    color: #ff3b30;
    transform: scale(1.1);
}

/* Quick Add Overlay */
.card-quick-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    transition: bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
    border-top: 1px solid #f0f0f0;
}

.asso-prod-card:hover .card-quick-overlay {
    bottom: 0;
}

.quick-size-title {
    font-size: 10px;
    font-weight: 800;
    color: #999;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 1px;
}

.quick-size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.q-size-btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    min-width: 34px;
    transition: 0.2s;
}

.q-size-btn:hover {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

.q-add-simple {
    width: 100%;
    padding: 10px;
    background: var(--dark);
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Info Area */
.card-body-info {
    padding: 15px 5px;
}

.card-category {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.card-title {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-title:hover {
    color: var(--gold);
}

.card-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-new {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
}

.price-old {
    font-size: 12px;
    color: #bbb;
    text-decoration: line-through;
}

.price-normal {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
}

/* ── D&R STYLE PRODUCT CARD (Professional) ── */
.dr-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dr-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #ddd;
}

.dr-image-area {
    position: relative;
    padding-top: 133%;
    overflow: hidden;
    background: #fff;
}

.dr-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dr-card:hover .dr-img {
    transform: scale(1.05);
}

.dr-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #B53D2A;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

.dr-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    transition: 0.2s;
    z-index: 2;
}

.dr-fav-btn:hover,
.dr-fav-btn.active {
    color: #ff3b30;
    background: #fff;
}

.dr-info-area {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dr-category {
    font-size: 11px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.dr-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
    transition: 0.2s;
}

.dr-name:hover {
    color: var(--gold);
}

.dr-rating {
    display: flex;
    align-items: center;
}

.dr-price-block {
    margin-top: auto;
}

.dr-price-old {
    font-size: 12px;
    color: #bbb;
    text-decoration: line-through;
    margin-bottom: -2px;
}

.dr-price-new {
    font-size: 18px;
    font-weight: 800;
    color: #333;
}

.dr-price-normal {
    font-size: 18px;
    font-weight: 800;
    color: #333;
}

.dr-quick-buy-wrap {
    display: flex;
    gap: 5px;
}

.dr-select-size {
    flex: 1;
    height: 38px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 12px;
    padding: 0 5px;
    outline: none;
}

.dr-add-btn {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: var(--dark);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.dr-add-btn:hover {
    background: var(--gold);
}

.dr-add-btn-full {
    width: 100%;
    height: 38px;
    border-radius: 6px;
    background: var(--dark);
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 700;
    transition: 0.2s;
}

.dr-add-btn-full:hover {
    background: var(--gold);
}

/* ── D&R ULTIMATE CARD (Pixel Perfect) ── */
.dr-ultimate-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.dr-ultimate-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #ccc;
}

.dru-img-wrap {
    background: #fbfbfb;
    border-radius: 12px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
    padding: 10px;
}

.dru-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.dru-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dru-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.dru-stars {
    color: #f1c40f;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.dru-count {
    color: #999;
    margin-left: 4px;
    font-weight: 500;
}

.dru-fav-text {
    font-size: 10px;
    color: #3498db;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dru-name {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

.dru-brand {
    font-size: 11px;
    color: #95a5a6;
    margin-bottom: 15px;
}

.dru-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.dru-price-box {
    flex: 1;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d4edda;
    border-radius: 10px;
    height: 44px;
    overflow: hidden;
}

.dru-sepette {
    background: #e9f7ef;
    color: #27ae60;
    font-size: 11px;
    font-weight: 700;
    padding: 0 10px;
    height: 100%;
    display: flex;
    align-items: center;
    border-right: 1px solid #d4edda;
}

.dru-price-info {
    padding: 0 10px;
    flex: 1;
}

.dru-old {
    font-size: 10px;
    color: #bdc3c7;
    text-decoration: line-through;
    margin-bottom: -4px;
}

.dru-new {
    font-size: 14px;
    font-weight: 800;
    color: #27ae60;
}

.dru-cart-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #003366;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.2s;
    box-shadow: 0 4px 10px rgba(0, 51, 102, 0.2);
}

.dru-cart-btn:hover {
    background: #004080;
    transform: scale(1.05);
}

/* ── ÜRÜN DETAY SAYFASI BUTONLARI (Final Tasarım) ── */
.detail-actions {
    display: flex;
    gap: 12px;
    margin: 35px 0;
    align-items: stretch;
}

.detail-add-btn {
    flex: 1;
    height: 56px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 10px;
    background: #000;
    color: #fff !important;
    border: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-add-btn:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.detail-fav-btn {
    width: 56px;
    height: 56px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.detail-fav-btn:hover,
.detail-fav-btn.active {
    border-color: #ff3b30;
    color: #ff3b30;
    transform: scale(1.05);
}

/* Detay Sayfası Boşluk Ayarı */
.detail-tabs {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

/* ── STAR RATING INPUT ── */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: 0.2s;
}

.star-rating-input input:checked~label,
.star-rating-input label:hover,
.star-rating-input label:hover~label {
    color: #f1c40f;
}

/* ── ESKİ/SADE ÜRÜN KARTI ── */
.urun-kart {
    background: #fff;
    padding: 15px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    text-align: center;
}

.urun-resim img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}

.urun-ad {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}

.urun-fiyat {
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 10px;
}

.urun-butonlar {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.btn-incele {
    background: #eee;
    color: #333;
    padding: 5px 10px;
    font-size: 12px;
    text-decoration: none;
}

.btn-ekle {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
}

#toast-zone {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    animation: toastIn 0.3s ease forwards;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.ok {
    border-left: 4px solid #10b981;
}

.toast.err {
    border-left: 4px solid #ef4444;
}

.toast.warn {
    border-left: 4px solid #f59e0b;
}

@keyframes toastIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ── MOBILE RESPONSIVE FIXES ── */
@media (max-width: 991.98px) {
    .asso-header-ozel {
        padding: 10px 0 !important;
    }

    .asso-logo img {
        max-height: 40px !important;
    }

    .asso-icon-btn {
        font-size: 1.15rem !important;
        padding: 4px !important;
    }

    .asso-badge {
        width: 15px !important;
        height: 15px !important;
        font-size: 0.6rem !important;
    }

    /* Mobil Arama Overlay İyileştirme */
    #mobileSearchOverlay {
        padding: 10px !important;
        background: #fff;
        border-bottom: 2px solid var(--asso-gold);
    }

    #mobileSearchOverlay .form-control {
        border-radius: 20px;
        font-size: 0.9rem;
        padding-left: 15px;
    }

    .btn-asso {
        background-color: var(--asso-gold) !important;
        color: white !important;
        border-radius: 20px !important;
    }

    /* Slider Mobil Ayarları */
    .hero-slider {
        height: 350px !important;
    }

    .hero-slide-content h1 {
        font-size: 1.8rem !important;
    }

    .hero-slide-content p {
        font-size: 0.9rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .asso-logo .logo-text {
        font-size: 1.4rem !important;
    }

    /* Ürün Kartları Mobilde Yan Yana 2 Adet */
    .product-card-container {
        padding: 5px !important;
    }
}


/* ── ULTRA MOBILE RESPONSIVE (Desktop-First Feel) ── */
@media (max-width: 991.98px) {

    /* Başlık ve Fontlar */
    body {
        font-size: 15px !important;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    /* Header & Arama */
    .asso-header-ozel {
        padding: 15px 0 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

    .asso-logo img {
        max-height: 45px !important;
    }

    /* Ürün Gridleri (Masaüstü kalitesinde yan yana 2 ürün) */
    .col-6 {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    /* Ürün Kartı İyileştirme */
    .product-card {
        border-radius: 12px !important;
        overflow: hidden;
        border: 1px solid #f0f0f0 !important;
    }

    .product-card .card-body {
        padding: 12px !important;
    }

    .product-card .product-title {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
    }

    .product-card .product-price {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
    }

    /* Mobil Arama Sayfası (urunler.php) */
    .listing-hero h1 {
        font-size: 1.5rem !important;
        text-align: center;
    }

    .listing-hero .breadcrumb {
        justify-content: center;
    }

    /* Mobilde Filtre Butonu Görünürlüğü (D&R Style) */
    .mobile-filter-btn {
        display: block !important;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background: #1a1a1a;
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 700;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        border: none;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}

/* ── Küçük Telefonlar İçin Ekstra Rötuş ── */
@media (max-width: 400px) {
    .asso-logo img {
        max-height: 38px !important;
    }

    .asso-icon-btn {
        font-size: 1.1rem !important;
        gap: 8px !important;
    }
}

/* ── PREMIUM MOBILE HEADER (Desktop-First Look) ── */
@media (max-width: 991.98px) {
    .asso-header-ozel {
        padding: 12px 0 !important;
        background: #fff !important;
        position: sticky !important;
        top: 0;
        z-index: 1040;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    }

    .asso-logo img {
        max-height: 42px !important;
    }

    /* İkon Butonlar */
    .asso-icon-btn {
        font-size: 1.2rem !important;
        padding: 6px !important;
        color: #333 !important;
    }

    .asso-badge {
        width: 16px !important;
        height: 16px !important;
        font-size: 0.65rem !important;
        top: 2px !important;
        right: 2px !important;
        background: var(--asso-gold) !important;
        border: 2px solid #fff;
    }

    /* Offcanvas (Mobil Menü) İyileştirmeler */
    .offcanvas-backdrop.show {
        opacity: 0.3 !important;
        backdrop-filter: blur(4px);
    }

    .offcanvas-start {
        border-radius: 0 25px 25px 0 !important;
    }

    .list-group-item {
        font-size: 0.95rem !important;
        transition: all 0.2s ease;
    }

    .list-group-item:active {
        background-color: rgba(201, 168, 76, 0.05) !important;
    }
}


/* ── PREMIUM MOBILE RESPONSIVE (Masaüstü Kalitesinde Mobil) ── */
@media (max-width: 991.98px) {

    /* Header Sabitleme ve Gölge */
    .asso-header-ozel {
        padding: 12px 0 !important;
        position: sticky !important;
        top: 0;
        z-index: 1050;
        background: #ffffff !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    }

    .asso-logo img {
        max-height: 42px !important;
    }

    /* Ürün Gridleri (Mobilde yan yana 2 profesyonel görünüm) */
    .col-6 {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    /* Ürün Kartı Detayları */
    .product-card .product-title {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        height: 2.4rem;
        overflow: hidden;
    }

    .product-card .product-price {
        font-size: 1.05rem !important;
        font-weight: 800 !important;
    }

    /* Mobil İkonlar */
    .asso-icon-btn {
        font-size: 1.15rem !important;
        padding: 5px !important;
    }

    .asso-badge {
        width: 15px !important;
        height: 15px !important;
        font-size: 0.6rem !important;
        top: 3px !important;
    }

    /* Offcanvas (Mobil Menü) Rötuşları */
    .offcanvas-start {
        border-radius: 0 25px 25px 0 !important;
    }

    .offcanvas-backdrop.show {
        opacity: 0.3 !important;
        backdrop-filter: blur(3px);
    }
}

/* ?? Küçük Telefonlar */
@media (max-width: 400px) {
    .asso-logo img {
        max-height: 38px !important;
    }
}

/* ── Beden Bazlı İndirim Premium Sınıfları ── */
.sz-btn.has-discount {
    border-color: #ff6b35 !important;
    background: #fff8f5 !important;
}
.sz-btn.has-discount:hover,
.sz-btn.has-discount.selected {
    border-color: #ff3b30 !important;
    background: #ff3b30 !important;
    color: #fff !important;
}
.sz-btn.has-discount.selected .size-discount-tag {
    background: #fff !important;
    color: #ff3b30 !important;
    border-color: #ff3b30 !important;
}
.size-discount-tag {
    transition: all 0.2s ease;
}