/* ============================================================
   ELTZAM — إلتزام  |  Golden Islamic Age Gym Brand
   Master Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&family=Noto+Naskh+Arabic:wght@400;500;600;700&family=Aref+Ruqaa:wght@400;700&display=swap');

/* ── CUSTOM PROPERTIES ────────────────────────────────────── */
:root {
    /* Palette */
    --gold-bright: #D4AF37;
    --gold-mid: #B8860B;
    --gold-deep: #8B6914;
    --gold-pale: #F5E6A3;
    --gold-glow: rgba(212, 175, 55, 0.25);
    --black: #000000;
    --deep-black: #050505;
    --surface: #0A0A0A;
    --surface-2: #111111;
    --surface-3: #161616;
    --border: rgba(212, 175, 55, 0.15);
    --border-bright: rgba(212, 175, 55, 0.4);
    --text-primary: #FFFFFF;
    --text-secondary: #C8C8C8;
    --text-muted: #888888;

    /* Typography */
    --font-display: 'Cinzel Decorative', serif;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-arabic: 'Aref Ruqaa', 'DecoType Thuluth Iii', serif;

    /* Spacing */
    --section-pad: 120px 0;
    --container-max: 1280px;

    /* Motion */
    --ease-gold: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: 0.4s var(--ease-gold);
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--deep-black);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
}

/* ── CURSOR ───────────────────────────────────────────────── */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold-bright);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.25s var(--ease-gold), width 0.25s, height 0.25s, border-color 0.25s;
    transform: translate(-50%, -50%);
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold-bright);
}

/* ── ISLAMIC GEOMETRIC SVG OVERLAY ───────────────────────── */
/* Pattern 1: 8-pointed star tile — global bg */
.geometric-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cdefs%3E%3Cpattern id='g1' x='0' y='0' width='140' height='140' patternUnits='userSpaceOnUse'%3E%3Cg stroke='%23D4AF37' stroke-width='0.8' fill='none'%3E%3Cpolygon points='70,6 83,49 126,49 93,75 106,118 70,92 34,118 47,75 14,49 57,49'/%3E%3Cpolygon points='70,24 79,51 108,51 85,67 94,94 70,78 46,94 55,67 32,51 61,51'/%3E%3Cline x1='70' y1='0' x2='70' y2='24'/%3E%3Cline x1='70' y1='94' x2='70' y2='140'/%3E%3Cline x1='0' y1='70' x2='32' y2='70'/%3E%3Cline x1='108' y1='70' x2='140' y2='70'/%3E%3Ccircle cx='70' cy='70' r='4'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23g1)'/%3E%3C/svg%3E");
}

/* Pattern 2: dense arabesque tile for section backgrounds */
.arabesque-bg {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cdefs%3E%3Cpattern id='ar' x='0' y='0' width='80' height='80' patternUnits='userSpaceOnUse'%3E%3Cg stroke='%23B8860B' stroke-width='0.6' fill='none' opacity='0.6'%3E%3Crect x='10' y='10' width='60' height='60' transform='rotate(45 40 40)'/%3E%3Crect x='20' y='20' width='40' height='40' transform='rotate(45 40 40)'/%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3Ccircle cx='40' cy='40' r='28'/%3E%3Cline x1='40' y1='0' x2='40' y2='80'/%3E%3Cline x1='0' y1='40' x2='80' y2='40'/%3E%3Cline x1='0' y1='0' x2='80' y2='80'/%3E%3Cline x1='80' y1='0' x2='0' y2='80'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23ar)'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

/* ── ISLAMIC STAR SPINNER (DECORATIVE) ────────────────────── */
.star-spin {
    display: inline-block;
    animation: spinStar 20s linear infinite;
    color: var(--gold-bright);
    font-size: 14px;
    line-height: 1;
}

@keyframes spinStar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ── ARABESQUE BORDER STRIP ────────────────────────────────── */
.arabesque-border {
    position: relative;
    overflow: hidden;
}

.arabesque-border::before,
.arabesque-border::after {
    content: '';
    display: block;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='18'%3E%3Cpath d='M0 9 Q7.5 0 15 9 Q22.5 18 30 9 Q37.5 0 45 9 Q52.5 18 60 9' stroke='%23D4AF37' stroke-width='1' fill='none' opacity='0.5'/%3E%3Cpath d='M0 9 Q7.5 18 15 9 Q22.5 0 30 9 Q37.5 18 45 9 Q52.5 0 60 9' stroke='%23B8860B' stroke-width='0.6' fill='none' opacity='0.35'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 60px 18px;
    flex-shrink: 0;
}

.arabesque-border::before {
    margin-bottom: 0;
}

.arabesque-border::after {
    margin-top: 0;
}

/* Standalone arabesque strip element */
.arabesque-strip {
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='20'%3E%3Cpath d='M0 10 Q7.5 0 15 10 Q22.5 20 30 10 Q37.5 0 45 10 Q52.5 20 60 10' stroke='%23D4AF37' stroke-width='1' fill='none' opacity='0.45'/%3E%3Cpath d='M0 10 Q7.5 20 15 10 Q22.5 0 30 10 Q37.5 20 45 10 Q52.5 0 60 10' stroke='%23B8860B' stroke-width='0.7' fill='none' opacity='0.3'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 60px 20px;
    width: 100%;
    pointer-events: none;
}

