/* ─────────────────────────────────────────────
   HASBURAK SARRAFİYE — Premium Design System
   ───────────────────────────────────────────── */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-950: #03081F;
    --navy-900: #060E2C;
    --navy-800: #0A1442;
    --navy-700: #131F5C;
    --navy-600: #1C2B7A;
    --navy-500: #2A3D9C;

    --gold-100: #F8EFD2;
    --gold-200: #F0DFA3;
    --gold-300: #E5C674;
    --gold-400: #D4AF37;
    --gold-500: #B8941F;
    --gold-600: #997910;

    --cream: #FAF6EE;
    --warm-white: #FFFCF7;
    --charcoal: #14161F;
    --soft-gray: rgba(255, 255, 255, 0.06);
    --hairline: rgba(212, 175, 55, 0.18);

    --radius: 18px;
    --radius-sm: 10px;
    --radius-lg: 28px;

    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.18);
    --shadow-lift: 0 22px 60px rgba(0, 0, 0, 0.45);
    --shadow-soft: 0 6px 24px rgba(3, 8, 31, 0.25);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--cream);
    background: var(--navy-950);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overscroll-behavior-y: none;
}

/* iOS safe-area support (notch + home indicator) */
@supports (padding: max(0px)) {
    .nav { padding-left: max(28px, env(safe-area-inset-left)); padding-right: max(28px, env(safe-area-inset-right)); }
    .footer { padding-bottom: max(32px, calc(env(safe-area-inset-bottom) + 12px)); }
    .fab { right: max(28px, calc(env(safe-area-inset-right) + 16px)); bottom: max(28px, calc(env(safe-area-inset-bottom) + 16px)); }
    .hero, .section, .page-header, .cta-band {
        padding-left: max(24px, env(safe-area-inset-left));
        padding-right: max(24px, env(safe-area-inset-right));
    }
}

/* iOS button reset */
button, input, textarea, select {
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

/* Mobile tap highlight */
a, button {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.15);
    touch-action: manipulation;
}

/* Smooth iOS scroll */
* { -webkit-overflow-scrolling: touch; }

/* Disable text inflation on landscape rotation */
body { -webkit-text-size-adjust: none; }

h1, h2, h3, h4, h5,
.serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: -0.005em;
    line-height: 1.15;
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-300);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

::selection {
    background: var(--gold-400);
    color: var(--navy-900);
}

/* ─── BACKGROUND CANVAS ─── */
.bg-canvas {
    position: fixed;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle at 20% 20%, rgba(28, 43, 122, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 148, 31, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--navy-900) 0%, var(--navy-950) 100%);
}

.bg-pattern {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        radial-gradient(rgba(212, 175, 55, 0.07) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.6;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.bg-particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-particles::before,
.bg-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    animation: drift 22s ease-in-out infinite;
    will-change: transform;
}

/* Mobile: lighter blur for better perf */
@media (max-width: 768px) {
    .bg-particles::before,
    .bg-particles::after {
        filter: blur(40px);
        opacity: 0.35;
    }
    .bg-particles::before { width: 280px; height: 280px; }
    .bg-particles::after { width: 360px; height: 360px; }
}

@media (max-width: 480px) {
    .bg-particles::before,
    .bg-particles::after { display: none; }
}

.bg-particles::before {
    top: -10%;
    left: 5%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, transparent 70%);
}

.bg-particles::after {
    bottom: -15%;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(28, 43, 122, 0.55) 0%, transparent 70%);
    animation-delay: -11s;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, 40px) scale(1.08); }
    66% { transform: translate(-40px, -30px) scale(0.95); }
}

/* Floating gold sparkles */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold-300);
    box-shadow: 0 0 12px var(--gold-400), 0 0 24px var(--gold-500);
    opacity: 0;
    animation: sparkle-float linear infinite;
}

@keyframes sparkle-float {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-100vh) scale(1.2); }
}

/* ─── NAVBAR ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 28px;
    transition: padding 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.4s ease,
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    background: linear-gradient(180deg, rgba(3, 8, 31, 0.55), rgba(3, 8, 31, 0));
}

.nav.scrolled {
    padding: 10px 28px;
    background: rgba(6, 14, 44, 0.92);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--hairline);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    height: 64px;
    width: auto;
    filter:
        drop-shadow(0 0 14px rgba(212, 175, 55, 0.35))
        drop-shadow(0 4px 14px rgba(0, 0, 0, 0.3));
    transition: filter 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.scrolled .brand-logo {
    height: 52px;
}

.brand:hover .brand-logo {
    filter:
        drop-shadow(0 0 22px rgba(212, 175, 55, 0.6))
        drop-shadow(0 6px 18px rgba(0, 0, 0, 0.4));
    transform: translateY(-1px) scale(1.03);
}

.footer-brand-block .brand-logo {
    height: 88px;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .brand-logo { height: 50px; }
    .nav.scrolled .brand-logo { height: 42px; }
    .footer-brand-block .brand-logo { height: 70px; }
}

@media (max-width: 420px) {
    .brand-logo { height: 42px; }
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.25), transparent 70%),
        linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
    display: grid;
    place-items: center;
    border: 1px solid var(--gold-400);
    box-shadow:
        0 0 24px rgba(212, 175, 55, 0.35),
        inset 0 0 12px rgba(212, 175, 55, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-mark img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand:hover .brand-mark {
    box-shadow:
        0 0 32px rgba(212, 175, 55, 0.55),
        inset 0 0 14px rgba(212, 175, 55, 0.2);
}

.brand:hover .brand-mark img {
    transform: rotate(8deg) scale(1.05);
}

.brand-mark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(240, 223, 163, 0.45) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shine 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0%, 30% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold-200);
    letter-spacing: 0.06em;
}

.brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.42em;
    color: rgba(245, 240, 232, 0.55);
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    position: relative;
    padding: 10px 18px;
    font-size: 0.86rem;
    font-weight: 500;
    color: rgba(250, 246, 238, 0.78);
    transition: color 0.3s ease;
    letter-spacing: 0.04em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover {
    color: var(--gold-200);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links a.active {
    color: var(--gold-200);
}

.nav-cta {
    margin-left: 8px;
    padding: 10px 22px !important;
    border: 1px solid var(--gold-400);
    border-radius: 100px;
    color: var(--gold-200) !important;
    background: rgba(212, 175, 55, 0.06);
    transition: all 0.3s ease !important;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: var(--gold-400);
    color: var(--navy-900) !important;
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--gold-300);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: -webkit-fill-available;
    background: rgba(3, 8, 31, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 1500;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold-200);
    padding: 8px 24px;
    letter-spacing: 0.04em;
}

.mobile-menu a:hover {
    color: var(--gold-400);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-900);
    box-shadow: 0 8px 28px rgba(184, 148, 31, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
}

.btn-ghost {
    background: transparent;
    color: var(--gold-200);
    border-color: rgba(212, 175, 55, 0.4);
}

.btn-ghost:hover {
    border-color: var(--gold-300);
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-200);
    transform: translateY(-2px);
}

.btn svg { transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ─── COMMON SECTIONS ─── */
.section {
    padding: 120px 28px;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 72px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-head .eyebrow {
    margin-bottom: 18px;
    display: inline-block;
}

.section-head h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 400;
    color: var(--gold-100);
    margin-bottom: 18px;
}

