/* ========================================================
   Davetiye Atölyesi — Premium CSS v3
   Palette: Deep Rose #8B1A4A | Rose Gold #C4956A | Ivory #FAF6F0
   Inspired by BigJoy.com.tr layout excellence
======================================================== */

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', 'Inter', sans-serif;
    background: #F7F3EE;
    color: #1c1c1c;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Variables ─────────────────────────────────────── */
:root {
    /* Core Brand (Dark Luxury) */
    --rose:         #1c1c1c;
    --rose-mid:     #2b2b2b;
    --rose-dark:    #0a0a0a;
    --rose-light:   #e8e8e8;
    --rose-pale:    #F7F3EE;

    /* Highlight (Gold) */
    --gold:         #B58A56;
    --gold-light:   #DBC5A4;
    --gold-pale:    #F5EBE1;
    --gold-dark:    #8C663B;

    /* Neutrals */
    --ivory:        #ffffff;
    --ivory-dark:   #F7F3EE;
    --dark:         #0f172a;
    --dark-mid:     #1e293b;
    --text:         #334155;
    --text-light:   #64748b;
    --white:        #FFFFFF;

    /* Status */
    --success:      #1A7A4A;
    --error:        #C0392B;
    --warning:      #D4861A;

    /* Shape */
    --radius-xs:    4px;
    --radius-sm:    8px;
    --radius:       14px;
    --radius-lg:    22px;
    --radius-xl:    36px;
    --radius-pill:  999px;

    /* Shadow */
    --shadow-xs:    0 1px 4px rgba(28,16,24,0.06);
    --shadow-sm:    0 4px 16px rgba(28,16,24,0.08);
    --shadow:       0 8px 32px rgba(28,16,24,0.12);
    --shadow-lg:    0 20px 60px rgba(28,16,24,0.18);
    --shadow-rose:  0 12px 40px rgba(139,26,74,0.25);

    /* Motion */
    --ease:         cubic-bezier(0.22, 1, 0.36, 1);
    --transition:   0.35s var(--ease);
    --transition-fast: 0.2s ease;
}

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--dark);
    font-weight: 600;
}
h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-light); line-height: 1.7; }
a  { text-decoration: none; color: inherit; transition: var(--transition-fast); }

/* ── Container ─────────────────────────────────────── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 640px)  { .container { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 3.5rem; } }

/* ════════════════════════════════════════════════════
   HEADER — 3 Tier (Announcement → Top Bar → Nav)
═════════════════════════════════════════════════════ */

/* Tier 1: Announcement */
.announcement-bar {
    background: var(--rose);
    color: rgba(255,255,255,0.92);
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
}
.announcement-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.announcement-bar strong { color: #FFE4B5; font-weight: 700; }
.announcement-bar a { color: #FFE4B5; text-decoration: underline; }

/* Tier 2: Top utility bar */
.header-top-bar {
    background: var(--ivory);
    border-bottom: 1px solid rgba(196,149,106,0.15);
    padding: 0.4rem 0;
}
.header-top-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.header-top-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.78rem;
    color: var(--text-light);
}
.header-top-left a:hover { color: var(--rose); }
.header-top-left span { display: flex; align-items: center; gap: 0.35rem; }
.header-top-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
}
.header-top-right a {
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition-fast);
}
.header-top-right a:hover { color: var(--rose); }
.header-top-sep { color: rgba(196,149,106,0.4); }