/* ── MASHRABIYA LATTICE OVERLAY ─────────────────────────────── */
.mashrabiya-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cdefs%3E%3Cpattern id='ml' x='0' y='0' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cg stroke='%23D4AF37' stroke-width='1' fill='none'%3E%3Ccircle cx='20' cy='20' r='8'/%3E%3Ccircle cx='0' cy='0' r='8'/%3E%3Ccircle cx='40' cy='0' r='8'/%3E%3Ccircle cx='0' cy='40' r='8'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3Crect x='14' y='14' width='12' height='12' transform='rotate(45 20 20)'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23ml)'/%3E%3C/svg%3E");
}

/* ── ORNAMENTAL KUFIC BAND ──────────────────────────────────── */
.kufic-band {
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-deep));
    padding: 12px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.kufic-band::before,
.kufic-band::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
}

.kufic-band::before {
    left: 0;
    background: linear-gradient(90deg, var(--gold-mid), transparent);
}

.kufic-band::after {
    right: 0;
    background: linear-gradient(270deg, var(--gold-mid), transparent);
}

.kufic-text {
    font-family: var(--font-arabic);
    font-size: 13px;
    letter-spacing: 8px;
    color: var(--black);
    opacity: 0.75;
    white-space: nowrap;
}

/* ── ARCH WINDOW FRAME ──────────────────────────────────────── */
.arch-frame {
    position: relative;
    display: inline-block;
}

.arch-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: none;
    border-radius: 100px 100px 0 0;
    pointer-events: none;
}

/* ── ORNAMENTAL CORNER ACCENTS (4-corner) ──────────────────── */
.ornate-corners {
    position: relative;
}

.ornate-corners::before,
.ornate-corners::after,
.ornate-corners .corner-tl,
.ornate-corners .corner-br {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--gold-bright);
    border-style: solid;
    pointer-events: none;
    opacity: 0.6;
}

.ornate-corners::before {
    top: 8px;
    left: 8px;
    border-width: 1px 0 0 1px;
}

.ornate-corners::after {
    top: 8px;
    right: 8px;
    border-width: 1px 1px 0 0;
}

/* ── GEOMETRIC DIVIDER ──────────────────────────────────────── */
.geo-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 64px auto;
    max-width: 800px;
    padding: 0 40px;
}

.geo-divider-line {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg,
            transparent,
            transparent 4px,
            rgba(212, 175, 55, 0.3) 4px,
            rgba(212, 175, 55, 0.3) 8px);
}

.geo-divider-center {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.geo-star {
    width: 20px;
    height: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    font-size: 18px;
}

/* ── ARABIC WATERMARK TEXT ──────────────────────────────────── */
.arabic-watermark {
    position: absolute;
    font-family: var(--font-arabic);
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 700;
    color: rgba(212, 175, 55, 0.035);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    direction: rtl;
    white-space: nowrap;
    z-index: 0;
}

/* ── GOLD TILE ACCENT BLOCK ─────────────────────────────────── */
.tile-accent {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cdefs%3E%3Cpattern id='tileP' x='0' y='0' width='32' height='32' patternUnits='userSpaceOnUse'%3E%3Cpath d='M16 0 L32 16 L16 32 L0 16 Z' fill='none' stroke='%23D4AF37' stroke-width='0.5' opacity='0.4'/%3E%3Ccircle cx='16' cy='16' r='2' fill='%23D4AF37' opacity='0.25'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23tileP)'/%3E%3C/svg%3E");
    background-size: 32px 32px;
}

/* ── SECTION ORNAMENT HEADER ────────────────────────────────── */
.ornament-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ornament-header-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--gold-mid));
}

.ornament-header-line.right {
    background: linear-gradient(90deg, var(--gold-mid), transparent);
}

.ornament-header-icon {
    font-family: var(--font-arabic);
    font-size: 20px;
    color: var(--gold-bright);
    line-height: 1;
}

/* ── PALACE BORDER (top+bottom double rule) ─────────────────── */
.palace-border {
    border-top: 3px double rgba(212, 175, 55, 0.35);
    border-bottom: 3px double rgba(212, 175, 55, 0.35);
    position: relative;
}

.palace-border::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(212, 175, 55, 0.15);
}

.palace-border::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(212, 175, 55, 0.15);
}

/* ── ARABIC SWORD DECORATIVE ELEMENT ────────────────────────── */
.sword-decor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    opacity: 0.7;
    pointer-events: none;
    user-select: none;
    flex-shrink: 0;
}

.sword-decor svg {
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
    transition: filter var(--transition), transform var(--transition);
}

.sword-decor:hover svg {
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8));
}

/* Crossed swords hero divider */
.crossed-swords-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 80px auto;
    max-width: 700px;
    padding: 0 40px;
}

