/* ═══════════════════════════════════════════
   SILLIA VAPE — Dark Royal Gold Theme
   ═══════════════════════════════════════════ */

:root {
    --gold: #C9A84C;
    --gold-light: #E8C96D;
    --gold-dark: #9B7A2F;
    --bg-black: #0A0A0A;
    --bg-card: #111111;
    --bg-card2: #161616;
    --border: rgba(201, 168, 76, 0.18);
    --border-hover: rgba(201, 168, 76, 0.5);
    --text-white: #F0EDE6;
    --text-muted: #888;
    --text-gold: #C9A84C;
    --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
    --shadow-gold-hover: 0 0 50px rgba(201, 168, 76, 0.3);
    --nav-h: 70px;
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', sans-serif;
    background: var(--bg-black);
    color: var(--text-white);
    overflow-x: hidden;
    direction: rtl;
}

/* ── SMOKE BG ── */
.smoke-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.smoke-bg::before,
.smoke-bg::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.04;
    animation: smokeDrift 20s ease-in-out infinite alternate;
}
.smoke-bg::before {
    top: -200px; right: -200px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
}
.smoke-bg::after {
    bottom: -200px; left: -200px;
    background: radial-gradient(circle, var(--gold-dark) 0%, transparent 70%);
    animation-delay: -10s;
}
@keyframes smokeDrift {
    from { transform: translate(0,0) scale(1); }
    to { transform: translate(60px, 40px) scale(1.15); }
}

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
    position: fixed;
    bottom: 24px; left: 24px;
    z-index: 9999;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

/* ═══════════════════ NAVBAR ═══════════════════ */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}
.navbar.scrolled {
    box-shadow: 0 4px 40px rgba(0,0,0,0.8), 0 1px 0 var(--gold-dark);
}

.nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
}
.nav-logo-img { width: 42px; height: 42px; object-fit: contain; }
.nav-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem; font-weight: 900;
    color: var(--gold);
    letter-spacing: 4px;
}

.nav-links {
    list-style: none;
    display: flex; gap: 36px;
}
.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600; font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
    padding: 4px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; right: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    transition: width 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.cart-btn {
    position: relative;
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-white);
    width: 44px; height: 44px;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--shadow-gold); }
.cart-badge {
    position: absolute;
    top: -6px; left: -6px;
    background: var(--gold);
    color: #000;
    font-size: 0.65rem; font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
}
.cart-badge.bump { transform: scale(1.4); }

.burger-btn {
    display: none;
    flex-direction: column; gap: 5px;
    background: transparent; border: none;
    cursor: pointer; padding: 6px;
}
.burger-btn span {
    display: block; width: 24px; height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ═══════════════════ MOBILE MENU ═══════════════════ */
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1998;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100%;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 1999;
    padding: 30px 24px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex; flex-direction: column;
}
.mobile-menu.open { right: 0; }

.mobile-close {
    align-self: flex-end;
    background: transparent; border: none;
    color: var(--text-muted); font-size: 1.3rem;
    cursor: pointer; margin-bottom: 20px;
    transition: color 0.2s;
}
.mobile-close:hover { color: var(--gold); }

.mobile-logo {
    display: flex; flex-direction: column; align-items: center;
    gap: 8px; margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}
.mobile-logo img { width: 60px; }
.mobile-logo span { font-family: 'Cinzel', serif; color: var(--gold); letter-spacing: 2px; font-size: 1rem; }

.mobile-nav-links { list-style: none; flex: 1; }
.mobile-nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-nav-links a {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 8px;
    color: var(--text-white); text-decoration: none;
    font-weight: 600; font-size: 0.95rem;
    transition: color 0.2s;
}
.mobile-nav-links a i { color: var(--gold); width: 18px; }
.mobile-nav-links a:hover { color: var(--gold); }