.section-head h2 em {
    color: var(--gold-300);
    font-style: italic;
    font-weight: 400;
}

.section-head p {
    color: rgba(250, 246, 238, 0.65);
    font-size: 1.02rem;
    max-width: 580px;
    margin: 0 auto;
}

/* ─── DIVIDER ─── */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 12px 0;
}

.divider::before,
.divider::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.divider-icon {
    color: var(--gold-400);
    font-size: 0.9rem;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 140px 28px 180px;
    position: relative;
    overflow: hidden;
}

/* Decorative fade strip at the hero bottom edge — ultra-soft gradient,
   no hard stops, so the transition into the next section is seamless */
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 260px;
    pointer-events: none;
    z-index: 3;
    background:
        linear-gradient(to bottom,
            rgba(6, 14, 44, 0) 0%,
            rgba(6, 14, 44, 0.04) 20%,
            rgba(6, 14, 44, 0.14) 40%,
            rgba(6, 14, 44, 0.32) 60%,
            rgba(6, 14, 44, 0.58) 78%,
            rgba(6, 14, 44, 0.88) 92%,
            rgba(6, 14, 44, 1) 100%),
        radial-gradient(140% 100% at 50% 100%,
            rgba(212, 175, 55, 0.12) 0%,
            rgba(212, 175, 55, 0.04) 40%,
            transparent 72%);
}

/* Hero tail — slim gold column + diamond drop, sits above the fade
   and gently leads the eye from the buttons down to the next section */
.hero-tail {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.hero-tail-line {
    width: 1px;
    height: 72px;
    background: linear-gradient(to bottom,
        rgba(212, 175, 55, 0) 0%,
        rgba(212, 175, 55, 0.35) 30%,
        rgba(245, 225, 164, 0.85) 75%,
        rgba(212, 175, 55, 1) 100%);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.45);
    animation: hero-tail-glow 4s ease-in-out infinite;
}

.hero-tail-gem {
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, #F8E9B6 0%, #D4AF37 60%, #9A7A14 100%);
    transform: rotate(45deg);
    box-shadow:
        0 0 8px rgba(212, 175, 55, 0.7),
        0 0 18px rgba(212, 175, 55, 0.35);
    animation: hero-tail-pulse 4s ease-in-out infinite;
}

@keyframes hero-tail-glow {
    0%, 100% { opacity: 0.7; }
    50%      { opacity: 1; }
}

@keyframes hero-tail-pulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.7), 0 0 18px rgba(212, 175, 55, 0.35);
    }
    50% {
        transform: rotate(45deg) scale(1.15);
        box-shadow: 0 0 12px rgba(212, 175, 55, 0.9), 0 0 26px rgba(212, 175, 55, 0.55);
    }
}

.hero-beams {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    filter: blur(22px);
    opacity: 0.9;
    will-change: transform;
    transform: translateZ(0);
}

/* Mobile: softer blur + tighter tail so animation reads better on small screens */
@media (max-width: 768px) {
    .hero-beams { filter: blur(14px); opacity: 0.8; }
    .hero::after { height: 180px; }
    .hero-tail { bottom: 20px; gap: 8px; }
    .hero-tail-line { height: 54px; }
    .hero-tail-gem { width: 6px; height: 6px; }
}

.hero-beams + .hero-rings,
.hero-beams ~ .hero-content {
    position: relative;
    z-index: 2;
}

.hero-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: grid;
    place-items: center;
}

.hero-ring {
    position: absolute;
    border: 1px solid var(--hairline);
    border-radius: 50%;
}

.hero-ring.r1 { width: 400px; height: 400px; animation: spin-slow 60s linear infinite; }
.hero-ring.r2 { width: 580px; height: 580px; border-style: dashed; animation: spin-slow 80s linear infinite reverse; opacity: 0.5; }
.hero-ring.r3 { width: 760px; height: 760px; opacity: 0.3; animation: spin-slow 120s linear infinite; }

@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-content {
    text-align: center;
    max-width: 920px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid var(--hairline);
    border-radius: 100px;
    margin-bottom: 32px;
    background: rgba(6, 14, 44, 0.5);
    backdrop-filter: blur(8px);
    animation: fade-up 1s 0.1s both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 10px var(--gold-400);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}

.hero-badge span {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-200);
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 28px;
    animation: fade-up 1s 0.2s both;
}

.hero h1 em {
    font-style: italic;
    color: #FFF7D6;
    -webkit-text-fill-color: #FFF7D6;
    text-shadow:
        0 0 3px rgba(255, 250, 230, 0.95),
        0 0 8px rgba(255, 247, 214, 0.85),
        0 0 18px rgba(229, 198, 116, 0.65),
        0 0 32px rgba(212, 175, 55, 0.5),
        0 0 58px rgba(212, 175, 55, 0.3);
    animation: neon-pulse 3.4s ease-in-out infinite;
    will-change: text-shadow;
}

@keyframes neon-pulse {
    0%, 100% {
        text-shadow:
            0 0 3px rgba(255, 250, 230, 0.95),
            0 0 8px rgba(255, 247, 214, 0.85),
            0 0 18px rgba(229, 198, 116, 0.65),
            0 0 32px rgba(212, 175, 55, 0.5),
            0 0 58px rgba(212, 175, 55, 0.3);
    }
    50% {
        text-shadow:
            0 0 4px rgba(255, 252, 240, 1),
            0 0 12px rgba(255, 250, 220, 0.95),
            0 0 26px rgba(255, 240, 180, 0.8),
            0 0 44px rgba(229, 198, 116, 0.6),
            0 0 80px rgba(212, 175, 55, 0.4);
    }
}

.hero-desc {
    font-size: 1.12rem;
    color: rgba(250, 246, 238, 0.7);
    max-width: 580px;
    margin: 0 auto 44px;
    animation: fade-up 1s 0.3s both;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fade-up 1s 0.4s both;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(250, 246, 238, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    animation: bounce-y 2.4s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-400), transparent);
}

@keyframes bounce-y {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero logo card */
.hero-logo {
    width: clamp(280px, 42vw, 460px);
    margin: 0 auto 44px;
    padding: 18px 30px 24px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.18), transparent 60%),
        linear-gradient(140deg, var(--navy-700) 0%, var(--navy-900) 100%);
    border: 1px solid var(--hairline);
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.18),
        0 30px 80px rgba(0, 0, 0, 0.4),
        inset 0 0 40px rgba(212, 175, 55, 0.05);
    position: relative;
    animation: fade-up 1s both, float-soft 6s ease-in-out infinite 1s;
}