.crossed-swords-divider .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5));
}

.crossed-swords-divider .divider-line:last-child {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.5), transparent);
}

.crossed-swords-divider .swords-center {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* Scalloped muqarnas arch row */
.muqarnas-row {
    width: 100%;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='28'%3E%3Cpath d='M0 28 L0 14 Q10 0 20 14 Q30 28 40 14 Q50 0 60 14 Q70 28 80 14 L80 28 Z' fill='none' stroke='%23D4AF37' stroke-width='0.8' opacity='0.4'/%3E%3Cpath d='M10 14 Q15 6 20 14' fill='none' stroke='%23B8860B' stroke-width='0.5' opacity='0.3'/%3E%3Cpath d='M30 28 Q35 20 40 28' fill='none' stroke='%23B8860B' stroke-width='0.5' opacity='0.3'/%3E%3Cpath d='M50 14 Q55 6 60 14' fill='none' stroke='%23B8860B' stroke-width='0.5' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 80px 28px;
    background-repeat: repeat-x;
    pointer-events: none;
}

.muqarnas-row.flip {
    transform: scaleY(-1);
}

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-mid);
    border-radius: 2px;
}

/* ── UTILITY ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.gold-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    margin: 0 auto 24px;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 12px;
    display: block;
}

/* ── ARABIC CALLIGRAPHY DECORATIVE DIVIDER ───────────────── */
.divider-ornament {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 48px auto;
    max-width: 600px;
}

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

.divider-ornament::after {
    background: linear-gradient(90deg, var(--gold-mid), transparent);
}

.ornament-symbol {
    font-family: var(--font-arabic);
    color: var(--gold-bright);
    font-size: 22px;
    line-height: 1;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 48px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
    /* Top palace rule */
    border-top: 2px solid rgba(212, 175, 55, 0.5);
    border-bottom: 1px solid transparent;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 175, 55, 0.3) 20%,
            rgba(212, 175, 55, 0.7) 50%,
            rgba(212, 175, 55, 0.3) 80%,
            transparent 100%);
    pointer-events: none;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='20'%3E%3Cpath d='M0 10 Q7.5 0 15 10 Q22.5 20 30 10 Q37.5 0 45 10 Q52.5 20 60 10' stroke='%23D4AF37' stroke-width='0.8' fill='none' opacity='0.3'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 60px 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition);
}

.navbar.scrolled {
    background: rgba(4, 3, 1, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(212, 175, 55, 0.1);
}

.navbar.scrolled::after {
    opacity: 1;
}

/* ── LOGO ────────────────────────────────────────────────── */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

/* Flanking mini-sword accents on the logo */
.nav-logo::before,
.nav-logo::after {
    content: '';
    display: block;
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.4), transparent);
    flex-shrink: 0;
}

.nav-logo img {
    height: 56px;
    width: 56px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    transition: filter var(--transition), transform 0.9s var(--ease-gold);
}

.nav-logo:hover img {
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.9));
    transform: rotate(45deg) scale(1.05);
}

.nav-logo-text {
    font-family: 'Cinzel Decorative', serif;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-bright) 50%, var(--gold-mid) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: none;
}

/* ── NAV LINKS ───────────────────────────────────────────── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

/* Tiny crossed-swords separator between every other link */
.nav-links li+li::before {
    content: '⚔';
    font-size: 8px;
    color: rgba(212, 175, 55, 0.3);
    margin-right: 36px;
    pointer-events: none;
    position: absolute;
    left: -36px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.7);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold-bright);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

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

.nav-links a:hover::before {
    transform: translateX(-50%) scale(1);
}

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

/* ── NAV CTA ─────────────────────────────────────────────── */
.nav-cta {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--black) !important;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-bright), var(--gold-mid));
    padding: 11px 28px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all var(--transition) !important;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-bright));
    opacity: 0;
    transition: opacity var(--transition);
}

.nav-cta:hover {
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.3) !important;
    transform: translateY(-2px) !important;
}

.nav-cta:hover::before {
    opacity: 1 !important;
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

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

/* ── NAV CART BUTTON ─────────────────────────────────────────── */
.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 40px;
    border-radius: 0;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    text-decoration: none;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.2s ease;
    color: var(--gold-bright);
    margin-right: 18px;
    overflow: visible;
}

/* Shimmer sweep — constrained via clip-path */
.nav-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(212, 175, 55, 0.2) 50%, transparent 100%);
    transform: skewX(-15deg);
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: 0;
    clip-path: inset(0 0 0 0);
}

.nav-cart svg {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), filter 0.35s ease;
    filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0));
}

.nav-cart:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.9);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), 0 4px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.nav-cart:hover::before {
    left: 120%;
}

.nav-cart:hover svg {
    transform: scale(1.12) translateY(-1px);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.9));
}

.nav-cart:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3), 0 2px 8px rgba(212, 175, 55, 0.15);
}



.nav-cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-bright), var(--gold-mid));
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 900;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 0 2px var(--deep-black);
    transform: scale(0);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    /* Escape overflow:hidden on parent */
    clip-path: none;
    pointer-events: none;
}