.mobile-socials {
    display: flex; gap: 16px; justify-content: center;
    margin-top: 24px;
}
.mobile-socials a {
    width: 40px; height: 40px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); text-decoration: none; font-size: 0.95rem;
    transition: all 0.2s;
}
.mobile-socials a:hover { background: var(--gold); color: #000; }

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 20px 5% 20px; /* reduce top padding — marquee already below nav */
    overflow: hidden;
    z-index: 1;
}
.hero-bg-gradient {
    position: absolute; inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
        linear-gradient(180deg, #0A0A0A 0%, #0D0B08 50%, #0A0A0A 100%);
    z-index: -1;
}
.hero::before {
    content: '';
    position: absolute;
    top: 20%; left: 50%;
    transform: translateX(-50%);
    width: 1px; height: 30%;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.3;
    z-index: 0;
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.8rem; color: var(--gold);
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.hero-title {
    display: flex; flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
}
.hero-title-line {
    font-family: 'Cinzel', serif;
    font-size: clamp(4rem, 14vw, 9rem);
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--text-white);
    text-shadow: 0 0 80px rgba(201,168,76,0.1);
    animation: titleReveal 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}
.hero-title-line.gold {
    color: var(--gold);
    text-shadow: 0 0 40px rgba(201,168,76,0.4);
    animation-delay: 0.15s;
}
@keyframes titleReveal {
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1rem; color: var(--text-muted);
    line-height: 1.8; margin-bottom: 36px;
    animation: fadeInUp 1s ease 0.35s forwards;
    opacity: 0;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-btns {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
}

.btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0A0A0A;
    font-family: 'Cairo', sans-serif;
    font-weight: 700; font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.5);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-white);
    font-family: 'Cairo', sans-serif;
    font-weight: 700; font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.hero-stats {
    display: flex; align-items: center; gap: 24px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.65s forwards;
    opacity: 0;
}
.hero-stat { text-align: center; }
.stat-num { display: block; font-family: 'Cinzel', serif; font-size: 1.8rem; color: var(--gold); font-weight: 700; }
.stat-lbl { font-size: 0.75rem; color: var(--text-muted); }
.stat-sep { width: 1px; height: 40px; background: var(--border); }

.hero-scroll-hint {
    position: relative;  /* change from absolute to relative */
    bottom: auto;
    left: auto;
    right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
    margin-top: 32px;  /* space above it */
    pointer-events: none;
}
.scroll-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0,0); opacity: 0.5; }
    50% { transform: rotate(45deg) translate(4px,4px); opacity: 1; }
}
/* ═══════════════════ MARQUEE ═══════════════════ */
.marquee-strip {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 999;
     direction: ltr; /* keeps wrapper layout correct */
    margin-top: var(--nav-h);
}
.marquee-wrapper {
    display: flex;
    width: max-content;
    will-change: transform;
}
.marquee-item {
    white-space: nowrap;
    font-weight: 700;
    color: #0A0A0A;
    font-size: 0.85rem;
    letter-spacing: 1px;
    flex-shrink: 0;
    padding: 0 40px;
    font-family: 'Cairo', sans-serif;
}
.marquee-sep {
    color: rgba(10,10,10,0.4);
    flex-shrink: 0;
    padding: 0 4px;
    font-size: 0.7rem;
    align-self: center;
}
/* ═══════════════════ FEATURES ═══════════════════ */
.features-strip {
    padding: 60px 5%;
    position: relative; z-index: 1;
    border-bottom: 1px solid var(--border);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px; margin: 0 auto;
}
.feature-item {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}
.feature-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.feature-icon-wrap {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(201,168,76,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.1rem;
}
.feature-item strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.feature-item span { font-size: 0.78rem; color: var(--text-muted); }

/* ═══════════════════ SECTION COMMON ═══════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem; font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-white);
    margin-bottom: 12px;
}
.section-sub { font-size: 0.9rem; color: var(--text-muted); }

/* ═══════════════════ SHOP ═══════════════════ */
.shop-section {
    padding: 80px 5%;
    position: relative; z-index: 1;
}

.shop-controls {
    display: flex; gap: 20px; align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1200px; margin-left: auto; margin-right: auto;
    margin-bottom: 40px;
}

.search-wrap {
    position: relative; flex: 0 0 280px;
}
.search-wrap i {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); font-size: 0.9rem;
}
.search-wrap input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 11px 40px 11px 14px;
    color: var(--text-white);
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}
.search-wrap input:focus { border-color: var(--gold); }
.search-wrap input::placeholder { color: var(--text-muted); }

.categories-bar {
    display: flex; gap: 8px; flex-wrap: wrap; flex: 1;
}
.cat-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 9px 16px;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.82rem; font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}
.cat-btn:hover { border-color: var(--border-hover); color: var(--text-white); }
.cat-btn.active { background: var(--gold); border-color: var(--gold); color: #0A0A0A; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px; margin: 0 auto;
}

.products-loading {
    grid-column: 1/-1;
    display: flex; flex-direction: column; align-items: center;
    gap: 16px; padding: 80px;
    color: var(--text-muted);
}
.loading-ring {
    width: 48px; height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── PRODUCT CARD ── */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.35s;
    position: relative;
    display: flex; flex-direction: column;
}
.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold-hover);
}

.product-card-img-wrap {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-card2);
}
.product-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.product-card:hover .product-card-img { transform: scale(1.05); }