/* Tier 3: Main Nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250,246,240,0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(196,149,106,0.2);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(28,16,24,0.1);
    background: rgba(250,246,240,0.99);
}
.navbar { padding: 0; }
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--rose), var(--rose-mid));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(139,26,74,0.3);
}
.logo-accent { color: var(--rose); font-style: italic; }
.logo-light .logo-text { color: var(--white); }

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.55rem 1.1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}
.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.1rem;
    right: 1.1rem;
    height: 2px;
    background: var(--rose);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
    border-radius: var(--radius-pill);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--rose); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }
.dropdown-arrow { font-size: 0.65rem; opacity: 0.5; margin-top: 1px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: var(--white);
    border: 1px solid rgba(196,149,106,0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 230px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.97);
    transform-origin: top left;
    transition: all 0.2s var(--ease);
    z-index: 100;
}
.dropdown-menu.dropdown-right { left: auto; right: 0; transform-origin: top right; }
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.875rem;
    font-size: 0.875rem;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
.dropdown-menu a:hover { background: var(--rose-pale); color: var(--rose); }
.dropdown-menu .view-all {
    color: var(--rose);
    font-weight: 600;
    border-top: 1px solid var(--ivory-dark);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}
.dropdown-divider { height: 1px; background: var(--ivory-dark); margin: 0.5rem 0; }
.dropdown-logout {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0.6rem 0.875rem;
    font-size: 0.875rem;
    color: var(--error);
    cursor: pointer;
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: var(--transition-fast);
}
.dropdown-logout:hover { background: #FEF2F2; }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 0.2rem; }
.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: var(--text);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
.nav-icon-btn:hover { background: var(--rose-pale); color: var(--rose); }
.nav-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
.nav-cart-btn:hover { color: var(--rose); background: var(--rose-pale); }
.cart-badge {
    position: absolute;
    top: 3px;
    right: 3px;
    background: var(--rose);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 1.5px solid var(--ivory);
}

/* CTA in nav */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.25rem;
    background: var(--rose);
    color: var(--white);
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition-fast);
    box-shadow: 0 4px 16px rgba(139,26,74,0.25);
}
.nav-cta-btn:hover { background: var(--rose-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,26,74,0.35); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    height: 1.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .hamburger { display: flex !important; }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28,16,24,0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-start;
    padding-top: 130px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 0.6rem 0.75rem 0.6rem 1.5rem;
    box-shadow: var(--shadow-lg);
}
.search-form input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-family: inherit;
    background: transparent;
    color: var(--text);
}
.search-form input::placeholder { color: var(--text-light); }
.search-form button {
    background: var(--rose);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-xl);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    transition: var(--transition-fast);
}
.search-form button:hover { background: var(--rose-dark); }
.search-form #close-search { background: var(--ivory-dark); color: var(--text); padding: 0.6rem 0.875rem; }

/* Flash Messages */
.flash-message {
    position: fixed;
    top: 90px;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
    font-weight: 500;
    max-width: 420px;
    animation: slideInRight 0.35s var(--ease);
    transition: opacity 0.6s ease;
}
.flash-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.flash-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.flash-message.fade-out { opacity: 0; }
.flash-message button { background: none; border: none; cursor: pointer; font-size: 1rem; opacity: 0.45; }
@keyframes slideInRight {
    from { transform: translateX(110%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* ════════════════════════════════════════════════════
   BUTTONS
═════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.875rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'DM Sans', 'Inter', sans-serif;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.22s ease;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.btn-primary {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
    box-shadow: 0 4px 20px rgba(139,26,74,0.3);
}
.btn-primary:hover {
    background: var(--rose-dark);
    border-color: var(--rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(139,26,74,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--rose);
    border-color: var(--rose);
}
.btn-outline:hover { background: var(--rose); color: var(--white); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(196,149,106,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,149,106,0.5); }
.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.btn-dark:hover { background: var(--dark-mid); }
.btn-white {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
}
.btn-white:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.8); }
.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: rgba(196,149,106,0.3);
}
.btn-ghost:hover { background: var(--ivory-dark); border-color: var(--gold); color: var(--rose); }
.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.925rem; }
.btn-xl { padding: 1.1rem 3rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ════════════════════════════════════════════════════
   SECTION UTILITIES
═════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--rose-pale);
    color: var(--rose);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.875rem;
    border: 1px solid rgba(139,26,74,0.12);
}
.section-tag { /* legacy compat */
    display: inline-block;
    background: var(--rose-pale);
    color: var(--rose);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.875rem;
    border: 1px solid rgba(139,26,74,0.12);
}
.section-header p { font-size: 1rem; max-width: 560px; margin: 0.75rem auto 0; }