.nav-cart-badge.visible {
    transform: scale(1);
    opacity: 1;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7), 0 0 0 2px var(--deep-black); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0), 0 0 0 2px var(--deep-black); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0), 0 0 0 2px var(--deep-black); }
}



/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 2;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--gold-bright);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: right 0.5s var(--ease-gold);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

.mobile-nav a:hover {
    color: var(--gold-bright);
}

/* ── HERO SECTION ─────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 0%,
            rgba(212, 175, 55, 0.08) 0%,
            transparent 70%),
        radial-gradient(ellipse 60% 60% at 80% 50%,
            rgba(139, 105, 20, 0.06) 0%,
            transparent 60%),
        var(--deep-black);
}

/* Animated star particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold-bright);
    border-radius: 50%;
    opacity: 0;
    animation: particleFall linear infinite;
}

@keyframes particleFall {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0);
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translateY(100vh) scale(1.5);
    }
}

/* Geometric arch frame */
.hero-arch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero-arch::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(212, 175, 55, 0.05);
    border-radius: 50%;
}

.hero-arch::after {
    content: '';
    position: absolute;
    inset: 50px;
    border: 1px solid rgba(212, 175, 55, 0.04);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-mid));
}

.hero-eyebrow-line:last-child {
    background: linear-gradient(90deg, var(--gold-mid), transparent);
}

.hero-eyebrow span {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.hero-title {
    font-family: var(--font-arabic);
    font-size: clamp(70px, 12vw, 130px);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg,
            var(--gold-pale) 0%,
            var(--gold-bright) 40%,
            var(--gold-mid) 70%,
            var(--gold-deep) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    animation: heroReveal 1.2s var(--ease-gold) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle-en {
    font-family: var(--font-display);
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 32px;
    animation: heroReveal 1.2s var(--ease-gold) 0.25s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 56px;
    font-weight: 300;
    animation: heroReveal 1.2s var(--ease-gold) 0.5s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: heroReveal 1.2s var(--ease-gold) 0.7s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
    padding: 16px 40px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-bright));
    opacity: 0;
    transition: opacity var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold-bright);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 16px 40px;
    transition: all var(--transition);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeUp 2s ease 1.5s infinite;
    opacity: 0;
}

.hero-scroll-hint span {
    font-family: var(--font-heading);
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-mid);
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold-mid), transparent);
}

@keyframes fadeUp {

    0%,
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ── MARQUEE BAND ─────────────────────────────────────────── */
.marquee-band {
    position: relative;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
    padding: 16px 0;
    overflow: hidden;
    z-index: 10;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 20s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 700;
    flex-shrink: 0;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--black);
    opacity: 0.5;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── BRAND STORY ──────────────────────────────────────────── */
.brand-story {
    padding: var(--section-pad);
    position: relative;
    z-index: 1;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-img-frame {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.story-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
    transition: transform 0.8s var(--ease-gold);
}

.story-img-frame:hover img {
    transform: scale(1.04);
}

.story-img-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg,
            transparent 30%,
            rgba(212, 175, 55, 0.12) 50%,
            transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.story-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    z-index: 2;
}

.story-img-badge .badge-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

.story-img-badge .badge-text {
    font-family: var(--font-heading);
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    opacity: 0.8;
    text-align: center;
}

.story-acc-line {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, var(--gold-bright), transparent);
}

.story-text {
    padding-left: 20px;
}

.story-text .section-label {
    text-align: left;
}

.story-heading {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.story-heading .gold {
    color: var(--gold-bright);
}

.story-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 300;
}

.story-arabic {
    font-family: var(--font-arabic);
    font-size: 18px;
    direction: rtl;
    text-align: right;
    color: var(--gold-pale);
    margin: 32px 0;
    padding: 20px;
    border-right: 3px solid var(--gold-bright);
    background: rgba(212, 175, 55, 0.04);
    line-height: 1.6;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    border: 1px solid var(--border);
    position: relative;
    transition: border-color var(--transition);
}

.stat-item:hover {
    border-color: var(--border-bright);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--gold-bright);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── COLLECTION SECTION ───────────────────────────────────── */
.collection {
    padding: var(--section-pad);
    background: var(--surface);
    position: relative;
    z-index: 1;
}

.collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.collection::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-title .gold-word {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ── PRODUCT CARD ─────────────────────────────────────────── */
.product-card {
    position: relative;
    background: var(--surface-2);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.product-card-media {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease-gold), filter 0.5s ease;
    filter: brightness(0.9) contrast(1.1);
}

.product-card:hover .product-card-media img {
    transform: scale(1.08);
    filter: brightness(0.75) contrast(1.1);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: all var(--transition);
}

.product-card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
    padding: 6px 14px;
}

.product-card-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.product-card-name-ar {
    font-family: var(--font-arabic);
    font-size: 14px;
    color: var(--gold-pale);
    direction: rtl;
    margin-bottom: 12px;
}