.hero-logo::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    background: linear-gradient(135deg, transparent 30%, rgba(212, 175, 55, 0.4) 50%, transparent 70%);
    opacity: 0;
    animation: edge-glow 4s ease-in-out infinite;
    z-index: -1;
}

.hero-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.25));
}

@keyframes edge-glow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Legacy medallion (kept for compat / about page) */
.hero-medallion {
    width: clamp(150px, 22vw, 220px);
    height: clamp(150px, 22vw, 220px);
    margin: 0 auto 40px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.2), transparent 60%),
        linear-gradient(135deg, var(--navy-700), var(--navy-900));
    display: grid;
    place-items: center;
    position: relative;
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.2),
        inset 0 2px 30px rgba(212, 175, 55, 0.1);
    border: 1px solid var(--hairline);
    animation: fade-up 1s both;
}

.hero-medallion::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed var(--gold-300);
    opacity: 0.4;
    animation: spin-slow 40s linear infinite;
}

.medallion-crown {
    color: var(--gold-300);
    font-size: 1.4rem;
    margin-bottom: 6px;
    opacity: 0.85;
}

.medallion-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--gold-200);
    letter-spacing: 0.08em;
    line-height: 1;
}

.medallion-sub {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 8px;
    text-transform: uppercase;
}

.medallion-line {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    margin: 8px 0;
}

/* ─── CATEGORY GRID (used in home preview & products) ─── */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
}

.cat-card {
    background: linear-gradient(160deg, rgba(28, 43, 122, 0.4), rgba(6, 14, 44, 0.6));
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cat-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-400);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(212, 175, 55, 0.15);
}

.cat-card:hover::before,
.cat-card:hover::after { opacity: 1; }

.cat-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.25), transparent),
        linear-gradient(135deg, var(--navy-700), var(--navy-800));
    display: grid;
    place-items: center;
    border: 1px solid var(--hairline);
    transition: all 0.4s ease;
    color: var(--gold-300);
    margin-bottom: 4px;
}

.cat-card:hover .cat-icon {
    border-color: var(--gold-400);
    transform: scale(1.05);
    color: var(--gold-200);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.cat-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 1.4;
}

.cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gold-100);
    letter-spacing: 0.02em;
}

.cat-card .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
}

/* Category section heading */
.cat-section {
    margin-bottom: 80px;
}

.cat-section-head {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 36px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--hairline);
}

.cat-section-head .eyebrow {
    color: rgba(245, 240, 232, 0.45);
    font-size: 0.65rem;
}

.cat-section-head h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--gold-200);
    font-weight: 500;
}

.cat-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-500), transparent);
    opacity: 0.5;
}

/* ─── ABOUT SPLIT (home & about) ─── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-image {
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%);
    border: 1px solid var(--hairline);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(212, 175, 55, 0.12),
        inset 0 0 0 1px rgba(212, 175, 55, 0.18);
}

.split-image img,
.split-image > svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 14s cubic-bezier(0.22, 1, 0.36, 1);
    filter: brightness(0.95) saturate(1.1) contrast(1.05);
}

.split-image:hover img,
.split-image:hover > svg {
    transform: scale(1.06);
}

.split-image--svg > svg {
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.18));
}

.split-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 30%, rgba(3, 8, 31, 0.5) 80%, rgba(3, 8, 31, 0.85) 100%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}

.split-image::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: calc(var(--radius) - 6px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    pointer-events: none;
    z-index: 3;
}

.split-image-caption {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    z-index: 4;
    color: var(--gold-100);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.split-image-caption::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--gold-400);
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .split-image-caption { font-size: 1.15rem; bottom: 20px; left: 20px; right: 20px; }
}

.split-text .eyebrow { margin-bottom: 14px; display: block; }

.split-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-100);
    margin-bottom: 24px;
    font-weight: 400;
}

.split-text h2 em {
    font-style: italic;
    color: var(--gold-300);
}

.split-text p {
    color: rgba(250, 246, 238, 0.7);
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.75;
}

.split-features {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: rgba(6, 14, 44, 0.4);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--gold-400);
    transform: translateY(-2px);
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    display: grid;
    place-items: center;
    color: var(--gold-300);
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold-200);
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-text span {
    font-size: 0.82rem;
    color: rgba(250, 246, 238, 0.6);
}

/* ─── STATS ─── */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 60px;
}

.stat {
    background: linear-gradient(160deg, rgba(28, 43, 122, 0.3), rgba(6, 14, 44, 0.5));
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat:hover { background: rgba(212, 175, 55, 0.06); }

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--gold-300);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    color: rgba(250, 246, 238, 0.55);
    text-transform: uppercase;
    margin-top: 12px;
}

/* ─── CTA BAND ─── */
.cta-band {
    padding: 100px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(28, 43, 122, 0.5), rgba(6, 14, 44, 0.7));
    border: 1px solid var(--hairline);
    border-radius: var(--radius-lg);
    padding: 68px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.12), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(28, 43, 122, 0.4), transparent 60%);
    pointer-events: none;
}

.cta-inner > * { position: relative; }

.cta-inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--gold-100);
    margin: 18px 0 14px;
    font-weight: 400;
}

.cta-inner h2 em {
    color: var(--gold-300);
    font-style: italic;
}

.cta-inner p {
    color: rgba(250, 246, 238, 0.7);
    margin-bottom: 36px;
    font-size: 1rem;
}

/* ─── FOOTER ─── */
.footer {
    padding: 80px 28px 32px;
    border-top: 1px solid var(--hairline);
    background: rgba(3, 8, 31, 0.7);
    position: relative;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 22px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-col p,
.footer-col li {
    color: rgba(250, 246, 238, 0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
    list-style: none;
    line-height: 1.7;
}

.footer-col a:hover { color: var(--gold-300); }

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-brand-block .brand { margin-bottom: 8px; }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid var(--hairline);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(250, 246, 238, 0.45);
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--hairline);
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
    color: var(--gold-300);
}

.socials a:hover {
    border-color: var(--gold-400);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.socials svg { width: 16px; height: 16px; }

/* ─── WHATSAPP FAB ─── */
.fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: grid;
    place-items: center;
    color: white;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: fab-in 0.6s 1s both;
}

.fab:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.fab::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: ring 2.4s infinite;
}

@keyframes ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes fab-in {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

.fab svg { width: 26px; height: 26px; fill: white; }

/* ─── PAGE HEADER (subpages) ─── */
.page-header {
    padding: 180px 28px 80px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--hairline);
}

.page-header .eyebrow { margin-bottom: 18px; display: inline-block; }

.page-header h1 {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    color: var(--cream);
    font-weight: 400;
    margin-bottom: 18px;
}

.page-header h1 em {
    font-style: italic;
    color: var(--gold-300);
}

.page-header p {
    color: rgba(250, 246, 238, 0.65);
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    background: linear-gradient(160deg, rgba(28, 43, 122, 0.35), rgba(6, 14, 44, 0.5));
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 36px;
    backdrop-filter: blur(8px);
}