.product-status-badge {
    position: absolute; top: 10px; right: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.5px;
}
.badge-active { background: rgba(201,168,76,0.2); color: var(--gold); border: 1px solid var(--border); }
.badge-out { background: rgba(255,80,80,0.15); color: #ff6060; border: 1px solid rgba(255,80,80,0.3); }

.product-quick-view {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.product-card:hover .product-quick-view { opacity: 1; }
.quick-view-btn {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transform: translateY(8px);
    transition: transform 0.3s;
}
.product-card:hover .quick-view-btn { transform: translateY(0); }

.product-card-body {
    padding: 16px;
    flex: 1;
    display: flex; flex-direction: column;
}
.product-cat-tag {
    font-size: 0.7rem; color: var(--gold);
    font-weight: 600; letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.product-card-name {
    font-size: 0.95rem; font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-desc {
    font-size: 0.78rem; color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px; flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.product-price {
    font-size: 1.1rem; font-weight: 900;
    color: var(--gold);
}
.product-price span { font-size: 0.7rem; opacity: 0.7; font-weight: 400; }

.add-to-cart-mini {
    width: 36px; height: 36px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--gold); font-size: 0.9rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s; flex-shrink: 0;
}
.add-to-cart-mini:hover { background: var(--gold); color: #000; border-color: var(--gold); }

.no-products {
    text-align: center; padding: 80px 20px;
    color: var(--text-muted);
}
.no-products i { font-size: 3rem; margin-bottom: 16px; opacity: 0.4; }

/* ═══════════════════ BRANDS ═══════════════════ */
.brands-section {
    padding: 80px 5%;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative; z-index: 1;
}
.brand-slide {
    display: flex !important; align-items: center; justify-content: center;
    height: 80px;
    background: var(--bg-black);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
    cursor: default;
}
.brand-slide:hover { border-color: var(--gold); }
.brand-slide span {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 700;
    transition: color 0.3s;
}
.brand-slide:hover span { color: var(--gold); }

/* ═══════════════════ ABOUT ═══════════════════ */
.about-section {
    padding: 80px 5%;
    position: relative; z-index: 1;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    max-width: 1100px; margin: 0 auto;
}
.about-image-col { display: flex; justify-content: center; }
.about-img-frame {
    position: relative;
    width: 340px; height: 340px;
    display: flex; align-items: center; justify-content: center;
}
.about-img-frame::before {
    content: '';
    position: absolute; inset: 0;
    border: 2px solid var(--border);
    border-radius: 50%;
    animation: rotateBorder 10s linear infinite;
}
.about-img-frame::after {
    content: '';
    position: absolute; inset: 20px;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 50%;
}
@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.about-logo-large {
    width: 220px; height: 220px; object-fit: contain;
    position: relative; z-index: 1;
    filter: drop-shadow(0 0 40px rgba(201,168,76,0.3));
}
.about-badge-years {
    position: absolute;
    bottom: 20px; left: 0;
    background: var(--gold);
    color: #000;
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 0 30px rgba(201,168,76,0.5);
}
.years-num { font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 900; line-height: 1; }
.years-lbl { font-size: 0.6rem; font-weight: 700; }

.about-content .section-title { text-align: right; }
.about-text { color: var(--text-muted); line-height: 1.9; margin-bottom: 28px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.about-feat {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s;
}
.about-feat:hover { border-color: var(--border-hover); }
.about-feat > i {
    color: var(--gold); font-size: 1.1rem;
    margin-top: 2px; flex-shrink: 0;
}
.about-feat strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.about-feat span { font-size: 0.78rem; color: var(--text-muted); }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    position: relative; z-index: 1;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 60px 5%;
    max-width: 1300px; margin: 0 auto;
}
.footer-brand {}
.footer-logo { width: 50px; margin-bottom: 10px; }
.footer-brand h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem; color: var(--gold);
    letter-spacing: 3px; margin-bottom: 12px;
}
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px; height: 36px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); text-decoration: none; font-size: 0.85rem;
    transition: all 0.25s;
}
.footer-socials a:hover { background: var(--gold); color: #000; }

.footer-col h4 {
    font-size: 0.85rem; font-weight: 700;
    color: var(--gold); letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-muted); text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.25s;
}
.footer-col a i { color: var(--gold); width: 14px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    text-align: center;
    padding: 20px 5%;
    border-top: 1px solid var(--border);
    font-size: 0.78rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ═══════════════════ CART DRAWER ═══════════════════ */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 420px; max-width: 100vw;
    height: 100%;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 2001;
    display: flex; flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cart-drawer.open { right: 0; }

.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.cart-header-info {
    display: flex; align-items: center; gap: 10px;
}
.cart-header-info i { color: var(--gold); }
.cart-header h2 { font-size: 1rem; font-weight: 700; }
.cart-close-btn {
    background: transparent; border: none;
    color: var(--text-muted); font-size: 1.1rem;
    cursor: pointer; transition: color 0.2s;
}
.cart-close-btn:hover { color: var(--gold); }

.cart-body { flex: 1; overflow-y: auto; padding: 0; }
.cart-body::-webkit-scrollbar { width: 4px; }
.cart-body::-webkit-scrollbar-track { background: transparent; }
.cart-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.cart-empty {
    display: flex; flex-direction: column; align-items: center;
    padding: 80px 24px; gap: 16px; text-align: center;
}
.cart-empty-icon {
    width: 80px; height: 80px;
    background: rgba(201,168,76,0.08);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--gold);
}
.cart-empty p { color: var(--text-muted); }

.btn-gold-sm {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000; font-family: 'Cairo', sans-serif;
    font-weight: 700; font-size: 0.85rem;
    padding: 10px 20px; border-radius: 8px;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.3s;
}
.btn-gold-sm:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(201,168,76,0.4); }

/* Cart Items */
#cartItems { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.cart-item {
    display: flex; gap: 12px; align-items: center;
    padding: 14px;
    background: var(--bg-black);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.cart-item-img {
    width: 64px; height: 64px;
    border-radius: 8px; object-fit: cover; flex-shrink: 0;
    background: var(--bg-card2);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    font-size: 0.85rem; font-weight: 700;
    margin-bottom: 4px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cart-item-price { font-size: 0.9rem; color: var(--gold); font-weight: 700; }
.cart-item-controls {
    display: flex; align-items: center; gap: 8px;
}
.qty-ctrl {
    width: 28px; height: 28px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    border-radius: 6px; color: var(--gold);
    font-size: 0.9rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.qty-ctrl:hover { background: var(--gold); color: #000; }
.qty-display {
    min-width: 28px; text-align: center;
    font-weight: 700; font-size: 0.9rem;
}
.cart-item-remove {
    background: transparent; border: none;
    color: #ff6060; font-size: 0.9rem;
    cursor: pointer; padding: 4px;
    opacity: 0.7; transition: opacity 0.2s;
}
.cart-item-remove:hover { opacity: 1; }

/* Checkout Form */
.checkout-form { padding: 20px 24px; }
.checkout-nav {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px;
}
.back-btn {
    background: transparent; border: 1px solid var(--border);
    color: var(--text-muted); padding: 8px 14px;
    border-radius: 8px; cursor: pointer; font-size: 0.85rem;
    display: flex; align-items: center; gap: 6px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.2s;
}
.back-btn:hover { border-color: var(--gold); color: var(--gold); }
.checkout-nav h3 { font-size: 1rem; font-weight: 700; }

.order-summary {
    background: var(--bg-black);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 0.82rem;
}
.order-summary-title {
    font-weight: 700; color: var(--gold);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.summary-item {
    display: flex; justify-content: space-between;
    padding: 4px 0; color: var(--text-muted);
}
.summary-total {
    display: flex; justify-content: space-between;
    margin-top: 10px; padding-top: 10px;
    border-top: 1px solid var(--border);
    font-weight: 700; color: var(--gold);
}

.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: 0.82rem; font-weight: 600;
    margin-bottom: 6px; color: var(--text-muted);
}
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-black);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--text-white);
    font-family: 'Cairo', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg-card); }
