/* ============================================================
   IMRA BOUTIQUE — Front-end Styles
   Luxury theme: magenta accent + dark text + light background
   ============================================================ */

:root {
    --brand-primary: #E91E63;
    --brand-primary-hover: #ff2d78;
    --brand-dark: #1A1A2E;
    --brand-light: #FFF5F7;
    --brand-cream: #FAFAFA;
    --brand-gold: #C9A84C;
    --text-primary: #1A1A2E;
    --text-secondary: #6B7280;
    --border: #E5E7EB;
    --success: #10B981;
    --danger: #EF4444;
    --white: #ffffff;
    --radius: 4px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* smooth sadece kullanıcı tıklamasıyla — yüklemede tarayıcı + layout kayması hissi vermesin */
html { scroll-behavior: auto; }
@media (prefers-reduced-motion: no-preference) {
    html:focus-within { scroll-behavior: smooth; }
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Aşağıdaki içerik yüklenince tarayıcı scroll anchoring ile sayfayı hafif kaydırmasın */
main {
    overflow-anchor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ---- UTILITY ---- */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 4rem 0; }
.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

/* ---- HEADER ---- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: var(--border);
}

.site-header.header-transparent {
    background: transparent;
    backdrop-filter: none;
    border-bottom-color: transparent;
}

.site-header.header-transparent .header-logo {
    color: #fff;
}

.site-header.header-transparent .header-nav a {
    color: rgba(255,255,255,0.9);
}

.site-header.header-transparent .header-nav a:hover {
    color: rgba(255,255,255,1);
}

.site-header.header-transparent .header-nav a::after {
    background: var(--brand-primary);
}

.site-header.header-transparent .header-icon svg {
    stroke: #fff;
}

.site-header.header-transparent .menu-toggle svg {
    stroke: #fff;
}

.site-header.header-transparent.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border);
}

.site-header.header-transparent.scrolled .header-logo {
    color: var(--brand-dark);
}

.site-header.header-transparent.scrolled .header-nav a {
    color: var(--text-primary);
}

.site-header.header-transparent.scrolled .header-icon svg {
    stroke: currentColor;
}

.site-header.header-transparent.scrolled .menu-toggle svg {
    stroke: currentColor;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header-logo {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--brand-dark);
}

.header-logo img { height: 38px; }

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.header-nav a {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition);
}

.header-nav a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -4px;
    right: -4px;
    height: 2px;
    background: var(--brand-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-nav a:hover { color: var(--brand-primary); }
.header-nav a:hover::after { transform: scaleX(1); }

/* Header icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon {
    position: relative;
    color: var(--text-primary);
    transition: color var(--transition);
}
.header-icon:hover { color: var(--brand-primary); }
.header-icon svg { width: 20px; height: 20px; }

.cart-count, .fav-count {
    position: absolute;
    top: -6px; right: -8px;
    background: var(--brand-primary);
    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;
}

/* Language Selector — flags only */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lang-flag {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color var(--transition), transform var(--transition);
    cursor: pointer;
}

.lang-flag:hover { transform: scale(1.15); }
.lang-flag.active { border-color: var(--brand-primary); }

.lang-flag img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.lang-flag .lang-tooltip {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-dark);
    color: var(--white);
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.lang-flag:hover .lang-tooltip { opacity: 1; }

/* Menü (masaüstü + mobil — CMS səhifələri) */
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 0.5rem;
    cursor: pointer;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img, .hero-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.hero-eyebrow {
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.8 !important;
    margin-bottom: 1rem !important;
    font-weight: 500;
}

/* Animated gradient hero background */
.hero-gradient-animated {
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #1A1A2E, #E91E63, #2d2d4a, #C9A84C);
    background-size: 400% 400%;
    animation: heroGradientShift 12s ease infinite;
}

@keyframes heroGradientShift {
    0%   { background-position: 0% 50%; }
    25%  { background-position: 100% 50%; }
    50%  { background-position: 100% 100%; }
    75%  { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* ---- HERO SLIDER (horizontal slide) ---- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 550px;
    overflow: hidden;
    background: #000;
}

.hero-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-slide .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide .hero-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.45));
    z-index: 1;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease 0.25s, transform 0.6s ease 0.25s;
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide .hero-content .hero-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.7;
}