/* Section wave dividers */
.section-wave {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* ════════════════════════════════════════════════════
   HERO — BigJoy-style Asymmetric Grid
═════════════════════════════════════════════════════ */
.hero {
    position: relative;
}

/* The BigJoy-style Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    grid-template-rows: 1fr;
    gap: 1.5rem;
    min-height: 600px;
}


/* Left Main Panel */
.hero-main-panel {
    position: relative;
    overflow: hidden;
    background: var(--dark-mid);
    border-radius: var(--radius-xl);
}
.hero-main-panel video,
.hero-main-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.hero-main-panel:hover video,
.hero-main-panel:hover img { transform: scale(1.04); }
.hero-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(28,16,24,0.82) 0%,
        rgba(139,26,74,0.35) 60%,
        rgba(28,16,24,0.2) 100%
    );
    z-index: 2;
}
.hero-main-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem;
}

/* Right side: 2 stacked panels */
.hero-side-panels {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
}
.hero-side-panel {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius-lg);
    display: block;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto !important;
        min-height: 0 !important;
        height: auto !important;
    }
    .hero-main-panel {
        min-height: 350px;
    }
    .hero-side-panels {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-main-panel {
        min-height: 220px !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        max-height: 280px !important;
        width: 100% !important;
    }
    .hero-side-panels {
        display: flex;
        flex-direction: column;
        gap: 1.5rem !important;
        margin-bottom: 1.5rem;
    }
    .hero-side-panel {
        min-height: 220px !important;
        width: 100%;
    }
    .mobile-hide {
        display: none !important;
    }
}
.hero-side-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.hero-side-panel:hover img { transform: scale(1.06); }
.hero-side-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,16,24,0.88) 0%, rgba(28,16,24,0.2) 60%);
    z-index: 2;
    transition: var(--transition);
}
.hero-side-panel:hover .hero-side-overlay { background: linear-gradient(to top, rgba(139,26,74,0.88) 0%, rgba(28,16,24,0.3) 70%); }
.hero-side-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 1.5rem;
}

/* Hero discount badge (BigJoy style) */
.hero-discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #FFE4B5;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.875rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}
.hero-discount-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: #FFE4B5;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title .highlight {
    background: linear-gradient(135deg, #FFD4E8, #FFB3CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Feature pills below hero text */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    transition: var(--transition-fast);
}
.hero-pill:hover { background: rgba(255,255,255,0.15); }

.hero-actions {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

/* Side panel content */
.hero-side-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
}
.hero-side-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}
.hero-side-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.1);
    transition: var(--transition-fast);
}
.hero-side-panel:hover .hero-side-cta { background: var(--rose); border-color: var(--rose); }

/* ════════════════════════════════════════════════════
   QUICK CATEGORIES (BigJoy Bubbles)
═════════════════════════════════════════════════════ */
.quick-cats-section {
    background: transparent;
    padding: 2.5rem 0 0 0;
}
.quick-cats-scroll {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
}
.quick-cats-scroll::-webkit-scrollbar { display: none; }
.quick-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    flex-shrink: 0;
    width: 120px;
    cursor: pointer;
    text-decoration: none;
}
.quick-cat-bubble {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid transparent;
    padding: 4px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.quick-cat-bubble::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.quick-cat-item:hover .quick-cat-bubble::before { opacity: 1; }
.quick-cat-item:hover .quick-cat-bubble { box-shadow: var(--shadow); transform: translateY(-4px); }

.quick-cat-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s var(--ease);
}
.quick-cat-item:hover .quick-cat-bubble img { transform: scale(1.1); }
.quick-cat-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    transition: color 0.25s ease;
}
.quick-cat-item:hover .quick-cat-title { color: var(--rose); }

@media (max-width: 768px) {
    .quick-cats-scroll { justify-content: flex-start; padding-left: 1rem; padding-right: 1rem; }
}

/* Scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 3.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}
.scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--rose);
    animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
    0%   { left: -100%; }
    100% { left: 100%; }
}

/* Entrance animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.hero-main-content .hero-discount-badge { animation: fadeUp 0.6s 0.1s var(--ease) both; }
.hero-main-content .hero-title          { animation: fadeUp 0.7s 0.25s var(--ease) both; }
.hero-main-content .hero-subtitle       { animation: fadeUp 0.7s 0.4s var(--ease) both; }
.hero-main-content .hero-pills          { animation: fadeUp 0.7s 0.5s var(--ease) both; }
.hero-main-content .hero-actions        { animation: fadeUp 0.7s 0.55s var(--ease) both; }
.hero-side-content { animation: fadeIn 0.8s 0.7s var(--ease) both; }

/* ════════════════════════════════════════════════════
   TRUST BAR (after hero)
═════════════════════════════════════════════════════ */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid rgba(196,149,106,0.12);
    padding: 1.1rem 0;
}
.trust-bar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 500;
}
.trust-item-icon {
    width: 32px;
    height: 32px;
    background: var(--rose-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.trust-sep { width: 1px; height: 28px; background: rgba(196,149,106,0.2); }

/* ════════════════════════════════════════════════════
   CATEGORY CARDS
═════════════════════════════════════════════════════ */
.categories-section { padding: 5rem 0; background: var(--ivory); }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 2/3;
    cursor: pointer;
    transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
    background: var(--dark-mid);
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.category-card:hover img { transform: scale(1.08); }
.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,16,24,0.9) 0%, rgba(28,16,24,0.05) 55%);
    transition: var(--transition);
}
.category-card:hover .category-card-overlay { background: linear-gradient(to top, rgba(139,26,74,0.88) 0%, rgba(28,16,24,0.1) 60%); }
.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem 1.5rem;
    z-index: 3;
}
.category-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.3rem; }
.category-card-count { color: rgba(255,255,255,0.55); font-size: 0.78rem; font-weight: 500; }
.category-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.75rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s var(--ease);
}
.category-card:hover .category-card-arrow { opacity: 1; transform: translateX(0); }

/* ════════════════════════════════════════════════════
   PRODUCT CARDS
═════════════════════════════════════════════════════ */
.products-section { padding: 5rem 0; background: var(--ivory); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
    position: relative;
    border: none;
    text-align: center;
}
.product-card:hover {
    box-shadow: none;
    transform: translateY(-5px);
}
.product-card-img-wrap {
    display: block;
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--ivory-dark);
    border-radius: var(--radius-md);
}
.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-img { transform: scale(1.07); }
.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--rose);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    z-index: 2;
}
.product-badge-new  { background: var(--dark); }
.product-badge-sale { background: var(--error); }
.product-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    opacity: 0;
    z-index: 5;
    box-shadow: var(--shadow-sm);
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { background: var(--rose); color: var(--white); }

.product-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28,16,24,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s var(--ease);
}
.product-hover-overlay span {
    background: var(--white);
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    border-radius: 99px;
    transform: translateY(15px);
    transition: all 0.4s var(--ease);
    box-shadow: var(--shadow-md);
}
.product-card-img-wrap:hover .product-hover-overlay { opacity: 1; }
.product-card-img-wrap:hover .product-hover-overlay span { transform: translateY(0); }
.product-card-body { padding: 1.25rem 0.5rem; }
.product-category-tag {
    font-size: 0.72rem;
    color: var(--rose);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}
.product-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.product-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.product-stars { color: var(--gold); font-size: 0.82rem; }
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.4rem;
}
.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--rose);
}
.product-old-price {
    font-size: 0.875rem;
    color: var(--text-light);
    text-decoration: line-through;
}
.product-min-qty { font-size: 0.75rem; color: var(--text-light); margin-top: 0.2rem; display: block; }