.form-group textarea { height: 80px; resize: none; }

.place-order-btn {
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000; border: none;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem; font-weight: 700;
    cursor: pointer; margin-top: 8px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.place-order-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(201,168,76,0.5); }

/* Success View */
.success-view {
    padding: 60px 24px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.success-anim {
    position: relative; width: 80px; height: 80px;
    margin-bottom: 8px;
}
.success-ring {
    position: absolute; inset: 0;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: successPulse 2s ease infinite;
}
@keyframes successPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.4; }
}
.success-anim i { position: relative; z-index: 1; font-size: 3rem; color: var(--gold); line-height: 80px; }
.success-view h3 { font-size: 1.2rem; }
.success-view p { font-size: 0.85rem; color: var(--text-muted); }
.order-ref strong { color: var(--gold); }

/* Cart Footer */
.cart-footer {
    padding: 16px 24px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}
.cart-total-row {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 12px;
    font-size: 0.9rem;
}
.cart-total-row span:first-child { color: var(--text-muted); }
.cart-total-amount { font-size: 1.2rem; font-weight: 900; color: var(--gold); }
.checkout-btn {
    width: 100%; padding: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000; border: none; border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem; font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.checkout-btn:disabled {
    opacity: 0.5; cursor: not-allowed;
    transform: none !important; box-shadow: none !important;
}
.checkout-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(201,168,76,0.5);
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-col { display: none; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .burger-btn { display: flex; }
    .hero-btns { gap: 12px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .shop-controls { flex-direction: column; }
    .search-wrap { flex: 1 1 100%; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
}
@media (max-width: 480px) {
    .hero-title-line { letter-spacing: 4px; }
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 1.4rem; }
}

/* ══════════════════════════════════════
   ENHANCED STYLES — NEW SECTIONS
   ══════════════════════════════════════ */

/* ── GRAIN OVERLAY ── */
.grain-overlay {
    position: fixed; inset: 0; z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    opacity: 0.4;
}

/* ── CANVAS HERO BG ── */
#heroCanvas {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
    opacity: 0.2;
}

/* ── REVEAL ANIMATION ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── ENHANCED NAVBAR ── */
.nav-logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-sub { font-size: 0.55rem; letter-spacing: 3px; color: var(--text-muted); font-family: 'Cairo', sans-serif; font-weight: 400; }
.nav-wa-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.3);
    color: #25D366;
    border-radius: 8px;
    font-size: 0.85rem; font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}