.hero-slide .hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-slide .hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

/* Slider arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    transition: background 0.3s, border-color 0.3s;
}
.hero-arrow:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}
.hero-arrow--prev { left: 1.5rem; }
.hero-arrow--next { right: 1.5rem; }

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.hero-dot {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
}

.hero-dot-bar {
    display: block;
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.2);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

.hero-dot-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 0;
    background: var(--brand-primary);
    border-radius: 1px;
}

.hero-dot.active .hero-dot-bar::after {
    animation: heroDotProgress 5s linear forwards;
}

@keyframes heroDotProgress {
    from { width: 0; }
    to { width: 100%; }
}

@media (max-width: 768px) {
    .hero-slider { min-height: 450px; }
    .hero-slide .hero-content h1 { font-size: 2rem; }
    .hero-slide .hero-content { padding: 1.25rem; }
    .hero-arrow { width: 38px; height: 38px; font-size: 1.1rem; }
    .hero-arrow--prev { left: 0.75rem; }
    .hero-arrow--next { right: 0.75rem; }
    .hero-dots { bottom: 1.5rem; gap: 0.8rem; }
    .hero-dot-bar { width: 28px; }
}

@media (max-width: 480px) {
    .hero-slider { min-height: 380px; }
    .hero-slide .hero-content h1 { font-size: 1.5rem; }
    .hero-arrow { display: none; }
}

/* Kateqoriya səhifəsi tam ekran banner (hero-slider sinifləri ilə) */
.category-hero.hero-slider {
    height: 100vh;
    height: 100dvh;
    min-height: 520px;
}

.category-hero .hero-slide .hero-content {
    max-width: 760px;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
    transition: opacity 0.4s ease;
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50%      { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* Section divider */
.section-divider {
    width: 60px;
    height: 2px;
    background: var(--brand-primary);
    margin: 0.75rem auto 2.5rem;
}

/* Homepage section visual richness */
.section-new-arrivals {
    background: linear-gradient(180deg, #fafafa 0%, #f3f0f5 50%, #fafafa 100%);
    position: relative;
}
.section-new-arrivals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--brand-primary) 50%, transparent 100%);
    opacity: 0.2;
}

.section-bestsellers {
    background: var(--white);
    position: relative;
}
.section-bestsellers::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%);
}

.section-reviews {
    background: linear-gradient(135deg, #1A1A2E 0%, #2d2d4a 100%);
    position: relative;
    overflow: hidden;
}
.section-reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(233,30,99,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.section-reviews .section-title { color: #fff; }
.section-reviews .section-divider { background: rgba(233,30,99,0.6); }
.section-reviews .review-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}
.section-reviews .review-card .stars { color: var(--brand-gold); }
.section-reviews .review-card p { color: rgba(255,255,255,0.7); }
.section-reviews .review-card .author { color: #fff; }
.section-reviews .review-card .city { color: rgba(255,255,255,0.5); }

/* Category card placeholder (no image) */
.category-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}

.category-card:hover .category-card-placeholder {
    transform: scale(1.08);
}

.category-card-icon {
    width: 64px;
    height: 64px;
    opacity: 0.3;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.category-card-icon svg {
    width: 100%;
    height: 100%;
}

.category-card:hover .category-card-icon {
    opacity: 0.5;
    transform: scale(1.1);
}

/* Campaign gradient fallback */
.campaign-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #E91E63 50%, #C9A84C 100%);
    background-size: 200% 200%;
    animation: campaignShift 8s ease infinite;
}

@keyframes campaignShift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* Lookbook gradient fallback */
.lookbook-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d4a 0%, #C9A84C 100%);
}

/* Instagram grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    display: block;
    position: relative;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.instagram-item:hover .instagram-placeholder {
    transform: scale(1.08);
}

.instagram-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-hover svg {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-hover {
    background: rgba(0,0,0,0.3);
}

.instagram-item:hover .instagram-hover svg {
    opacity: 1;
}

/* Empty section notice */
.empty-section-notice {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-icon {
    margin-bottom: 1rem;
    opacity: 0.6;
}

.empty-section-notice p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: none;
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--brand-primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--brand-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 30, 99, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--brand-dark);
}