/* ════════════════════════════════════════════════════
   HOW IT WORKS
═════════════════════════════════════════════════════ */
.how-section {
    padding: 5.5rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.how-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,26,74,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.how-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,149,106,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.how-section .section-header h2 { color: var(--white); }
.how-section .section-header p  { color: rgba(255,255,255,0.5); }
.how-section .section-tag { background: rgba(139,26,74,0.2); color: #FFD4E8; border-color: rgba(139,26,74,0.3); }
.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    position: relative;
}
.how-steps::before {
    content: '';
    position: absolute;
    top: 2.8rem;
    left: calc(16.67% + 1rem);
    right: calc(16.67% + 1rem);
    height: 1px;
    background: linear-gradient(to right, transparent, var(--rose), transparent);
    opacity: 0.4;
}
.how-step {
    text-align: center;
    position: relative;
}
.how-step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--rose), var(--rose-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 28px rgba(139,26,74,0.4);
    position: relative;
    z-index: 1;
}
.how-step h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.75rem; }
.how-step p  { color: rgba(255,255,255,0.5); font-size: 0.875rem; max-width: 240px; margin: 0 auto; line-height: 1.7; }
.how-step-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

/* ════════════════════════════════════════════════════
   TESTIMONIALS
═════════════════════════════════════════════════════ */
.testimonials-section { padding: 3rem 0 2rem 0; background: var(--ivory-dark); }
.testimonials-swiper { padding-bottom: 2rem !important; height: auto !important; }
.testimonials-swiper .swiper-wrapper { height: auto !important; display: flex !important; align-items: stretch !important; }
.testimonials-swiper .swiper-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(196,149,106,0.12);
    height: 100% !important;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 0.25rem;
    right: 1.25rem;
    font-size: 4rem;
    color: rgba(196,149,106,0.06);
    font-family: "Cormorant Garamond", serif;
    line-height: 1;
    pointer-events: none;
}
.testimonial-card:hover { 
    box-shadow: 0 10px 25px -5px rgba(196,149,106,0.12), 0 8px 16px -6px rgba(196,149,106,0.08); 
    border-color: rgba(196,149,106,0.22); 
    transform: translateY(-2px);
}
.testimonial-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.05em; margin-bottom: 0.875rem; }
.testimonial-text {
    font-size: 0.925rem;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 1.25rem;
    font-style: italic;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid var(--rose-light);
}
.testimonial-author { display: flex; align-items: center; gap: 0.65rem; margin-top: auto; padding-top: 0.75rem; border-top: 1px dashed rgba(196,149,106,0.12); }
.testimonial-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--rose), var(--rose-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 600; color: var(--dark); font-size: 0.825rem; }
.testimonial-product { font-size: 0.72rem; color: var(--text-light); }

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.25rem 1rem;
    }
    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 0.875rem;
        line-height: 1.55;
        padding-left: 0.75rem;
    }
    .testimonial-stars {
        margin-bottom: 0.65rem;
        font-size: 0.85rem;
    }
    .testimonial-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    .testimonial-name {
        font-size: 0.78rem;
    }
    .testimonial-product {
        font-size: 0.68rem;
    }
}

/* Swiper */
.swiper-pagination-bullet-active { background: var(--rose) !important; }
.swiper-pagination-bullet { background: var(--rose-light) !important; opacity: 1 !important; }

/* ════════════════════════════════════════════════════
   SHORTS / VIDEO SECTION
═════════════════════════════════════════════════════ */
.shorts-section { padding: 5.5rem 0; background: var(--white); }
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}
.short-card {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark);
    box-shadow: var(--shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
    cursor: pointer;
    display: block;
}
.short-card:hover { transform: scale(1.025); z-index: 5; box-shadow: var(--shadow-lg); }
.short-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.short-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28,16,24,0.55) 0%, transparent 50%);
    transition: 0.3s;
}
.short-card:hover .short-overlay { background: linear-gradient(to top, rgba(139,26,74,0.65) 0%, transparent 55%); }
.short-cta-bar {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    color: var(--white);
}
.short-cta-bar span { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; }
.short-cta-icon {
    background: var(--rose);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(139,26,74,0.4);
    transition: 0.3s;
}
.short-card:hover .short-cta-bar { background: rgba(255,255,255,0.2); transform: translateY(-4px); }
.short-card:hover .short-cta-icon { background: var(--white); }
.short-card:hover .short-cta-icon svg { stroke: var(--rose); }