.contact-card h3 {
    font-size: 1.6rem;
    color: var(--gold-200);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-card > p {
    color: rgba(250, 246, 238, 0.65);
    margin-bottom: 28px;
    font-size: 0.92rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: rgba(3, 8, 31, 0.5);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

a.contact-item:hover {
    border-color: var(--gold-400);
    transform: translateX(4px);
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    display: grid;
    place-items: center;
    color: var(--gold-300);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.6;
}

.contact-item-text strong {
    display: block;
    color: var(--gold-200);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item-text span {
    color: rgba(250, 246, 238, 0.6);
    font-size: 0.88rem;
}

.map-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--hairline);
    background: var(--navy-800);
    height: 100%;
    min-height: 480px;
    box-shadow: var(--shadow-lift);
}

.map-frame {
    position: relative;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    filter: grayscale(0.5) brightness(0.92) contrast(1.05);
    transition: filter 0.4s ease;
}

.map-frame:hover iframe {
    filter: grayscale(0.2) brightness(1) contrast(1.05);
}

.map-link {
    position: absolute;
    bottom: 18px;
    right: 18px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(6, 14, 44, 0.92);
    border: 1px solid var(--gold-400);
    border-radius: 100px;
    color: var(--gold-200);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.map-link:hover {
    background: var(--gold-400);
    color: var(--navy-900);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.map-link svg {
    width: 14px;
    height: 14px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .split { grid-template-columns: 1fr; gap: 50px; }
    .split-image { aspect-ratio: 16/10; max-width: 600px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .section { padding: 90px 24px; }
    .hero-ring.r3 { display: none; }
}

@media (max-width: 900px) {
    .nav-links { display: none !important; }
    .hamburger { display: flex !important; z-index: 1002; position: relative; }
    .mobile-menu { display: flex !important; }
}

@media (max-width: 768px) {
    .nav { padding: 10px 16px; }
    .nav.scrolled { padding: 8px 16px; }
    .nav-inner { gap: 12px; }

    /* Tight spacing on mobile */
    .section { padding: 44px 18px !important; }
    .page-header { padding: 110px 20px 36px; }
    .hero { padding: 90px 18px 50px; }
    .cat-section { margin-bottom: 36px; }
    .section-head { margin-bottom: 28px; }
    .cta-band { padding: 50px 18px; }
    .cta-inner { padding: 32px 20px; }
    .ornament-divider { padding: 4px 18px 2px; }
    .stats { margin-top: 24px; }
    .filter-bar { margin-bottom: 22px; }

    .brand { gap: 10px; }
    .brand-name { font-size: 1rem; letter-spacing: 0.05em; }
    .brand-sub { font-size: 0.52rem; letter-spacing: 0.3em; }
    .brand-mark { width: 36px; height: 36px; font-size: 1rem; }

    .section { padding: 60px 18px; }
    .page-header { padding: 120px 20px 50px; }
    .footer { padding: 56px 20px 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cat-card { padding: 20px 14px; gap: 10px; }
    .cat-name { font-size: 1rem; }
    .cat-icon { width: 52px; height: 52px; }
    .cat-icon svg { width: 24px; height: 24px; }
    .cat-card p { font-size: 0.78rem !important; }

    .split-features { grid-template-columns: 1fr; gap: 12px; }
    .feature { padding: 14px 16px; }
    .cat-section { margin-bottom: 56px; }
    .cat-section-head { flex-wrap: wrap; gap: 10px; padding-bottom: 14px; margin-bottom: 26px; }
    .cat-section-head h3 { font-size: 1.5rem; }
    .cat-section-line { display: none; }
    .cta-inner { padding: 44px 22px; }
    .cta-band { padding: 70px 18px; }
    .contact-card { padding: 24px 20px; }

    .hero { padding: 100px 18px 80px; min-height: auto; }
    .hero h1 { margin-bottom: 22px; }
    .hero-desc { font-size: 1rem; margin-bottom: 32px; padding: 0 8px; }
    .hero-medallion { margin-bottom: 28px; }
    .hero-ring.r1 { width: 360px; height: 360px; }
    .hero-ring.r2 { width: 460px; height: 460px; }
    .hero-scroll { display: none; }
    .hero-badge span { font-size: 0.62rem; letter-spacing: 0.2em; }

    .fab { bottom: 20px; right: 20px; width: 54px; height: 54px; }
    .fab svg { width: 24px; height: 24px; }

    .stats { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
    .stat { padding: 26px 18px; }

    .filter-bar { gap: 6px; margin-bottom: 36px; }
    .filter-pill { padding: 8px 14px; font-size: 0.72rem; }
    .note-banner { font-size: 0.78rem; padding: 14px 18px; margin-bottom: 36px; }

    .section-head { margin-bottom: 48px; }
    .section-head h2 { font-size: 2rem; }
    .section-head p { font-size: 0.95rem; }

    .map-frame, .map-frame iframe { min-height: 320px; }
    .contact-grid { gap: 32px; }

    .btn { padding: 14px 26px; font-size: 0.78rem; letter-spacing: 0.12em; }
    .nav-cta { padding: 8px 18px !important; }

    .mobile-menu a { font-size: 1.6rem; padding: 6px 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cat-grid { grid-template-columns: 1fr; gap: 14px; }
    .cat-card { padding: 24px 20px; max-width: 360px; margin: 0 auto; width: 100%; }
    .stats { grid-template-columns: 1fr; }
    .hero-ring.r1 { width: 300px; height: 300px; }
    .hero-ring.r2 { width: 380px; height: 380px; }
    .page-header h1 { font-size: 2.2rem; }
    .page-header p { font-size: 0.95rem; }
    .section-head h2 { font-size: 1.8rem; }
    .split-image { aspect-ratio: 1/1; }
    .split-image-inner h3 { font-size: 1.8rem; }
    .footer-col h4 { font-size: 0.68rem; }
    .feature-text strong { font-size: 1rem; }
    .product-name { font-size: 1rem; }
    .product-tag { font-size: 0.55rem; padding: 3px 9px; }
    .product-info { padding: 14px 12px 14px; }
    .cta-inner h2 { font-size: 1.6rem; }
    .cta-inner p { font-size: 0.9rem; margin-bottom: 26px; }
}

/* Very small devices like iPhone SE */
@media (max-width: 360px) {
    .nav { padding: 12px 14px; }
    .brand-text { display: none; }
    .section { padding: 50px 14px; }
    .hero { padding: 90px 14px 60px; }
    .hero h1 { font-size: 1.85rem; }
    .hero-medallion { width: 130px; height: 130px; }
    .medallion-name { font-size: 1.3rem; }
    .footer { padding: 48px 14px 24px; }
    .filter-pill { padding: 7px 12px; font-size: 0.68rem; }
}

/* Landscape orientation tweaks */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 100px 24px 60px; }
    .hero-medallion { width: 120px; height: 120px; }
    .hero-ring.r1, .hero-ring.r2, .hero-ring.r3 { display: none; }
    .mobile-menu { gap: 8px; }
    .mobile-menu a { font-size: 1.2rem; padding: 4px 24px; }
}

/* High DPI / Retina image quality */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-img-wrap img { image-rendering: -webkit-optimize-contrast; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ─── ORNAMENT DIVIDER (between hero and next section) ─── */
.ornament-divider {
    position: relative;
    margin: 0 auto;
    padding: 20px 28px 12px;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.ornament-divider svg {
    width: 100%;
    max-width: 720px;
    height: auto;
    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.35));
    animation: ornament-breathe 6s ease-in-out infinite;
}

@keyframes ornament-breathe {
    0%, 100% {
        filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.55));
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .ornament-divider {
        padding: 12px 18px 8px;
    }
    .ornament-divider svg {
        max-width: 360px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ornament-divider svg { animation: none; }
}

/* ─── FEATURED CATEGORY GRID (homepage) ─── */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.featured-card {
    position: relative;
    display: block;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
    border: 1px solid var(--hairline);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.4s ease;
    will-change: transform;
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-400);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.25);
}

.featured-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    filter: brightness(1.05) saturate(1.15) contrast(1.05);
}

.featured-card:hover .featured-img img {
    transform: scale(1.08);
    filter: brightness(1.15) saturate(1.2) contrast(1.05);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg,
            transparent 0%,
            transparent 40%,
            rgba(3, 8, 31, 0.65) 75%,
            rgba(3, 8, 31, 0.92) 100%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.featured-card::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: calc(var(--radius) - 6px);
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.4s ease, inset 0.4s ease;
}

.featured-card:hover::before {
    border-color: rgba(212, 175, 55, 0.55);
}

.featured-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.featured-meta .eyebrow {
    color: var(--gold-300);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    opacity: 0.95;
}

.featured-meta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-100);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0;
}

.featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 100px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-200);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s ease 0.1s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
                background 0.3s ease, border-color 0.3s ease;
}

.featured-card:hover .featured-cta {
    opacity: 1;
    transform: translateY(0);
}

.featured-cta:hover {
    background: var(--gold-400);
    color: var(--navy-900);
    border-color: var(--gold-400);
}

/* Tag badge top-left */
.featured-card::after {
    content: '✦';
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(3, 8, 31, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--hairline);
    display: grid;
    place-items: center;
    color: var(--gold-300);
    font-size: 0.85rem;
    transition: all 0.4s ease;
}

.featured-card:hover::after {
    background: var(--gold-400);
    color: var(--navy-900);
    border-color: var(--gold-400);
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 600px) {
    .featured-grid { grid-template-columns: 1fr; gap: 14px; max-width: 420px; margin: 0 auto; }
    .featured-card { aspect-ratio: 16/12; }
    .featured-meta h3 { font-size: 1.4rem; }
}

/* ─── PRODUCT GRID (urunler.html) ─── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy-700), var(--navy-900));
    border: 1px solid var(--hairline);
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: all 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-400);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.product-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.18), transparent 60%),
        linear-gradient(160deg, var(--navy-700) 0%, var(--navy-900) 100%);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    filter: brightness(0.92) saturate(1.05);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.07);
    filter: brightness(1) saturate(1.1);
}

/* ─── INLINE PRODUCT ILLUSTRATIONS (no network dependency) ─── */
.product-illustration {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.22), transparent 60%),
        linear-gradient(160deg, var(--navy-700) 0%, var(--navy-900) 100%);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-illustration::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    pointer-events: none;
    z-index: 1;
}

.product-illustration::after {
    content: '';
    position: absolute;
    top: 22px;
    left: 50%;
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    transform: translateX(-50%);
    z-index: 2;
}

.product-illustration svg {
    width: 60%;
    height: 60%;
    max-width: 200px;
    max-height: 200px;
    z-index: 2;
    filter: drop-shadow(0 6px 18px rgba(212, 175, 55, 0.4));
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-illustration svg {
    transform: scale(1.06) rotate(-2deg);
}

.product-card:hover .product-illustration {
    transform: scale(1.02);
}

.product-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(3, 8, 31, 0.95) 0%,
        rgba(3, 8, 31, 0.5) 35%,
        rgba(3, 8, 31, 0.1) 60%,
        transparent 100%
    );
    pointer-events: none;
}

.product-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(180deg, transparent 70%, rgba(212, 175, 55, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover .product-img-wrap::after {
    opacity: 1;
}

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    padding: 4px 12px;
    background: rgba(3, 8, 31, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--hairline);
    border-radius: 100px;
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-300);
    font-weight: 500;
}

.product-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    padding: 22px 22px 24px;
    text-align: center;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold-100);
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.product-line {
    width: 28px;
    height: 1px;
    background: var(--gold-400);
    margin: 0 auto;
    transition: width 0.4s ease;
}

.product-card:hover .product-line {
    width: 50px;
}

.product-arrow {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(3, 8, 31, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--hairline);
    display: grid;
    place-items: center;
    color: var(--gold-300);
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: all 0.4s ease;
}

.product-card:hover .product-arrow {
    opacity: 1;
    transform: translate(0, 0);
    border-color: var(--gold-400);
}

.product-arrow svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

/* Filter pills */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-pill {
    padding: 9px 18px;
    border-radius: 100px;
    border: 1px solid var(--hairline);
    background: rgba(6, 14, 44, 0.4);
    color: rgba(250, 246, 238, 0.7);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.filter-pill:hover,
.filter-pill.active {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold-400);
    color: var(--gold-200);
}

/* Note banner */
.note-banner {
    max-width: 720px;
    margin: 0 auto 50px;
    padding: 16px 24px;
    background: linear-gradient(160deg, rgba(212, 175, 55, 0.06), rgba(28, 43, 122, 0.2));
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    text-align: center;
    color: rgba(250, 246, 238, 0.7);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.note-banner strong {
    color: var(--gold-300);
    font-weight: 600;
}

@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-name { font-size: 1.05rem; }
    .product-info { padding: 16px 14px 18px; }
    .product-tag { font-size: 0.55rem; padding: 3px 10px; }
}

@media (max-width: 420px) {
    .product-grid { grid-template-columns: 1fr; }
}

/* ─── REVEAL ANIMATIONS — light & fast ─── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── PREMIUM SPLIT-WORD HEADINGS ─── */
.split-words .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.22em;
}

.split-words .word > span {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition:
        transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.9s ease-out;
}

.split-words.visible .word > span {
    transform: translateY(0);
    opacity: 1;
}

.split-words.visible .word:nth-child(1) > span { transition-delay: 0.05s; }
.split-words.visible .word:nth-child(2) > span { transition-delay: 0.15s; }
.split-words.visible .word:nth-child(3) > span { transition-delay: 0.25s; }
.split-words.visible .word:nth-child(4) > span { transition-delay: 0.35s; }
.split-words.visible .word:nth-child(5) > span { transition-delay: 0.45s; }
.split-words.visible .word:nth-child(6) > span { transition-delay: 0.55s; }
.split-words.visible .word:nth-child(7) > span { transition-delay: 0.65s; }
.split-words.visible .word:nth-child(8) > span { transition-delay: 0.75s; }
.split-words.visible .word:nth-child(9) > span { transition-delay: 0.85s; }
.split-words.visible .word:nth-child(10) > span { transition-delay: 0.95s; }