.btn-dark {
    background: var(--brand-dark);
    color: var(--white);
}
.btn-dark:hover {
    background: #2d2d4a;
    transform: translateY(-2px);
}

/* ---- CATEGORY GRID (homepage) ---- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.category-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.category-card:hover img { transform: scale(1.08); }

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.category-card-overlay h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.section-home-categories {
    padding-top: 2.5rem;
    padding-bottom: 1rem;
}

.home-categories-showcase {
    background: linear-gradient(180deg, #faf9fb 0%, #ffffff 55%);
}

.section-home-categories .section-title,
.section-home-categories .section-subtitle {
    text-align: center;
}

.section-home-categories .section-subtitle {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.section-home-categories .section-divider {
    margin-left: auto;
    margin-right: auto;
}

.category-grid--home {
    margin-top: 0.25rem;
}

/* ---- PRODUCT CARD ---- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    cursor: pointer;
    perspective: 800px;
}

.product-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 6px;
    background: #f8f8f8;
    display: block;
}

.product-card-image img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f8f8f8;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.product-card-noimage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f8f8, #eee);
}

.product-card-image .hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-card.has-hover:hover .hover-img { opacity: 1; }
.product-card.has-hover:hover .main-img { opacity: 0; }

/* 3D tilt effect via JS */
.product-card.tilt {
    transform-style: preserve-3d;
    transition: transform 0.15s ease;
}

/* Badges */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
}
.badge-new { background: var(--brand-dark); color: var(--white); }
.badge-sale { background: var(--brand-primary); color: var(--white); }
.badge-limited { background: var(--brand-gold); color: var(--brand-dark); }

/* Favorite button */
.product-fav {
    position: absolute;
    top: 10px; right: 10px;
    z-index: 2;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover .product-fav { opacity: 1; transform: translateY(0); }
.product-fav svg { width: 16px; height: 16px; color: var(--text-secondary); }
.product-fav:hover svg { color: var(--brand-primary); }

.product-card-info {
    padding: 0.85rem 0.25rem;
}

.product-card-info h4 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card-info h4 a { transition: color var(--transition); }
.product-card-info h4 a:hover { color: var(--brand-primary); }

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-price .current {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brand-dark);
}

.product-price .old {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.product-colors {
    display: flex;
    gap: 4px;
    margin-top: 0.4rem;
}

.color-dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: transform 0.2s ease;
}
.color-dot:hover { transform: scale(1.3); }

/* ---- PRODUCT SLIDER ---- */
.product-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
}
.product-slider::-webkit-scrollbar { display: none; }
.product-slider .product-card {
    min-width: 220px;
    max-width: 260px;
    scroll-snap-align: start;
}

/* ---- CAMPAIGN BANNER ---- */
.campaign-banner {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.campaign-banner img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.campaign-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    padding: 3rem;
    color: var(--white);
}

.campaign-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

/* ---- LOOK BOOK ---- */
.lookbook-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.lookbook-section img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.lookbook-section:hover img { transform: scale(1.04); }

.lookbook-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
}

.lookbook-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--white);
    text-align: center;
    letter-spacing: 0.05em;
}

/* ---- REVIEWS ---- */
.reviews-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0.5rem;
}
.reviews-slider::-webkit-scrollbar { display: none; }