/* ════════════════════════════════════════════════════
   CTA BANNER
═════════════════════════════════════════════════════ */
.cta-section {
    padding: 5.5rem 0;
    background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 50%, var(--rose-mid) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.cta-section::after {
    content: '✦';
    position: absolute;
    top: -2rem;
    right: 5%;
    font-size: 20rem;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    font-family: serif;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.75rem); }
.cta-section p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 500px; margin: 1rem auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ════════════════════════════════════════════════════
   FOOTER
═════════════════════════════════════════════════════ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.65);
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--rose), transparent);
    opacity: 0.4;
}
.footer-top { padding: 5rem 0 3.5rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
}
.footer-brand p { margin-top: 1.1rem; font-size: 0.875rem; line-height: 1.75; max-width: 280px; color: rgba(255,255,255,0.5); }
.footer-col h4 {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a { font-size: 0.85rem; opacity: 0.6; transition: var(--transition-fast); }
.footer-col ul a:hover { opacity: 1; color: var(--gold-light); }
.contact-list li { font-size: 0.85rem; margin-bottom: 0.65rem; }
.contact-list a { color: rgba(255,255,255,0.6); }
.contact-list a:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 0.65rem; margin-top: 1.5rem; }
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.6);
    transition: var(--transition-fast);
}
.social-links a:hover { background: var(--rose); border-color: var(--rose); color: var(--white); transform: translateY(-2px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.payment-icons { display: flex; gap: 0.5rem; }
.payment-badge {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    padding: 0.25rem 0.875rem;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.07);
}

/* ════════════════════════════════════════════════════
   FORMS
═════════════════════════════════════════════════════ */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(196,149,106,0.25);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition-fast);
    outline: none;
    appearance: none;
}
.form-control:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(139,26,74,0.1); }
.form-control::placeholder { color: var(--text-light); font-size: 0.875rem; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-error { font-size: 0.78rem; color: var(--error); margin-top: 0.3rem; }
.form-hint  { font-size: 0.78rem; color: var(--text-light); margin-top: 0.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ════════════════════════════════════════════════════
   BADGES & MISC
═════════════════════════════════════════════════════ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 600;
}
.badge-success { background: #D1FAE5; color: #065F46; }
.badge-warning { background: #FEF3C7; color: #92400E; }
.badge-error   { background: #FEE2E2; color: #991B1B; }
.badge-info    { background: #DBEAFE; color: #1E40AF; }
.badge-rose    { background: var(--rose-pale); color: var(--rose); border: 1px solid rgba(139,26,74,0.15); }
.badge-gold    { background: var(--gold-pale); color: var(--gold-dark); border: 1px solid rgba(196,149,106,0.2); }

/* ════════════════════════════════════════════════════
   PAGE HERO
═════════════════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
    padding: 4.5rem 0 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '✦';
    position: absolute;
    bottom: -3rem;
    right: 8%;
    font-size: 16rem;
    color: rgba(255,255,255,0.02);
    font-family: serif;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.55); max-width: 500px; margin: 0.875rem auto 0; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { opacity: 0.35; }

/* ════════════════════════════════════════════════════
   RATING & PAGINATION
═════════════════════════════════════════════════════ */
.stars-display { color: var(--gold); letter-spacing: 0.03em; }
.pagination { display: flex; gap: 0.4rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1.5px solid rgba(196,149,106,0.2);
    background: var(--white);
    color: var(--text);
    transition: var(--transition-fast);
}
.pagination a:hover { border-color: var(--rose); color: var(--rose); }
.pagination .active { background: var(--rose); border-color: var(--rose); color: var(--white); }

/* ════════════════════════════════════════════════════
   EMPTY STATE
═════════════════════════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-light);
}
.empty-state-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-state h3   { color: var(--dark); margin-bottom: 0.5rem; }

/* ════════════════════════════════════════════════════
   SCROLL ANIMATIONS (Intersection Observer)
═════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
═════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .hero-grid { grid-template-columns: 1fr 360px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 1024px) {
    .header-top-bar { display: none; }
    .hero-grid { grid-template-columns: 1fr; grid-template-rows: 65vh auto; }
    .hero-side-panels { grid-template-columns: 1fr 1fr; grid-template-rows: unset; height: 280px; }
    .hero-side-panel:first-child { border-bottom: none; border-right: 2px solid var(--dark); }
    .how-steps::before { display: none; }
    .hero-stats-inner { gap: 0; flex-wrap: wrap; }
    .hero-stat { padding: 1rem 1.5rem; }
    .hero-scroll-cue { display: none; }
}
@media (max-width: 768px) {
    /* ── Header: hide desktop elements, show hamburger ── */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 1.5rem 2rem;
        gap: 0.25rem;
        overflow-y: auto;
        z-index: 998;
        box-shadow: var(--shadow-lg);
    }
    .nav-links.mobile-open { display: flex; }
    .nav-links > li > a { font-size: 1rem; padding: 0.8rem 1rem; border-radius: var(--radius-sm); }
    .nav-links > li > a::after { display: none; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--ivory); margin-top: 0.25rem; }
    .hamburger { display: flex; }
    .nav-cta-btn { display: none; }

    /* ── Header inner: logo + hamburger only ── */
    .header-main-inner { gap: 0.5rem !important; }
    .search-wrap { display: none !important; }
    .header-actions { gap: 1rem !important; }
    .premium-action-btn span { display: none; }
    .navbar { display: none; } /* hide category nav bar on mobile — uses bottom bar instead */

    /* ── Hero ── */
    .hero-grid { grid-template-rows: 80vh auto; }
    .hero-main-content { padding: 2rem 1.5rem; }
    .hero-side-panels { height: 240px; }
    .hero-stats-strip { display: none; }
    .trust-bar-inner { gap: 1.5rem; padding: 0 1.5rem; }
    .trust-sep { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-pills { display: none; }

    /* ── Grids ── */
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }

    /* ── Flash messages ── */
    .flash-message { right: 0.75rem; left: 0.75rem; max-width: 100%; }

    /* ── Product cards ── */
    .product-card-name { font-size: 0.85rem; }
    .product-card-price { font-size: 1rem; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
    .hero-grid { grid-template-rows: 80vh auto; }
    .hero-side-panels { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; height: 280px; }
    .hero-side-panel:first-child { border-right: none; border-bottom: 2px solid var(--dark); }
    .shorts-grid { grid-template-columns: 1fr 1fr; }
    .hero-stat { padding: 0.875rem 1rem; min-width: 50%; }

    /* ── Container tighter on very small screens ── */
    .container { padding: 0 1rem; }

    /* ── Footer column: single ── */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { margin-bottom: 1rem; }
}

/* ════════════════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION BAR
═════════════════════════════════════════════════════ */

/* Only visible on mobile */
.mobile-bottom-bar { display: none; }

@media (max-width: 768px) {

    /* Push body content up so bottom bar doesn't cover it */
    body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }

    .mobile-bottom-bar {
        display: flex;
        align-items: stretch;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1200;
        height: calc(68px + env(safe-area-inset-bottom, 0px));
        padding-bottom: env(safe-area-inset-bottom, 0px);

        /* Glassmorphism bg */
        background: rgba(250, 246, 240, 0.92);
        backdrop-filter: blur(24px) saturate(200%);
        -webkit-backdrop-filter: blur(24px) saturate(200%);
        border-top: 1px solid rgba(196, 149, 106, 0.18);
        box-shadow: 0 -8px 32px rgba(28, 16, 24, 0.1);

        /* Smooth show/hide transition */
        transform: translateY(0);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* Slide down to hide when scrolling down */
    .mobile-bottom-bar.mbb-hidden {
        transform: translateY(calc(100% + env(safe-area-inset-bottom, 0px)));
    }

    /* Each tab item */
    .mbb-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 0.5rem 0.25rem;
        color: var(--text-light);
        text-decoration: none;
        position: relative;
        transition: color 0.2s ease;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }

    .mbb-item:active { opacity: 0.7; }

    /* Icon wrapper */
    .mbb-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* Label */
    .mbb-label {
        font-size: 0.62rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        line-height: 1;
        transition: color 0.2s ease;
        white-space: nowrap;
    }

    /* Active state */
    .mbb-item.mbb-active { color: var(--rose); }
    .mbb-item.mbb-active .mbb-icon { transform: translateY(-2px) scale(1.1); }

    /* Active indicator dot */
    .mbb-item.mbb-active::after {
        content: '';
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 32px;
        height: 2.5px;
        background: var(--rose);
        border-radius: var(--radius-pill);
        animation: mbbIndicator 0.25s var(--ease) forwards;
    }
    @keyframes mbbIndicator {
        from { width: 0; opacity: 0; }
        to   { width: 32px; opacity: 1; }
    }

    /* ── CENTER CTA BUTTON ──────────────────────── */
    .mbb-item.mbb-cta {
        /* Slightly wider for center prominence */
        flex: 1.1;
        color: var(--rose);
        position: relative;
        /* Remove regular active indicator */
    }
    .mbb-item.mbb-cta::after { display: none !important; }

    .mbb-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, var(--rose), var(--rose-mid));
        border-radius: 50%;
        color: var(--white);
        box-shadow:
            0 -4px 15px rgba(139, 26, 74, 0.25),
            0 4px 10px rgba(139, 26, 74, 0.15);
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                    box-shadow 0.25s ease;
        /* Float above the bar */
        margin-top: -14px;
        position: relative;
        z-index: 2;
    }

    .mbb-item.mbb-cta:active .mbb-cta-btn {
        transform: scale(0.9);
        box-shadow: 0 2px 10px rgba(139, 26, 74, 0.3);
    }

    /* Outer ring pulse on CTA */
    .mbb-cta-btn::before {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 2px solid rgba(139, 26, 74, 0.25);
        animation: ctaPulse 2.5s ease infinite;
    }
    @keyframes ctaPulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50%       { transform: scale(1.15); opacity: 0; }
    }

    .mbb-item.mbb-cta .mbb-label {
        font-size: 0.6rem;
        color: var(--rose);
        margin-top: 2px;
    }

    /* ── CART BADGE ─────────────────────────────── */
    .mbb-badge {
        position: absolute;
        top: -4px;
        right: -4px;
        min-width: 17px;
        height: 17px;
        background: var(--rose);
        color: var(--white);
        font-size: 0.58rem;
        font-weight: 800;
        border-radius: var(--radius-pill);
        display: none; /* hidden by default, shown via JS when count > 0 */
        align-items: center;
        justify-content: center;
        padding: 0 3px;
        border: 2px solid var(--ivory);
        line-height: 1;
        animation: badgePop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    @keyframes badgePop {
        from { transform: scale(0); }
        to   { transform: scale(1); }
    }

    /* ── HOVER STATES (touch feedback) ─────────── */
    .mbb-item:not(.mbb-cta):hover {
        color: var(--rose);
    }
    .mbb-item:not(.mbb-cta):hover .mbb-icon {
        transform: translateY(-2px) scale(1.05);
    }
}

/* ════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS (UI/UX Improvement)
═════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.35, 1), transform 0.8s cubic-bezier(0.25, 1, 0.35, 1);
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Yumuşak section geçişleri için ek düzenlemeler */
section {
    position: relative;
}
.section-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(-99%);
}
.section-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: translateY(99%);
}

/* ── Pagination ────────────────────────────────────── */
.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding: 1rem;
}

.pagination-wrap .pagination {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    align-items: center;
}

.pagination-wrap .page-item {
    display: inline-block;
}

.pagination-wrap .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid rgba(196,149,106,0.2);
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    text-decoration: none;
}

.pagination-wrap .page-link:hover {
    background: var(--rose-pale);
    color: var(--rose);
    border-color: var(--rose);
}

.pagination-wrap .page-item.active .page-link {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
}

.pagination-wrap .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--ivory-dark);
    color: var(--text-light);
}

.pagination-wrap svg {
    width: 1.25rem;
    height: 1.25rem;
}