/* ─── PARAGRAPH FADE-UP (under headings) ─── */
.split-text p,
.section-head p,
.cta-inner p,
.page-header p,
.contact-card > p {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 1s ease 0.4s, transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}

.reveal.visible .split-text p,
.split-text.visible p,
.section-head.visible p,
.reveal.visible .cta-inner p,
.cta-inner.visible p,
.page-header.visible p,
.contact-card.visible > p {
    opacity: 1;
    transform: translateY(0);
}

.reveal.visible .split-text p:nth-of-type(2),
.split-text.visible p:nth-of-type(2) { transition-delay: 0.55s; }
.reveal.visible .split-text p:nth-of-type(3),
.split-text.visible p:nth-of-type(3) { transition-delay: 0.7s; }

/* ─── BUTTON SLIDE-IN under text ─── */
.hero-actions .btn,
.cta-inner .btn,
.page-header .btn,
.split-text .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease 0.7s, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s;
}

.hero-actions .btn { animation: none; }
.hero .hero-actions .btn { opacity: 0; transform: translateY(20px); }
.hero .hero-actions { animation: hero-btns 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards; }
@keyframes hero-btns {
    to { opacity: 1; }
}
.hero .hero-actions .btn:nth-child(1) { animation: btn-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.3s forwards; }
.hero .hero-actions .btn:nth-child(2) { animation: btn-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.45s forwards; }
@keyframes btn-in {
    to { opacity: 1; transform: translateY(0); }
}

.reveal.visible .split-text .btn,
.cta-inner.visible .btn,
.page-header.visible .btn { opacity: 1; transform: translateY(0); }

/* ─── CARD HOVER LIFT (premium feel) ─── */
.feature, .contact-item {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

/* ─── HERO BADGE ENTRY ─── */
.hero-badge {
    animation: hero-badge-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}
@keyframes hero-badge-in {
    from { opacity: 0; transform: translateY(-12px) scale(0.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── HERO DESC FADE ─── */
.hero-desc {
    animation: fade-desc 1s ease 1.05s both;
}
@keyframes fade-desc {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── PAGE ENTRY (opacity only — no transform, prevents iOS Safari fixed-positioning bugs) ─── */
@keyframes page-enter {
    from { opacity: 0; }
    to { opacity: 1; }
}
body.page-enter {
    animation: page-enter 0.4s ease both;
}

/* ─── EYEBROW WIPE-IN ─── */
.eyebrow {
    position: relative;
    display: inline-block;
}

.reveal .eyebrow,
.section-head .eyebrow {
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.reveal.visible .eyebrow,
.section-head.visible .eyebrow {
    opacity: 1;
    transform: translateY(0);
}

/* ─── DIVIDER LINE GROW ─── */
.divider::before,
.divider::after {
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.reveal.visible .divider::before,
.reveal.visible .divider::after,
.section-head.visible .divider::before,
.section-head.visible .divider::after {
    transform: scaleX(1);
}

/* ─── BUTTON LIFT ON HOVER ─── */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    background-size: 150% 150%;
    transition:
        background-position 0.5s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.btn-gold:hover {
    background-position: 100% 100%;
}

/* ─── FEATURE CARD STAGGERED ENTRY ─── */
.split-features .feature {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible .split-features .feature:nth-child(1) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal.visible .split-features .feature:nth-child(2) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.reveal.visible .split-features .feature:nth-child(3) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.reveal.visible .split-features .feature:nth-child(4) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }

/* ─── SHIMMER LINE ON HEADINGS HOVER ─── */
.section-head h2,
.split-text h2 {
    position: relative;
    display: inline-block;
}

.section-head h2::after,
.split-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.section-head h2 {
    width: 100%;
    text-align: center;
}

.section-head h2::after {
    bottom: -14px;
}

.section-head.visible h2::after,
.reveal.visible .split-text h2::after,
.split-text.visible h2::after {
    transform: translateX(-50%) scaleX(1);
}

/* Reveal directional variants */
.reveal-left { transform: translateX(-40px); }
.reveal-left.visible { transform: translateX(0); }
.reveal-right { transform: translateX(40px); }
.reveal-right.visible { transform: translateX(0); }
.reveal-scale { transform: scale(0.92); opacity: 0; }
.reveal-scale.visible { transform: scale(1); opacity: 1; }

/* ─── PREMIUM TEXT REVEAL (mask) ─── */
.text-reveal {
    overflow: hidden;
    display: inline-block;
}
.text-reveal > span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.text-reveal.visible > span { transform: translateY(0); }

/* ─── 3D CARD TILT (subtle) ─── */
.tilt {
    transform-style: preserve-3d;
    transform: perspective(800px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── GOLD CURSOR FOLLOWER ─── */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.13) 0%, transparent 60%);
    pointer-events: none;
    z-index: 998;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    mix-blend-mode: screen;
    will-change: transform;
}
@media (max-width: 1024px) { .cursor-glow { display: none; } }

/* ─── BUTTON ─── */
.btn { position: relative; }

/* ─── GOLD HIGHLIGHT (em tags in headings) ─── */
.section-head h2 em,
.split-text h2 em,
.cta-inner h2 em,
.page-header h1 em,
h2 em, h3 em {
    color: var(--gold-300);
    font-style: italic;
    font-weight: 500;
    text-shadow: 0 0 24px rgba(212, 175, 55, 0.25);
}

/* ─── CAT CARD ENHANCED HOVER ─── */
.cat-card { will-change: transform; transform: translateZ(0); }
.cat-card .cat-icon { transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.cat-card:hover .cat-icon { transform: scale(1.08) rotate(-3deg); }

/* ─── PRODUCT CARD ENHANCED ─── */
.product-card { will-change: transform; }
.product-card .product-img-wrap img { will-change: transform; }

/* ─── MARQUEE STRIP (premium accent) ─── */
.marquee {
    overflow: hidden;
    padding: 22px 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.04), transparent);
    position: relative;
}
.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marquee 38s linear infinite;
}
.marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold-300);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 60px;
    white-space: nowrap;
    opacity: 0.85;
}
.marquee-item::after {
    content: '✦';
    color: var(--gold-400);
    font-size: 0.9rem;
    opacity: 0.6;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-200), var(--gold-400));
    z-index: 1001;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    transition: width 0.05s linear;
}