.product-card-price {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold-bright);
    margin-bottom: 16px;
}

.product-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-bright);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding-bottom: 4px;
    transform: translateY(10px);
    opacity: 0;
    transition: all var(--transition);
}

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

.product-card-cta svg {
    transition: transform var(--transition);
}

.product-card:hover .product-card-cta svg {
    transform: translateX(4px);
}

/* Golden corner accent */
.corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    overflow: hidden;
    pointer-events: none;
}

.corner-accent::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent var(--gold-mid) transparent transparent;
    opacity: 0.6;
}

/* ── PHILOSOPHY SECTION ───────────────────────────────────── */
.philosophy {
    padding: var(--section-pad);
    position: relative;
    z-index: 1;
    text-align: center;
}

.philosophy-inner {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-arabic-quote {
    font-family: var(--font-arabic);
    font-size: clamp(28px, 4vw, 48px);
    direction: rtl;
    color: var(--gold-bright);
    line-height: 1.6;
    margin-bottom: 24px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.philosophy-translation {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 80px;
}

.philosophy-item {
    background: var(--deep-black);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    transition: background var(--transition);
}

.philosophy-item:hover {
    background: var(--surface-3);
}

.philosophy-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    position: relative;
    transition: border-color var(--transition);
}

.philosophy-item:hover .philosophy-icon {
    border-color: var(--gold-bright);
}

.philosophy-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.philosophy-item:hover .philosophy-icon::before {
    opacity: 1;
}

.philosophy-icon svg {
    color: var(--gold-bright);
}

.philosophy-item-title {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.philosophy-item-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

/* ── CARE GUIDE ───────────────────────────────────────────── */
.care-section {
    padding: var(--section-pad);
    background: var(--surface);
    position: relative;
    z-index: 1;
}

.care-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.care-img-wrap {
    position: relative;
}

.care-img-wrap img {
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--border);
    filter: brightness(0.9) contrast(1.1);
}

.care-img-wrap::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    pointer-events: none;
}

.care-content .section-label {
    text-align: left;
}

.care-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.25;
}

.care-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.care-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--border);
    transition: border-color var(--transition), background var(--transition);
}

.care-list li:hover {
    border-color: var(--border-bright);
    background: rgba(212, 175, 55, 0.04);
}

.care-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
}

.care-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.care-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 4px;
}

/* ── INSPIRATION GALLERY ──────────────────────────────────── */
.inspire {
    padding: var(--section-pad);
    position: relative;
    z-index: 1;
}

.inspire-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.inspire-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

@keyframes galleryFadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

.inspire-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-gold), filter 0.5s ease;
    filter: brightness(0.85) contrast(1.05);
}

.inspire-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.6) contrast(1.05);
}

.inspire-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.inspire-item:hover .inspire-hover {
    opacity: 1;
}

.inspire-hover span {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-bright);
}

/* ── INSTAGRAM CTA ────────────────────────────────────────── */
.instagram-cta {
    padding: 80px 0;
    text-align: center;
    background: var(--surface-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.ig-handle {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 48px);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
}

.ig-sub {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.ig-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-bright);
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 14px 36px;
    transition: all var(--transition);
}

.ig-link:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold-bright);
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
    padding: 80px 0 40px;
    background: var(--black);
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    margin-bottom: 20px;
    display: block;
}

.footer-brand-text {
    font-family: var(--font-arabic);
    font-size: 13px;
    color: var(--gold-bright);
    margin-bottom: 16px;
    direction: rtl;
    text-align: right;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 280px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--gold-bright);
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition);
    font-size: 15px;
}

.social-btn:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.08);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-bottom .gold-mark {
    color: var(--gold-bright);
}

/* ── ANIMATIONS & SCROLL REVEAL ───────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-gold), transform 0.8s var(--ease-gold);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-gold), transform 0.8s var(--ease-gold);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-gold), transform 0.8s var(--ease-gold);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.stagger>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-gold), transform 0.6s var(--ease-gold);
}

.stagger.active>*:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
}

.stagger.active>*:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.1s;
}

.stagger.active>*:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.2s;
}

.stagger.active>*:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
}

/* ── LOADER ───────────────────────────────────────────────── */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-arabic);
    font-size: 60px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: var(--surface-3);
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-mid), var(--gold-bright));
    animation: loadBar 2s var(--ease-gold) forwards;
}

@keyframes loadBar {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ── PRODUCT DETAIL PAGE ──────────────────────────────────── */
.product-detail {
    padding-top: 100px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 60px 0;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--surface-2);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: border-color var(--transition);
}

.gallery-thumb.active {
    border-color: var(--gold-bright);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-thumb:not(.active) img {
    opacity: 0.6;
}

.gallery-thumb:hover img {
    opacity: 1;
}

/* Product info */
.product-info {
    padding-top: 20px;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.product-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.product-breadcrumb a:hover {
    color: var(--gold-bright);
}

.product-breadcrumb .sep {
    color: var(--border-bright);
}

.product-name {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.product-name-ar {
    font-family: var(--font-arabic);
    font-size: 18px;
    color: var(--gold-pale);
    direction: rtl;
    margin-bottom: 24px;
    display: block;
}

.product-price {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold-bright);
    margin-bottom: 32px;
}

.product-price .currency {
    font-size: 18px;
    color: var(--gold-mid);
    vertical-align: super;
    font-family: var(--font-heading);
}

.product-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--gold-mid), transparent);
    margin: 32px 0;
}