.review-card {
    min-width: 320px;
    background: var(--brand-cream);
    border-radius: 8px;
    padding: 2rem;
    scroll-snap-align: start;
}

.review-card .stars { color: var(--brand-gold); margin-bottom: 0.75rem; }
.review-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.review-card .author { font-weight: 600; font-size: 0.85rem; }
.review-card .city { color: var(--text-secondary); font-size: 0.8rem; }

/* ---- NEWSLETTER (luxury) ---- */
.newsletter-section {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 0;
    overflow: hidden;
}

.newsletter-section--lux {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(233, 30, 99, 0.12) 0%, transparent 55%),
        linear-gradient(165deg, #12121f 0%, #1a1a2e 42%, #151528 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.newsletter-section__inner {
    padding: 4.25rem 1.5rem 4.5rem;
    position: relative;
    z-index: 1;
}

.newsletter-section__inner::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(280px, 40vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.55), transparent);
    pointer-events: none;
}

.newsletter-section__eyebrow {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.95);
    margin-bottom: 1rem;
}

.newsletter-section__title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.5vw, 2.15rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 0.65rem;
    line-height: 1.2;
}

.newsletter-section__lead {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
    font-weight: 300;
    max-width: 420px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

.newsletter-form--lux {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0.65rem;
    max-width: 520px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form--lux input {
    flex: 1 1 220px;
    min-width: 0;
    padding: 0.95rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    color: var(--white);
    border-radius: 2px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background 0.25s ease;
}

.newsletter-form--lux input::placeholder { color: rgba(255, 255, 255, 0.42); }
.newsletter-form--lux input:focus {
    border-color: rgba(201, 168, 76, 0.55);
    box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.2);
    background: rgba(255, 255, 255, 0.09);
}

.newsletter-form__btn {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
    border-radius: 2px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 600;
}

.newsletter-form__msg {
    margin-top: 1rem;
    font-size: 0.82rem;
    display: none;
}

/* ---- FOOTER (luxury) ---- */
.site-footer--lux {
    position: relative;
    background:
        radial-gradient(ellipse 70% 40% at 20% 100%, rgba(233, 30, 99, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 35% at 85% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, #10101c 0%, #141426 40%, #0e0e18 100%);
    color: rgba(255, 255, 255, 0.68);
    padding: 0 0 2.5rem;
}

.footer-lux-ornament {
    height: 1px;
    max-width: 100px;
    margin: 0 auto 2.75rem;
    background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
    opacity: 0.85;
}

.footer-grid--lux {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 3.25rem;
    padding-top: 0.5rem;
}

.footer-col--brand .footer-brand-title {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.footer-brand-text {
    font-size: 0.88rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.55);
    max-width: 22rem;
    font-weight: 300;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.9);
    margin-bottom: 1.35rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.22);
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 0.65rem; }

.footer-links a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.58);
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.62);
}

.footer-lang--lux {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}

.footer-lang--lux .lang-flag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: border-color var(--transition), transform 0.25s ease;
}

.footer-lang--lux .lang-flag:hover,
.footer-lang--lux .lang-flag.active {
    border-color: rgba(201, 168, 76, 0.55);
}

.footer-lang--lux .lang-flag.active {
    box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.35);
}

.footer-social--lux {
    display: flex;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.03);
    transition: color var(--transition), border-color var(--transition), transform 0.3s ease, box-shadow var(--transition);
}

.footer-social-link:hover {
    color: var(--brand-gold);
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.footer-bottom--lux {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 2.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
}

.footer-bottom__copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.footer-bottom__copy-main {
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.72);
}

.footer-bottom__copy-sub {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

.footer-credit {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.42);
    text-align: right;
    max-width: 28rem;
    line-height: 1.6;
}

.footer-credit__brand {
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(201, 168, 76, 0.95);
    margin: 0 0.12em;
    padding: 0.1em 0.25em;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.footer-credit__brand:hover {
    color: var(--white);
    border-bottom-color: rgba(201, 168, 76, 0.6);
}

.footer-credit__text {
    font-weight: 300;
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--brand-primary); }
.breadcrumb span { color: var(--text-secondary); }