/* ─── PERFORMANCE: composite layers ─── */
.bg-particles, .bg-canvas, .bg-pattern,
.hero-medallion, .hero-logo,
.fab, .nav, .product-img-wrap img {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ════════════════════════════════════════════
   CHAT WIDGET — Hasburak AI Asistanı
   Bottom-right, directly above the WhatsApp FAB
   ════════════════════════════════════════════ */

.chat-toggle {
    position: fixed;
    right: 28px;
    bottom: 96px; /* FAB bottom(28) + FAB height(56) + gap(12) */
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    background:
        radial-gradient(circle at 30% 30%, rgba(212,175,55,0.25), transparent 60%),
        linear-gradient(135deg, #0E1A4A 0%, #060E2C 100%);
    color: #F5E1A4;
    cursor: pointer;
    z-index: 998;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.45), 0 0 0 0 rgba(212,175,55,0.4);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    animation: chat-toggle-pulse 3.2s ease-in-out infinite;
    padding: 0;
}

.chat-toggle:hover { transform: scale(1.08); }

.chat-toggle svg {
    width: 26px;
    height: 26px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    position: absolute;
}
.chat-toggle .chat-icon-open { opacity: 0; transform: rotate(-90deg) scale(0.8); }
.chat-toggle.open .chat-icon-closed { opacity: 0; transform: rotate(90deg) scale(0.8); }
.chat-toggle.open .chat-icon-open { opacity: 1; transform: rotate(0deg) scale(1); }

.chat-toggle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    animation: chat-toggle-ring 2.8s ease-in-out infinite;
    pointer-events: none;
}

.chat-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #F8E9B6, #D4AF37);
    color: #060E2C;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 2px 6px;
    border-radius: 8px;
    border: 1.5px solid #060E2C;
    line-height: 1;
    z-index: 2;
}

@keyframes chat-toggle-pulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(0,0,0,0.45), 0 0 0 0 rgba(212,175,55,0.0); }
    50%      { box-shadow: 0 8px 28px rgba(0,0,0,0.45), 0 0 0 10px rgba(212,175,55,0.10); }
}

@keyframes chat-toggle-ring {
    0%   { transform: scale(1);   opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Panel */
.chat-panel {
    position: fixed;
    right: 28px;
    bottom: 164px; /* toggle bottom(96) + toggle height(56) + gap(12) */
    width: 370px;
    max-width: calc(100vw - 32px);
    height: 540px;
    max-height: calc(100vh - 200px);
    background: linear-gradient(180deg, #0B1640 0%, #060E2C 100%);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(212,175,55,0.1);
    z-index: 997;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px) scale(0.95);
    transform-origin: bottom right;
    transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}
.chat-panel.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

/* Header */
.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.02));
    flex-shrink: 0;
}
.chat-header-inner { display: flex; align-items: center; gap: 12px; min-width: 0; }
.chat-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F8E9B6, #D4AF37 60%, #9A7A14);
    color: #060E2C;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(212,175,55,0.35);
}
.chat-header-avatar svg { width: 20px; height: 20px; }
.chat-header-text { min-width: 0; }
.chat-header-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    color: #FAF6EE;
    line-height: 1.1;
}
.chat-header-status {
    font-size: 0.72rem;
    color: rgba(250,246,238,0.55);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
}
.chat-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 6px #4ADE80;
    animation: chat-status-blink 2.2s ease-in-out infinite;
}
@keyframes chat-status-blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}
.chat-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: rgba(250,246,238,0.5);
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: background 0.15s ease, color 0.15s ease;
    padding: 0;
    flex-shrink: 0;
}
.chat-close:hover { background: rgba(250,246,238,0.08); color: #FAF6EE; }
.chat-close svg { width: 18px; height: 18px; }

/* Messages scroll area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,0.3) transparent;
    -webkit-overflow-scrolling: touch;
}
.chat-messages::-webkit-scrollbar { width: 5px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(212,175,55,0.3);
    border-radius: 3px;
}

.chat-msg {
    display: flex;
    max-width: 88%;
    animation: chat-msg-in 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes chat-msg-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.chat-msg--bot  { align-self: flex-start; }
.chat-msg--user { align-self: flex-end; }

.chat-msg-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.chat-msg--bot .chat-msg-bubble {
    background: rgba(250,246,238,0.06);
    color: #FAF6EE;
    border: 1px solid rgba(250,246,238,0.09);
    border-top-left-radius: 4px;
}
.chat-msg--user .chat-msg-bubble {
    background: linear-gradient(135deg, #D4AF37, #9A7A14);
    color: #0A1442;
    border-top-right-radius: 4px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(212,175,55,0.2);
}

.chat-msg--typing .chat-msg-bubble {
    padding: 14px 16px;
    display: flex;
    gap: 5px;
    align-items: center;
}
.chat-msg--typing .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(250,246,238,0.55);
    animation: chat-typing 1.4s infinite;
}
.chat-msg--typing .dot:nth-child(2) { animation-delay: 0.18s; }
.chat-msg--typing .dot:nth-child(3) { animation-delay: 0.36s; }
@keyframes chat-typing {
    0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
    30%           { opacity: 1;   transform: translateY(-3px); }
}

/* Quick suggestion chips */
.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
    padding-top: 4px;
}
.chat-suggestion {
    background: rgba(212,175,55,0.10);
    border: 1px solid rgba(212,175,55,0.32);
    color: #F5E1A4;
    padding: 7px 13px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.78rem;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.chat-suggestion:hover {
    background: rgba(212,175,55,0.20);
    border-color: rgba(212,175,55,0.6);
    transform: translateY(-1px);
}

/* Input row */
.chat-input-row {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid rgba(212,175,55,0.15);
    background: rgba(0,0,0,0.22);
    flex-shrink: 0;
}
.chat-input {
    flex: 1;
    min-width: 0;
    background: rgba(250,246,238,0.07);
    border: 1px solid rgba(250,246,238,0.13);
    color: #FAF6EE;
    padding: 10px 16px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease, background 0.15s ease;
    -webkit-appearance: none;
    appearance: none;
}
.chat-input:focus {
    border-color: rgba(212,175,55,0.55);
    background: rgba(250,246,238,0.10);
}
.chat-input::placeholder { color: rgba(250,246,238,0.38); }

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #F8E9B6, #D4AF37);
    color: #060E2C;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform 0.12s ease, box-shadow 0.15s ease;
    flex-shrink: 0;
    padding: 0;
    box-shadow: 0 3px 10px rgba(212,175,55,0.25);
}
.chat-send:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 14px rgba(212,175,55,0.4);
}
.chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.chat-send svg { width: 16px; height: 16px; }