.nav-wa-btn:hover { background: rgba(37,211,102,0.2); border-color: #25D366; box-shadow: 0 0 20px rgba(37,211,102,0.2); }
@media (max-width: 900px) { .nav-wa-btn span { display: none; } .nav-wa-btn { padding: 8px 10px; } }

/* ── HERO RINGS ── */
.hero-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.1);
    pointer-events: none;
}
.ring-1 { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: ringPulse 4s ease-in-out infinite; }
.ring-2 { width: 800px; height: 800px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: ringPulse 4s ease-in-out infinite 1s; border-color: rgba(201, 168, 76, 0.06); }
.ring-3 { width: 1000px; height: 1000px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: ringPulse 4s ease-in-out infinite 2s; border-color: rgba(201, 168, 76, 0.04); }
@keyframes ringPulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.03); }
}

/* ── HERO FLOATING ICONS ── */
.hero-float-icon {
    position: absolute; z-index: 1;
    font-size: 1.4rem;
    color: var(--gold);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}
.f1 { top: 20%; right: 15%; animation-delay: 0s; font-size: 1.2rem; }
.f2 { top: 30%; left: 12%; animation-delay: -2s; font-size: 1.8rem; }
.f3 { bottom: 30%; right: 10%; animation-delay: -4s; font-size: 1rem; }
.f4 { bottom: 25%; left: 18%; animation-delay: -1s; font-size: 1.5rem; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ── HERO TYPEWRITER ── */
.hero-typewriter {
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 1px;
    min-height: 28px;
}
.tw-cursor {
    animation: blink 1s infinite;
    font-weight: 300;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ── HERO STATS COUNTER ── */
.stat-plus {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 900;
}

/* ── FAB PULSE ── */
.fab-pulse {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: fabPulse 2.5s ease-out infinite;
    z-index: -1;
}
@keyframes fabPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
}

/* ── OFFERS SECTION ── */
.offers-section {
    padding: 80px 5%;
    position: relative; z-index: 2;
    background: linear-gradient(180deg, rgba(201,168,76,0.02) 0%, transparent 100%);
}
.offers-swiper-wrap {
    max-width: 1200px; margin: 0 auto;
    position: relative;
}
.offers-swiper { padding-bottom: 44px !important; }

.offer-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    height: 280px;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.offer-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(201,168,76,0.2);
}
.offer-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.5s ease;
}
.offer-card:hover .offer-card-bg { transform: scale(1.05); }
.offer-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.offer-card-no-img {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #1a1200 0%, #0d0d0d 100%);
}
.offer-card-content {
    position: relative; z-index: 2;
    padding: 28px;
}
.offer-tag-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gold);
    color: #0A0A0A;
    padding: 4px 12px; border-radius: 100px;
    font-size: 0.75rem; font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.offer-card h3 {
    font-size: 1.35rem; font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}
.offer-card .offer-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
}
.offer-card-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold);
    padding: 8px 18px; border-radius: 8px;
    font-size: 0.82rem; font-weight: 700;
    transition: all 0.3s;
}
.offer-card:hover .offer-card-cta { background: var(--gold); color: #0A0A0A; }

.offer-card-skeleton { background: var(--bg-card); animation: shimmer 1.5s infinite; }
.offer-skeleton-bg { position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card2) 50%, var(--bg-card) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.offers-swiper .swiper-pagination-bullet { background: var(--gold-dark); opacity: 0.5; }
.offers-swiper .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }
.offers-next, .offers-prev {
    color: var(--gold) !important;
    background: rgba(10,10,10,0.8) !important;
    border: 1px solid var(--border) !important;
    border-radius: 50% !important;
    width: 40px !important; height: 40px !important;
    transition: all 0.3s !important;
}
.offers-next:hover, .offers-prev:hover { border-color: var(--gold) !important; background: rgba(201,168,76,0.15) !important; }
.offers-next::after, .offers-prev::after { font-size: 14px !important; font-weight: 900 !important; }