/* ============================================================
   RESPONSIVE — Mobile-First Comprehensive
   ============================================================ */

/* ---- MOBILE DRAWER MENU ---- */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-overlay.active { display: block; opacity: 1; }

.mobile-drawer {
    display: block;
    position: fixed;
    top: 0; right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    z-index: 1002;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -4px 0 30px rgba(0,0,0,0.12);
}
.mobile-drawer.open { right: 0; }

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.mobile-drawer-header .header-logo {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: inherit;
    text-decoration: none;
}
.mobile-drawer-close {
    background: none; border: none;
    color: var(--text-secondary);
    padding: 0.25rem;
}

.mobile-drawer-nav {
    list-style: none;
    padding: 1rem 0;
}
.mobile-drawer-nav li {
    border-bottom: 1px solid var(--border);
}
.mobile-drawer-nav a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    transition: all 0.2s ease;
}
.mobile-drawer-nav a:active {
    background: var(--brand-light);
    color: var(--brand-primary);
}
.mobile-drawer-nav .sale-link {
    color: var(--brand-primary) !important;
}

.mobile-drawer-nav-label {
    list-style: none;
    padding: 0.85rem 1.5rem 0.35rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted, #888);
    border-bottom: none;
}

.mobile-drawer-nav li.mobile-drawer-nav-label {
    border-bottom: none;
}

.mobile-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

/* ---- TABLET (1024px) ---- */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid--lux { grid-template-columns: 1fr 1fr; gap: 2rem; }

    .header-nav { gap: 1.25rem; }
    .header-nav a { font-size: 0.7rem; }

    .campaign-content h2 { font-size: 2rem; }
    .lookbook-content h2 { font-size: 2.25rem; }
}