.chat-footer {
    padding: 8px 18px 10px;
    font-size: 0.68rem;
    color: rgba(250,246,238,0.4);
    text-align: center;
    border-top: 1px solid rgba(212,175,55,0.08);
    flex-shrink: 0;
}
.chat-footer a {
    color: #D4AF37;
    text-decoration: none;
}
.chat-footer a:hover { color: #F5E1A4; }

/* Mobile */
@media (max-width: 640px) {
    .chat-toggle {
        width: 54px;
        height: 54px;
        right: 20px;
        bottom: 86px;
    }
    .chat-toggle svg { width: 24px; height: 24px; }

    .chat-panel {
        right: 12px;
        left: 12px;
        bottom: 150px;
        width: auto;
        max-width: none;
        height: calc(100vh - 190px);
        max-height: 580px;
        border-radius: 18px;
    }
    .chat-msg { max-width: 92%; }
    .chat-msg-bubble { font-size: 0.85rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .chat-toggle { animation: none; }
    .chat-toggle::before { display: none; }
    .chat-status-dot { animation: none; }
    .chat-msg { animation: none; }
}

/* ════════════════════════════════════════════
   PRODUCT LIVE SEARCH (urunler.html)
   ════════════════════════════════════════════ */
.product-search-wrap {
    max-width: 640px;
    margin: 0 auto 28px;
    padding: 0 4px;
}
.product-search {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(250, 246, 238, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 999px;
    padding: 6px 6px 6px 18px;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.product-search:focus-within {
    border-color: rgba(212, 175, 55, 0.65);
    background: rgba(250, 246, 238, 0.08);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.10);
}
.product-search-icon {
    width: 18px;
    height: 18px;
    color: rgba(212, 175, 55, 0.7);
    flex-shrink: 0;
    margin-right: 10px;
}
.product-search-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: #FAF6EE;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 12px 4px;
    -webkit-appearance: none;
    appearance: none;
}
.product-search-input::placeholder {
    color: rgba(250, 246, 238, 0.42);
}
.product-search-input::-webkit-search-cancel-button { display: none; }
.product-search-clear {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(212, 175, 55, 0.15);
    color: #F5E1A4;
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s ease, transform 0.12s ease;
}
.product-search-clear:hover {
    background: rgba(212, 175, 55, 0.30);
    transform: scale(1.06);
}
.product-search-clear svg { width: 14px; height: 14px; }
.product-search-result {
    margin: 12px 0 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(250, 246, 238, 0.55);
    letter-spacing: 0.01em;
}
.product-search-result.is-empty {
    color: #F5E1A4;
}

/* Hide cards/sections that don't match the search query */
.product-card.is-hidden-search,
.cat-section.is-hidden-search { display: none !important; }

/* ════════════════════════════════════════════
   NEDEN BİZ? — Vertical reason list (neden-biz.html)
   ════════════════════════════════════════════ */
.neden-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 50px;
}
.neden-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    align-items: stretch;
    padding: 36px 38px;
    background: linear-gradient(135deg, rgba(20, 28, 70, 0.6), rgba(10, 20, 66, 0.4));
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.neden-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.10), transparent 50%);
    pointer-events: none;
}
.neden-item:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.neden-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;
    padding: 18px 12px;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.18);
}
.neden-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    line-height: 1;
    background: linear-gradient(135deg, #F8E9B6 0%, #D4AF37 50%, #9A7A14 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.neden-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.20), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #F5E1A4;
}
.neden-icon svg { width: 24px; height: 24px; }
.neden-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.neden-body .eyebrow {
    margin-bottom: 4px;
}
.neden-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1.18;
    color: #FAF6EE;
    margin: 0;
    font-weight: 600;
}
.neden-body h2 em {
    font-style: italic;
    background: linear-gradient(135deg, #F8E9B6, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.neden-body p {
    font-size: 0.96rem;
    line-height: 1.75;
    color: rgba(250, 246, 238, 0.78);
    margin: 0;
}
.neden-bullets {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 18px;
}
.neden-bullets li {
    position: relative;
    padding-left: 22px;
    font-size: 0.88rem;
    color: rgba(250, 246, 238, 0.82);
    line-height: 1.5;
}
.neden-bullets li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: #D4AF37;
    font-size: 0.85rem;
}

@media (max-width: 760px) {
    .neden-item {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 26px 22px;
    }
    .neden-aside {
        flex-direction: row;
        justify-content: flex-start;
        gap: 18px;
        padding: 14px 18px;
    }
    .neden-num { font-size: 2.4rem; }
    .neden-icon { width: 48px; height: 48px; }
    .neden-icon svg { width: 20px; height: 20px; }
    .neden-body h2 { font-size: 1.55rem; }
    .neden-bullets { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   MÜŞTERİ YORUMLARI (index.html)
   ════════════════════════════════════════════ */
.reviews-section {
    padding-top: 60px;
    padding-bottom: 30px;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    margin-top: 50px;
}
.review-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px 26px;
    background: linear-gradient(150deg, rgba(20, 28, 70, 0.55), rgba(10, 20, 66, 0.35));
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 18px;
    position: relative;
    transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}
.review-card::before {
    content: "“";
    position: absolute;
    top: 6px;
    right: 22px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(212, 175, 55, 0.18);
    pointer-events: none;
}
.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}
.review-stars {
    display: flex;
    gap: 2px;
    color: #D4AF37;
    font-size: 1rem;
    letter-spacing: 0.05em;
}
.review-stars span {
    text-shadow: 0 1px 2px rgba(212, 175, 55, 0.35);
}
.review-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(250, 246, 238, 0.85);
    font-style: italic;
    margin: 0;
    flex: 1;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #F8E9B6, #D4AF37 60%, #9A7A14);
    color: #060E2C;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}
.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.review-meta strong {
    color: #FAF6EE;
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}
.review-meta span {
    font-size: 0.78rem;
    color: rgba(250, 246, 238, 0.55);
}

@media (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 36px;
    }
    .review-card { padding: 24px 22px; }
    .review-card::before { font-size: 3.5rem; top: 4px; right: 18px; }
}

/* ════════════════════════════════════════════
   MAĞAZA GALERİSİ (biz-kimiz.html)
   ════════════════════════════════════════════ */
.store-gallery {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
}
.store-gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.20);
    background: rgba(10, 20, 66, 0.45);
    position: relative;
    transition: transform 0.3s ease, border-color 0.25s ease, box-shadow 0.3s ease;
}
.store-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, opacity 0.4s ease;
}
.store-gallery-item:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}
.store-gallery-item:hover img {
    transform: scale(1.06);
}
/* First photo spans wide on the gallery grid (2x2) */
.store-gallery-item--big {
    grid-column: span 2;
    grid-row: span 2;
}
/* Wide variant: spans 2 columns, 1 row — used for the bottom row pair */
.store-gallery-item--wide {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .store-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .store-gallery-item--big {
        grid-column: span 2;
        grid-row: span 1;
        grid-auto-rows: 260px;
    }
    .store-gallery-item--wide {
        grid-column: span 2;
    }
}
@media (max-width: 520px) {
    .store-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .store-gallery-item--big,
    .store-gallery-item--wide {
        grid-column: span 1;
    }
}

/* Placeholder shown when a store photo is missing */
.store-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background:
        radial-gradient(circle at 30% 30%, rgba(212,175,55,0.18), transparent 55%),
        linear-gradient(135deg, #1a2358 0%, #0a1442 60%, #060e2c 100%);
    color: rgba(212, 175, 55, 0.6);
    text-align: center;
    padding: 18px;
}
.store-gallery-placeholder svg {
    width: 44px;
    height: 44px;
    opacity: 0.85;
}
.store-gallery-placeholder span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: rgba(250, 246, 238, 0.6);
}