.offers-fallback {
    max-width: 1200px; margin: 0 auto;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1200 50%, #0d0d0d 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

/* ── CATEGORIES SECTION ── */
.categories-section {
    padding: 80px 5%;
    position: relative; z-index: 2;
}
.categories-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
    min-height: 416px;
}
.cat-loading {
    grid-column: 1/-1;
    display: flex; justify-content: center; align-items: center;
}
.cat-big {
    grid-column: span 2;
    grid-row: span 2;
}
.cat-card {
    position: relative; overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform 0.4s, border-color 0.4s;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.cat-card:hover .cat-card-bg { transform: scale(1.08); }
.cat-card:hover .cat-shine { opacity: 1; }
.cat-card:hover .cat-arrow { transform: translateX(-6px); }
.cat-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.5s ease;
    opacity: 0.8; 
}
/* Image overlay for readability */
.cat-card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 1;
}
/* Fallback gradient backgrounds when no image */
.bg-fallback-1 { background: linear-gradient(135deg, #1a1200 0%, #0d0d0d 100%); }
.bg-fallback-2 { background: linear-gradient(135deg, #001a0d 0%, #0a0a0a 100%); }
.bg-fallback-3 { background: linear-gradient(135deg, #1a0d00 0%, #0a0a0a 100%); }
.bg-fallback-4 { background: linear-gradient(135deg, #0d001a 0%, #0a0a0a 100%); }
.bg-fallback-5 { background: linear-gradient(135deg, #00141a 0%, #0a0a0a 100%); }
.cat-card-content {
    position: relative; z-index: 2;
    height: 100%; padding: 28px;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.cat-big .cat-card-content { padding: 36px; }
.cat-icon {
    width: 48px; height: 48px;
    background: rgba(201,168,76,0.12);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--gold);
    margin-bottom: 12px;
}
.cat-big .cat-icon { width: 60px; height: 60px; font-size: 1.6rem; margin-bottom: 16px; }
.cat-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 6px; text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
.cat-big h3 { font-size: 1.6rem; margin-bottom: 10px; }
.cat-card p { font-size: 0.82rem; color: rgba(255,255,255,0.75); text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.cat-big p { font-size: 0.95rem; }
.cat-arrow { color: var(--gold); margin-top: 16px; display: block; transition: transform 0.3s; }
.cat-big .cat-arrow { margin-top: 24px; font-size: 1.1rem; }
.cat-shine {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 3;
}

/* ── HOW IT WORKS ── */
.how-section {
    padding: 80px 5%;
    position: relative; z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(201,168,76,0.02) 50%, transparent 100%);
}
.how-bg-line {
    position: absolute;
    top: 50%; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    pointer-events: none;
}
.how-steps {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 30px; position: relative;
}
.how-step {
    text-align: center;
    position: relative;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.how-step:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.step-number {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem; font-weight: 900;
    color: rgba(201,168,76,0.08);
    position: absolute; top: 12px; right: 16px;
    line-height: 1;
    pointer-events: none;
}
.step-icon {
    width: 64px; height: 64px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--gold);
    margin: 0 auto 16px;
}
.how-step:hover .step-icon { background: rgba(201,168,76,0.2); border-color: var(--gold); }
.how-step h3 { font-size: 1rem; font-weight: 700; color: var(--text-white); margin-bottom: 10px; }
.how-step p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }
.step-connector {
    display: none;
}

/* ── ENHANCED BRANDS ── */
.brand-inner {
    display: flex; align-items: center; gap: 10px;
    justify-content: center;
}
.brand-letter {
    width: 36px; height: 36px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cinzel', serif;
    font-weight: 900; font-size: 1rem;
    color: var(--gold);
    transition: all 0.3s;
}
.brand-slide:hover .brand-letter { background: var(--gold); color: #000; border-color: var(--gold); }

/* ── TESTIMONIALS ── */
.testimonials-section {
    padding: 80px 5%;
    position: relative; z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}
.testimonials-swiper {
    max-width: 1200px; margin: 0 auto 50px;
    padding-bottom: 50px !important;
}
.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.testi-card::before {
    content: '"';
    position: absolute; top: 20px; left: 24px;
    font-size: 5rem; line-height: 1;
    color: rgba(201,168,76,0.08);
    font-family: Georgia, serif;
    pointer-events: none;
}
.testi-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testi-text {
    color: var(--text-white);
    line-height: 1.8; font-size: 0.95rem;
    margin-bottom: 24px;
    font-style: italic;
}
.testi-author {
    display: flex; align-items: center; gap: 14px;
}
.testi-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; color: #000;
    flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.95rem; color: var(--text-white); margin-bottom: 2px; }
.testi-author span { font-size: 0.78rem; color: var(--text-muted); }
.testi-pagination { margin-top: 20px !important; }
.testi-pagination .swiper-pagination-bullet { background: var(--border); }
.testi-pagination .swiper-pagination-bullet-active { background: var(--gold); }

/* Rating Summary */
.rating-summary {
    max-width: 800px; margin: 0 auto;
    display: grid; grid-template-columns: auto 1fr auto;
    gap: 40px; align-items: center;
    padding: 30px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}
.rating-big { display: flex; align-items: center; gap: 16px; }
.rating-number {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem; font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.rating-stars-big { font-size: 1.1rem; color: var(--gold); margin-bottom: 4px; }
.rating-big span { font-size: 0.8rem; color: var(--text-muted); }
.rating-bars { display: flex; flex-direction: column; gap: 6px; }
.rbar { display: flex; align-items: center; gap: 10px; }
.rbar > span:first-child { font-size: 0.75rem; color: var(--text-muted); width: 30px; flex-shrink: 0; text-align: right; }
.rbar > span:last-child { font-size: 0.75rem; color: var(--text-muted); width: 30px; flex-shrink: 0; }
.rbar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.rbar-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 3px; transition: width 1.5s ease; }
.rating-count { text-align: center; }
.rating-count i { display: block; font-size: 2rem; color: var(--gold); margin-bottom: 8px; }
.rating-count strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--text-white); font-family: 'Cinzel', serif; }
.rating-count span { font-size: 0.8rem; color: var(--text-muted); }

/* ── ENHANCED ABOUT ── */
.about-float {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; font-weight: 600;
    color: var(--text-white);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    white-space: nowrap;
    z-index: 3;
}
.about-float i { color: var(--gold); font-size: 1rem; }
.af1 { top: 10%; right: -20px; animation: floatBadge 5s ease-in-out infinite; }
.af2 { bottom: 20%; right: -30px; animation: floatBadge 5s ease-in-out infinite 1.5s; }
.af3 { bottom: 5%; left: 10%; animation: floatBadge 5s ease-in-out infinite 3s; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Timeline */
.about-timeline { margin: 24px 0; display: flex; flex-direction: column; gap: 0; }
.tl-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 14px 0;
    border-right: 2px solid var(--border);
    padding-right: 20px;
    position: relative;
}
.tl-item::before {
    content: '';
    position: absolute; right: -7px; top: 20px;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(201,168,76,0.4);
}
.tl-year {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem; font-weight: 700;
    color: var(--gold);
    min-width: 40px; padding-top: 2px;
}
.tl-content strong { display: block; font-size: 0.9rem; color: var(--text-white); margin-bottom: 2px; }
.tl-content span { font-size: 0.8rem; color: var(--text-muted); }
.about-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

/* ── FAQ SECTION ── */
.faq-section {
    padding: 80px 5%;
    position: relative; z-index: 2;
}
.faq-grid {
    max-width: 800px; margin: 0 auto 40px;
    display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(201,168,76,0.3); }
.faq-item.open { border-color: var(--gold); }
.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px;
    font-weight: 600; font-size: 0.95rem;
    color: var(--text-white);
}
.faq-icon {
    color: var(--gold); font-size: 0.85rem;
    transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 22px;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.8;
}
.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 22px 20px;
}
.faq-cta { text-align: center; }
.faq-cta p { color: var(--text-muted); margin-bottom: 16px; }

/* ── CTA SECTION ── */
.cta-section {
    margin: 0; padding: 80px 5%;
    position: relative; z-index: 2;
    overflow: hidden;
    background: linear-gradient(135deg, #080800 0%, #120f00 50%, #080800 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-inner {
    max-width: 700px; margin: 0 auto;
    text-align: center;
    position: relative;
}
.cta-decor-left, .cta-decor-right {
    position: absolute; top: 50%;
    width: 300px; height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.15;
}
.cta-decor-left { left: -200px; background: var(--gold); transform: translateY(-50%); }
.cta-decor-right { right: -200px; background: var(--gold-dark); transform: translateY(-50%); }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: 2.5rem; font-weight: 900; color: var(--text-white); margin-bottom: 14px; font-family: 'Cairo', sans-serif; }
.cta-content p { color: var(--text-muted); font-size: 1rem; margin-bottom: 32px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-gold-lg {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    border-radius: 12px;
    font-size: 1rem; font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}
.btn-gold-lg:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,0.5); }
.btn-ghost-lg {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: 1rem; font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}
.btn-ghost-lg:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--shadow-gold); }

/* ── ENHANCED FOOTER ── */
.footer-top-bar {
    background: rgba(201,168,76,0.05);
    border-bottom: 1px solid var(--border);
    padding: 12px 5%;
}
.ftb-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center; gap: 24px;
    font-size: 0.85rem; color: var(--text-muted);
}
.ftb-inner i { color: var(--gold); margin-left: 6px; }
.ftb-sep { width: 1px; height: 20px; background: var(--border); }
.footer-trust-badges {
    display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px;
}
.footer-trust-badges span {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; color: var(--text-muted);
    background: rgba(201,168,76,0.06);
    border: 1px solid var(--border);
    padding: 5px 10px; border-radius: 100px;
}
.footer-trust-badges span i { color: var(--gold); }
.footer-hours {
    margin-top: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 10px; padding: 14px;
}
.fh-title {
    font-size: 0.82rem; font-weight: 700;
    color: var(--gold); margin-bottom: 10px;
}
.fh-title i { margin-left: 6px; }
.fh-row {
    display: flex; justify-content: space-between;
    font-size: 0.78rem; color: var(--text-muted);
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fh-row:last-child { border-bottom: none; }
.fs-facebook:hover { color: #1877f2 !important; }
.fs-whatsapp:hover { color: #25D366 !important; }
.fs-tiktok:hover { color: #ff0050 !important; }
.fs-instagram:hover { color: #e1306c !important; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
}
.fb-left p, .fb-right p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom a { color: var(--gold); }

/* Mobile Contact Buttons in Mobile Menu */
.mobile-contact {
    display: flex; gap: 10px; padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 12px 0;
}
.mc-btn {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: 6px; padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem; font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text-white);
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}
.mc-btn:hover { border-color: var(--gold); color: var(--gold); }
.mc-btn.wa { border-color: rgba(37,211,102,0.3); color: #25D366; }
.mc-btn.wa:hover { background: rgba(37,211,102,0.1); }
.ml-name { display: block; font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold); letter-spacing: 2px; }
.mobile-logo small { font-size: 0.7rem; color: var(--text-muted); display: block; margin-top: 2px; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .cat-big { grid-column: span 2; height: 220px; }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .rating-summary { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
    .rating-big { justify-content: center; }
    .rating-count { display: flex; align-items: center; gap: 12px; }
    .rating-count i { display: inline; font-size: 1.2rem; margin-bottom: 0; }
}
@media (max-width: 768px) {
    .promo-inner { flex-direction: column; text-align: center; }
    .promo-left h2 { font-size: 1.5rem; }
    .promo-right { width: 100%; }
    .promo-cta { width: 100%; justify-content: center; }
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .cat-big { grid-column: span 2; }
    .how-steps { grid-template-columns: 1fr 1fr; gap: 16px; }
    .cta-content h2 { font-size: 1.8rem; }
    .ftb-inner { flex-direction: column; gap: 8px; text-align: center; }
    .ftb-sep { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-float { display: none; }
    .about-cta-row { flex-direction: column; }
}
@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .cat-big { grid-column: span 1; height: 180px; }
    .how-steps { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; }
    .btn-gold-lg, .btn-ghost-lg { justify-content: center; }
    .rating-bars { display: none; }
}
/* ── SHOP VIEW ALL WRAP ── */
.shop-view-all-wrap {
    max-width: 1200px; margin: 40px auto 0;
    text-align: center;
}
.shop-view-all-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.06) 100%);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold);
    padding: 16px 36px;
    border-radius: 14px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem; font-weight: 700;
    text-decoration: none;
    transition: all 0.35s;
    letter-spacing: 0.3px;
}
.shop-view-all-btn:hover {
    background: rgba(201,168,76,0.2);
    border-color: var(--gold);
    box-shadow: 0 8px 40px rgba(201,168,76,0.2);
    transform: translateY(-2px);
}
.shop-view-all-btn i:first-child { font-size: 1.1rem; }

/* ── PROMO FALLBACK (inside offers section) ── */
.promo-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 50px; gap: 40px;
    position: relative;
}
.promo-glow {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.promo-tag {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    padding: 4px 14px; border-radius: 100px;
    font-size: 0.85rem; font-weight: 700;
    margin-bottom: 14px;
}
.promo-left h2 { font-family: 'Cairo', sans-serif; font-size: 1.9rem; font-weight: 900; color: var(--text-white); line-height: 1.3; margin-bottom: 12px; }
.promo-left p { color: var(--text-muted); max-width: 500px; line-height: 1.6; }
.promo-right { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; }
.promo-cta { display: flex; align-items: center; gap: 10px; padding: 16px 32px; background: #25D366; color: white; border-radius: 12px; font-size: 1rem; font-weight: 700; text-decoration: none; transition: all 0.3s; box-shadow: 0 8px 30px rgba(37,211,102,0.3); white-space: nowrap; font-family: 'Cairo', sans-serif; }
.promo-cta i { font-size: 1.3rem; }
.promo-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.promo-right small { color: var(--text-muted); font-size: 0.8rem; }

@media (max-width: 768px) {
    .offer-card { height: 220px; }
    .offer-card h3 { font-size: 1.1rem; }
    .promo-inner { flex-direction: column; text-align: center; padding: 30px; }
    .promo-left h2 { font-size: 1.5rem; }
    .promo-right { width: 100%; }
    .promo-cta { width: 100%; justify-content: center; }
}