/* ---- MOBILE (768px) ---- */
@media (max-width: 768px) {
    /* Header */
    .header-nav { display: none !important; }
    .lang-selector { gap: 0.25rem; }
    .lang-flag { width: 20px; height: 20px; }
    .lang-flag .lang-tooltip { display: none; }
    .header-icons { gap: 0.6rem; }
    .header-icon svg { width: 18px; height: 18px; }

    /* Hero */
    .hero { min-height: 500px; height: 85vh; }
    .hero-content { padding: 1.25rem; }
    .hero-content h1 { font-size: 2rem; line-height: 1.2; margin-bottom: 0.75rem; }
    .hero-content p { font-size: 0.9rem; margin-bottom: 1.25rem; }
    .hero-eyebrow { font-size: 0.65rem !important; letter-spacing: 0.2em; }
    .hero-scroll-indicator { bottom: 1.5rem; right: 1rem; }
    .hero-scroll-indicator span { width: 20px; height: 34px; }

    .hero-slide .hero-content h1 { font-size: 2rem; }

    /* Buttons mobile */
    .btn { padding: 0.75rem 1.75rem; font-size: 0.75rem; }

    /* Section spacing */
    .section { padding: 2.5rem 0; }
    .section-title { font-size: 1.35rem; margin-bottom: 0.35rem; }
    .section-subtitle { font-size: 0.85rem; margin-bottom: 1.5rem; }

    /* Product grid */
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .product-card-info { padding: 0.5rem 0.1rem; }
    .product-card-info h4 { font-size: 0.75rem; }
    .product-price .current { font-size: 0.8rem; }
    .product-price .old { font-size: 0.7rem; }
    .product-fav { opacity: 1; width: 28px; height: 28px; }
    .product-fav svg { width: 13px; height: 13px; }
    .badge-tag { font-size: 0.55rem; padding: 2px 6px; }
    .product-badge { top: 6px; left: 6px; }

    /* Product slider */
    .product-slider .product-card { min-width: 200px; }
    .product-slider { gap: 0.75rem; }

    /* Category grid */
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .category-card { aspect-ratio: 4/5; }
    .category-card-overlay { padding: 1rem; }
    .category-card-overlay h3 { font-size: 1rem; }
    .category-card-icon { width: 48px; height: 48px; }

    /* Instagram */
    .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }

    /* Campaign banner */
    .campaign-banner { min-height: 320px; }
    .campaign-content { padding: 1.5rem; max-width: 100%; }
    .campaign-content h2 { font-size: 1.5rem; }

    /* Lookbook */
    .lookbook-section { height: 50vh; min-height: 350px; }
    .lookbook-content h2 { font-size: 1.75rem; }

    /* Reviews */
    .review-card { min-width: 260px; padding: 1.5rem; }
    .review-card p { font-size: 0.8rem; }
    .reviews-slider { gap: 0.75rem; }

    /* Newsletter */
    .newsletter-section__inner { padding: 2.75rem 1rem 3rem; }
    .newsletter-section__title { font-size: 1.35rem; }
    .newsletter-form--lux { flex-direction: column; align-items: stretch; }
    .newsletter-form__btn { width: 100%; }

    /* Footer */
    .site-footer--lux { padding-bottom: 1.75rem; }
    .footer-grid--lux { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
    .footer-heading { font-size: 0.62rem; margin-bottom: 1rem; }
    .footer-brand-text { font-size: 0.82rem; }
    .footer-links a { font-size: 0.8rem; }
    .footer-bottom--lux {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 1.75rem;
        gap: 1rem;
    }
    .footer-bottom__copy { align-items: center; text-align: center; }
    .footer-credit { text-align: center; max-width: 100%; font-size: 0.68rem; letter-spacing: 0.06em; }

    /* Breadcrumb */
    .breadcrumb { font-size: 0.7rem; gap: 0.35rem; padding: 0.75rem 0; flex-wrap: wrap; }

    /* Product detail */
    .product-detail-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
    .perspective-gallery { aspect-ratio: 4/5 !important; border-radius: 0 !important; margin: 0 -1rem; width: calc(100% + 2rem); }

    /* Cart */
    .cart-layout { grid-template-columns: 1fr !important; gap: 1.5rem !important; }

    /* Blog grid */
    .blog-grid { grid-template-columns: 1fr !important; }

    /* Contact grid */
    .contact-grid { grid-template-columns: 1fr !important; }

    /* Filter sidebar */
    .filter-sidebar {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 1000;
        background: var(--white);
        overflow-y: auto;
        padding: 0;
    }
    .filter-sidebar.filter-open {
        display: block;
    }
    .filter-sidebar-inner {
        padding: 1.5rem;
        padding-top: 4rem;
    }
    .filter-close-btn {
        position: absolute;
        top: 1rem; right: 1rem;
        background: none; border: none;
        font-size: 1.5rem;
        color: var(--text-primary);
        z-index: 2;
    }

    /* Category page layout */
    .category-layout { grid-template-columns: 1fr !important; }

    /* (Instagram grid handled in 768px breakpoint) */

    /* Touch: show fav button always */
    .product-card .product-fav { opacity: 1; transform: translateY(0); }
}