/* Size selector */
.size-label {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
}

.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.size-btn {
    width: 56px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
    background: transparent;
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.06);
}

/* Add to bag */
.add-btn {
    width: 100%;
    padding: 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-mid));
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    margin-bottom: 12px;
}

.add-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-bright));
    opacity: 0;
    transition: opacity var(--transition);
}

.add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(212, 175, 55, 0.4);
}

.add-btn:hover::before {
    opacity: 1;
}

.add-btn span {
    position: relative;
    z-index: 1;
}

.wishlist-btn {
    width: 100%;
    padding: 18px;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-bright);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wishlist-btn:hover {
    border-color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.06);
}

/* Product details accordion */
.accordion {
    margin-top: 48px;
    border-top: 1px solid var(--border);
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    cursor: pointer;
    background: none;
    border: none;
    transition: color var(--transition);
}

.accordion-trigger:hover {
    color: var(--gold-bright);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-trigger.open .accordion-icon {
    border-color: var(--gold-bright);
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-gold);
}

.accordion-content.open {
    max-height: 500px;
}

.accordion-inner {
    padding: 0 0 24px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

/* Care card on product detail */
.care-card-detail {
    margin-top: 32px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.care-card-detail img {
    width: 100%;
    object-fit: contain;
    background: #111;
}

/* ── PAGE — COLLECTION INDEX ──────────────────────────────── */
.collection-page {
    padding-top: 100px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.page-hero {
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.page-hero-sub {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.collection-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 4px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    :root {
        --container-max: 100%;
    }

    .container {
        padding: 0 32px;
    }

    .story-grid,
    .care-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-text {
        padding-left: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   ══════════════════════════════════════════════════════════════ */

/* ── TABLET (≤ 1024px) ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 28px;
    }

    .nav-links {
        gap: 22px;
    }

    .nav-links a {
        font-size: 9px;
    }

    .story-grid {
        gap: 48px;
    }

    .products-grid {
        gap: 2px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-detail-grid {
        gap: 40px;
    }
}

/* ── MOBILE (≤ 768px) ──────────────────────────────────────── */
@media (max-width: 768px) {

    /* Container */
    .container {
        padding: 0 20px;
    }

    /* ── Custom cursor — hide on touch ── */
    .cursor,
    .cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }

    /* ── Navbar ── */
    .navbar {
        padding: 0 20px;
        height: 70px;
        border-top-width: 1.5px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo img {
        height: 44px;
        width: 44px;
    }

    .nav-logo-text {
        font-size: 14px;
        letter-spacing: 2px;
    }

    /* Remove vertical rule pseudo-elements — too cramped on mobile */
    .nav-logo::before,
    .nav-logo::after {
        display: none;
    }

    /* ── Hero section ── */
    .hero {
        min-height: 100svh;
        padding-top: 70px;
    }

    .hero-arch {
        width: 340px;
        height: 340px;
    }

    .hero-title {
        font-size: clamp(54px, 20vw, 90px);
    }

    .hero-subtitle-en {
        font-size: clamp(12px, 4vw, 18px);
        letter-spacing: 4px;
    }

    .hero-tagline {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .hero-eyebrow span {
        font-size: 9px;
        letter-spacing: 4px;
    }

    .hero-eyebrow {
        gap: 10px;
    }

    .hero-eyebrow-line {
        width: 28px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll-hint {
        display: none;
    }

    /* ── Arabic watermark — smaller ── */
    .arabic-watermark {
        font-size: clamp(50px, 25vw, 100px);
    }

    /* ── Marquee ── */
    .marquee-item {
        font-size: 9px;
        letter-spacing: 4px;
    }

    /* ── Kufic band ── */
    .kufic-band {
        padding: 10px 16px;
    }

    .kufic-text {
        font-size: 11px;
        letter-spacing: 4px;
    }

    /* ── Arabesque / muqarnas ── */
    .arabesque-strip {
        height: 14px;
        background-size: 40px 14px;
    }

    .muqarnas-row {
        height: 18px;
        background-size: 56px 18px;
    }

    /* ── Sword decorations ── */
    .sword-decor svg {
        width: 18px;
        height: 18px;
    }

    /* ── Crossed-swords divider ── */
    .crossed-swords-divider {
        margin: 48px auto;
        padding: 0 20px;
        gap: 12px;
    }

    .crossed-swords-divider .swords-center svg {
        width: 22px;
        height: 22px;
    }

    /* ── Geo divider ── */
    .geo-divider {
        margin: 40px auto;
        padding: 0 20px;
        gap: 10px;
    }

    /* ── Section headings ── */
    .section-title {
        font-size: clamp(24px, 8vw, 40px);
    }

    .section-desc {
        font-size: 13px;
    }

    /* ── Page hero (collection / product pages) ── */
    .page-hero {
        padding: 110px 0 60px;
    }

    .page-hero-title {
        font-size: clamp(32px, 11vw, 60px);
    }

    .page-hero-sub {
        font-size: 12px;
        letter-spacing: 1px;
    }

    /* ── Brand story ── */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-visual {
        order: -1;
    }

    .story-heading {
        font-size: clamp(26px, 7vw, 44px);
    }

    .story-img-badge {
        right: -10px;
    }

    .story-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* ── Products grid (homepage) ── */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* ── Full collection grid ── */
    .full-collection-grid {
        grid-template-columns: 1fr;
    }

    /* ── Philosophy ── */
    .philosophy {
        padding: 80px 0;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .philosophy-arabic-quote {
        font-size: clamp(16px, 5vw, 24px);
    }

    /* ── Care section ── */
    .care-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .care-title {
        font-size: clamp(26px, 7vw, 44px);
    }

    /* ── Gallery ── */
    .inspire-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* ── Instagram CTA ── */
    .instagram-cta {
        padding: 60px 20px;
    }

    .ig-handle {
        font-size: clamp(22px, 8vw, 40px);
    }

    /* ── Footer ── */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    footer {
        padding: 60px 0 40px;
    }

    /* ── Product detail ── */
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-gallery {
        position: static;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .product-title-ar {
        font-size: clamp(28px, 9vw, 50px);
    }

    .product-title-en {
        font-size: clamp(16px, 5vw, 24px);
    }

    .size-selector {
        gap: 8px;
    }

    .size-btn {
        width: 42px;
        height: 42px;
        font-size: 10px;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-add-cart,
    .btn-wishlist {
        width: 100%;
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    /* ── Breadcrumb ── */
    .product-breadcrumb {
        font-size: 9px;
        letter-spacing: 2px;
    }

    /* ── Ornament header lines ── */
    .ornament-header-line {
        width: 50px;
    }
}

/* ── SMALL MOBILE (≤ 480px) ────────────────────────────────── */
@media (max-width: 480px) {
    :root {
        --section-pad: 72px 0;
    }

    /* ── Navbar ── */
    .navbar {
        height: 64px;
        padding: 0 16px;
    }

    .nav-logo img {
        height: 38px;
        width: 38px;
    }

    .nav-logo-text {
        font-size: 12px;
        letter-spacing: 1px;
    }

    /* ── Hero ── */
    .hero-content {
        padding: 0 12px;
    }

    .hero-title {
        font-size: clamp(48px, 22vw, 80px);
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* ── Story ── */
    .story-stats {
        grid-template-columns: 1fr;
    }

    .story-arabic {
        font-size: 14px;
        padding: 16px;
    }

    /* ── Gallery ── */
    .inspire-grid {
        grid-template-columns: 1fr;
    }

    /* ── Kufic band ── */
    .kufic-text {
        font-size: 10px;
        letter-spacing: 3px;
    }

    /* ── Crossed swords — vertically stack ── */
    .crossed-swords-divider {
        margin: 32px auto;
    }

    /* ── Collection page promo ── */
    .collection-promo {
        padding: 60px 0;
    }

    .promo-img-label {
        font-size: 13px;
        letter-spacing: 2px;
    }

    /* ── Size guide ── */
    .size-guide-strip {
        padding: 20px 12px;
    }

    .size-table th,
    .size-table td {
        padding: 8px 8px;
        font-size: 9px;
        letter-spacing: 1px;
    }

    /* ── Product detail ── */
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-title-ar {
        font-size: clamp(26px, 10vw, 44px);
    }

    .accordion-header {
        padding: 14px 0;
        font-size: 9px;
    }

    /* ── Footer ── */
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-brand-text {
        font-size: 28px;
    }

    /* ── Ornament header ── */
    .ornament-header {
        gap: 12px;
    }

    .ornament-header-line {
        width: 36px;
    }

    /* ── Palace border ── */
    .palace-border {
        margin: 40px 0 0;
    }

    /* ── Section label ── */
    .section-label {
        font-size: 9px;
        letter-spacing: 3px;
    }

    /* ── Page hero ── */
    .page-hero {
        padding: 100px 0 50px;
    }

    .page-hero-title {
        font-size: clamp(28px, 12vw, 50px);
    }
}

/* ── SOCIAL REVIEWS SECTION ──────────────────────────────── */
.reviews-section {
    padding: 100px 0;
    position: relative;
    background: var(--surface-2);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 40px 32px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-mid), var(--gold-bright));
    opacity: 0.5;
    transition: opacity var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-bright);
}

.review-card:hover::before {
    opacity: 1;
}

.review-stars {
    color: var(--gold-bright);
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
}

.review-name {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
}

.review-handle {
    font-size: 12px;
    color: var(--gold-mid);
    font-family: var(--font-body);
}

.review-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='1.5' opacity='0.05'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Cpath d='M16 11.37A4 4 0 1112.63 8 4 4 0 0116 11.37z'/%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
    transition: opacity var(--transition);
}

.review-card:hover::after {
    opacity: 0.1;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS
   ═══════════════════════════════════════════════════════════ */

/* ── Global touch improvements ── */
* {
    -webkit-tap-highlight-color: transparent;
}

a,
button,
[role="button"] {
    touch-action: manipulation;
}

/* Prevent iOS input zoom (inputs must be >= 16px to avoid zoom) */
input,
select,
textarea {
    font-size: max(16px, 1em);
}

/* Smooth momentum scrolling on iOS */
body {
    -webkit-overflow-scrolling: touch;
}

/* ── NAV AVATAR + PROFILE DROPDOWN ── */
.nav-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: visible;
    border: 2px solid rgba(212, 175, 55, 0.4);
    transition: border-color 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
    z-index: 1001;
}

.nav-avatar:hover {
    border-color: var(--gold-bright);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}

.nav-avatar>span {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.nav-avatar>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nav-profile-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 190px;
    background: rgba(10, 9, 5, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-top: 2px solid var(--gold-bright);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s;
    border-radius: 0 0 4px 4px;
    z-index: 1200;
}

.nav-profile-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.nav-profile-menu a {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.7);
    text-decoration: none;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    display: block;
    white-space: nowrap;
    /* touch-friendly tap zone */
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-profile-menu a:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold-pale);
}

.nav-profile-menu a:last-child {
    border-bottom: none;
    color: rgba(248, 113, 113, 0.7);
}

.nav-profile-menu a:last-child:hover {
    color: #F87171;
    background: rgba(248, 113, 113, 0.06);
}

/* ── AUTH MODAL MOBILE ── */
.auth-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(14px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.auth-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.auth-modal {
    background: #0d0b07;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-top: 3px solid var(--gold-bright);
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    padding: 32px 28px;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
    padding: 6px;
    /* at least 44px tap zone */
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.auth-modal-close:hover {
    color: var(--text-primary);
}

.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.auth-tab {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s;
    min-height: 44px;
}

.auth-tab.active {
    color: var(--gold-bright);
    border-bottom-color: var(--gold-bright);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.auth-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.auth-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.auth-field {
    margin-bottom: 16px;
}

.auth-field label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 7px;
}

.auth-field input {
    width: 100%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    /* prevents iOS zoom */
    padding: 13px 14px;
    outline: none;
    transition: border-color 0.3s;
    /* tall enough tap target */
    min-height: 48px;
}

.auth-field input:focus {
    border-color: rgba(212, 175, 55, 0.5);
    background: #141414;
}

.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.auth-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-bright));
    border: none;
    border-radius: 3px;
    color: var(--black);
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 52px;
    margin-top: 4px;
}

.auth-submit:hover {
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.auth-error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #F87171;
    font-size: 12px;
    padding: 10px 14px;
    border-radius: 3px;
    margin-bottom: 14px;
}

.auth-switch {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

.auth-switch a {
    color: var(--gold-bright);
    cursor: pointer;
    text-decoration: underline;
}

.auth-photo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    gap: 6px;
}

.auth-photo-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.auth-photo-preview {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #161616;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ── MOBILE-NAV IMPROVEMENTS ── */
.mobile-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── REVIEWS SECTION MOBILE ── */
@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 28px 20px;
    }
}

/* ── CLUBS PAGE MOBILE ── */
@media (max-width: 600px) {
    .clubs-search-bar {
        flex-direction: column;
        gap: 10px;
    }

    .clubs-search-bar input,
    .clubs-search-bar select {
        width: 100%;
        min-height: 48px;
        font-size: 16px;
    }
}

/* ── MEMBERSHIP PAGE MOBILE ── */
@media (max-width: 600px) {
    .membership-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .membership-card {
        padding: 32px 20px !important;
    }
}

/* ── CONTAINER PADDING MOBILE ── */
@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }
}

/* ── NAV LOGIN BUTTON MOBILE ── */
@media (max-width: 768px) {
    #navLoginBtn {
        display: none !important;
        /* already in the mobile nav */
    }
}

/* ── MOBILE NAV LOGIN LINK ── */
.mobile-nav a[href="login.html"] {
    color: var(--gold-mid) !important;
}

/* ── TOUCH BUTTON SIZING ── */
@media (max-width: 768px) {

    .btn-primary,
    .btn-secondary {
        min-height: 52px;
        padding: 16px 28px;
    }

    /* navbar height compacts slightly */
    .navbar {
        height: 72px;
        padding: 0 20px;
    }

    .hamburger {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
    }

    /* Offer cards stacking */
    .offers-grid,
    .club-offers-grid {
        grid-template-columns: 1fr !important;
    }

    /* Profile page tables / grids */
    .profile-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ─ Safe‑area insets for notched iPhones ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .navbar {
        padding-top: env(safe-area-inset-top);
    }

    .mobile-nav {
        padding-bottom: env(safe-area-inset-bottom);
    }
}