/* ---- SMALL MOBILE (480px) ---- */
@media (max-width: 480px) {
    .container { padding: 0 0.85rem; }

    /* Header */
    .header-inner { height: 56px; padding: 0 0.85rem; }
    .header-logo { font-size: 1rem; letter-spacing: 0.1em; }
    .header-logo img { height: 28px; }

    /* Hero */
    .hero { min-height: 420px; height: 75vh; }
    .hero-content h1 { font-size: 1.5rem; }
    .hero-content p { font-size: 0.8rem; }

    .hero-slide .hero-content h1 { font-size: 1.5rem; }

    /* Section */
    .section { padding: 2rem 0; }
    .section-title { font-size: 1.15rem; }

    /* Product grid — keep 2 cols but tighter */
    .product-grid { gap: 0.5rem; }
    .product-card-info { padding: 0.4rem 0; }
    .product-card-info h4 { font-size: 0.7rem; margin-bottom: 0.15rem; }
    .product-price .current { font-size: 0.75rem; }
    .product-price .old { font-size: 0.65rem; }
    .badge-tag { font-size: 0.5rem; padding: 1px 5px; }

    /* Slider cards */
    .product-slider .product-card { min-width: 160px; }

    /* Category grid */
    .category-grid { gap: 0.5rem; }
    .category-card-overlay h3 { font-size: 0.85rem; }

    /* Campaign */
    .campaign-banner { min-height: 260px; }
    .campaign-content { padding: 1.25rem; }
    .campaign-content h2 { font-size: 1.25rem; }

    /* Lookbook */
    .lookbook-section { height: 40vh; min-height: 280px; }
    .lookbook-content h2 { font-size: 1.35rem; }

    /* Review cards */
    .review-card { min-width: 230px; padding: 1.25rem; }

    /* Newsletter */
    .newsletter-section__title { font-size: 1.15rem; }

    /* Footer */
    .footer-heading { font-size: 0.58rem; }

    /* Product detail */
    .perspective-gallery { aspect-ratio: 1/1 !important; }

    /* Cart table */
    .cart-item-img { width: 48px !important; height: 60px !important; }

    /* Buttons smaller */
    .btn { padding: 0.65rem 1.5rem; font-size: 0.7rem; }

    /* Instagram */
    .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }

    /* Mobile drawer wider */
    .mobile-drawer { width: 90%; }
}

/* ---- VERY SMALL (360px) — Galaxy S, etc ---- */
@media (max-width: 360px) {
    .container { padding: 0 0.65rem; }
    .hero-content h1 { font-size: 1.3rem; }
    .hero-content p { font-size: 0.75rem; }
    .section-title { font-size: 1.05rem; }
    .product-slider .product-card { min-width: 140px; }
    .btn { padding: 0.6rem 1.25rem; font-size: 0.65rem; }
    .mobile-drawer { width: 95%; }
}

/* ---- TOUCH DEVICE HELPERS ---- */
@media (hover: none) and (pointer: coarse) {
    .product-card .product-fav { opacity: 1; transform: translateY(0); }
    .product-card-image { transform: none !important; }
    .card-shine { display: none !important; }
}

/* ---- LANDSCAPE PHONE ---- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: 100vh; height: 100vh; }
    .hero-content h1 { font-size: 1.5rem; }
    .hero-content p { display: none; }
}

/* ---- SAFE AREA INSETS (notch phones) ---- */
@supports (padding: max(0px)) {
    .site-header .header-inner {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    .site-footer .container,
    .site-footer--lux .container {
        padding-left: max(1.5rem, env(safe-area-inset-left));
        padding-right: max(1.5rem, env(safe-area-inset-right));
    }
    .footer-bottom--lux {
        padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
    }
}

/* ---- 360° SPIN ---- */
.product-spin-360 {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: var(--brand-cream);
    cursor: grab;
    user-select: none;
}

.product-spin-360 .spin-frame {
    width: 100%; height: 100%;
    object-fit: cover;
    display: none;
    pointer-events: none;
}

.product-spin-360 .spin-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: var(--white);
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 3;
}

/* ---- GSAP EFFECTS SUPPORT ---- */
.product-card-image {
    will-change: transform, box-shadow;
    transform-style: preserve-3d;
}

.hero-content > * {
    will-change: transform, opacity;
}

.campaign-content {
    will-change: transform, opacity;
}

/* Card shine layer base */
.card-shine {
    will-change: opacity, background;
}

/* Smooth image transitions for gallery perspective */
.gallery-slide img {
    will-change: transform;
    backface-visibility: hidden;
}

/* Page content entry */
main {
    will-change: opacity, transform;
}

/* ============================================================
   SITE ENTRANCE — qara intro, split video, scroll cinema
   ============================================================ */
body.entrance-open {
    overflow: hidden;
}

/* Giriş açıq olanda header üst-üstə düşməsin (overlay <main> içində qalırdı) */
body.entrance-open .site-header,
body.entrance-open .mobile-drawer,
body.entrance-open .mobile-overlay {
    visibility: hidden;
    pointer-events: none;
}

.site-entrance {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 50000;
    isolation: isolate;
    background: #030303;
    color: #faf7f2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: var(--font-sans);
}

.site-entrance--cinema {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.site-entrance__skip {
    position: absolute;
    top: max(2rem, env(safe-area-inset-top, 0px));
    right: max(2rem, env(safe-area-inset-right, 0px));
    z-index: 50010;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: skipPulse 2.5s infinite ease-in-out;
}

@keyframes skipPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); }
    50% { transform: scale(1.08); box-shadow: 0 8px 40px rgba(233, 30, 99, 0.25); border-color: rgba(255, 255, 255, 0.6); }
}

.site-entrance__skip:hover,
.site-entrance__skip:focus-visible {
    background: rgba(255, 255, 255, 0.35);
    border-color: #fff;
    color: #fff;
    animation-play-state: paused;
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    outline: none;
}

.site-entrance__intro {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    z-index: 3;
    pointer-events: none;
}

.site-entrance__tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 3.2vw, 1.85rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.45;
    max-width: 22em;
    color: rgba(250, 247, 242, 0.92);
}

.site-entrance__brand {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 500;
    letter-spacing: 0.18em;
    margin-top: 2rem;
    color: #fff;
}

.site-entrance__split {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    min-height: 0;
    flex-basis: 0;
    z-index: 2;
}

.site-entrance__pane {
    flex: 1 1 50%;
    align-self: stretch;
    min-width: 0;
    min-height: 45vh;
    position: relative;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: #050508;
    color: #fff;
    text-align: center;
    overflow: hidden;
    transition: color 0.3s ease;
}

.site-entrance__pane:focus-visible {
    outline: 2px solid rgba(233, 30, 99, 0.85);
    outline-offset: -4px;
}

.site-entrance__pane-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    filter: blur(12px);
    transform: scale(1);
    transition: filter 0.1s linear;
}

.site-entrance__pane:hover .site-entrance__pane-media {
    filter: blur(9px);
}

.site-entrance__pane-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    pointer-events: none;
}

.site-entrance__pane-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(3, 3, 5, 0.42) 0%,
        rgba(3, 3, 5, 0.22) 45%,
        rgba(3, 3, 5, 0.55) 100%
    );
    pointer-events: none;
}

.site-entrance__pane-label {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 2.8vw, 1.25rem);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    text-shadow:
        0 0 40px rgba(0, 0, 0, 0.95),
        0 2px 12px rgba(0, 0, 0, 0.9);
}

.site-entrance__split-line {
    position: absolute;
    left: 50%;
    top: 12%;
    bottom: 12%;
    width: 1px;
    z-index: 6;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.22) 20%,
        rgba(255, 255, 255, 0.22) 80%,
        transparent
    );
    pointer-events: none;
    z-index: 4;
}

.site-entrance__cinema {
    display: none;
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: #000;
}

.site-entrance__cinema-inner {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #000;
}

.site-entrance__cinema-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    cursor: default;
    z-index: 1;
}

.site-entrance__cinema-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.07;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-entrance__outro-veil {
    position: fixed;
    inset: 0;
    z-index: 50020;
    background: linear-gradient(160deg, #0a0a0c 0%, #1a1520 45%, #2a1220 100%);
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 767px) {
    .site-entrance__pane-label {
        letter-spacing: 0.18em;
    }
}

/* ---- PREFERS REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .site-entrance {
        display: none !important;
    }

    .category-hero .hero-slide .hero-content {
        opacity: 1 !important;
        transform: none !important;
    }
}
