@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Jost:ital,wght@0,100..900;1,100..900&family=Patrick+Hand&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

:root {
    /* ── Brand Gold Palette ── */
    --gold-dark: #e2a12d;
    --gold-light: #fcde70;
    --gold-muted: #c8881e;
    --gold-pale: #fdf3d6;
    --gold-glow: rgba(226, 161, 45, 0.25);

    /* ── Black / Dark Palette ── */
    --black: #0a0a0a;
    --black-rich: #111111;
    --black-soft: #1a1a1a;
    --black-card: #161616;
    --black-border: rgba(226, 161, 45, 0.18);
    --black-border-hover: rgba(226, 161, 45, 0.45);

    /* ── Text ── */
    --text-on-dark: #f5f0e4;
    --text-on-dark-2: #b8a98c;
    --text-on-dark-3: #7a6a52;
    --text-on-light: #1a1208;
    --text-muted-gold: #9a8060;

    /* ── Legacy mappings (kept for JS references) ── */
    --cream: #1a1208;
    --warm-white: #0f0f0f;
    --dark: #1a1a1a;
    --brown: #6b4c35;
    --tan: var(--gold-dark);
    --accent: var(--gold-dark);
    --light-gray: #222018;
    --text-muted: var(--text-on-dark-2);
    --text-light: var(--text-on-dark);
    --border-light: var(--black-border);
    --primary: var(--gold-dark);
    --primary-dark: var(--gold-muted);
    --primary-link: var(--gold-light);

    --transition: all 0.3s ease;
    --max-w: 1240px;
    --radius-md: 12px;
    --radius-sm: 6px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;
    --text-primary: #f5f0e4;
    --text-secondary: #b8a98c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--black-rich);
    color: var(--text-on-dark);
    overflow-x: hidden;
    padding-top: 100px;
}

/* ═══════════════════════════════════════
   TOP WRAPPER & ANNOUNCEMENT BAR
═══════════════════════════════════════ */
.top-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1005;
    transition: transform 0.35s ease;
}

.top-wrapper.hide {
    transform: translateY(-100%);
}

.announcement-bar {
    background: var(--black);
    color: var(--gold-dark);
    font-size: 13px;
    padding: 9px 0;
    border-bottom: 1px solid var(--black-border);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    letter-spacing: 0.5px;
}

.announcement-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-left {
    display: flex;
    gap: 28px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-size: 12px;
    letter-spacing: 0.8px;
}

.announcement-item i {
    color: var(--gold-light);
    font-size: 11px;
}

.announcement-right {
    display: flex;
    gap: 20px;
}

.announcement-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.announcement-link:hover {
    color: var(--gold-light);
}

.user-menu {
    position: relative;
    cursor: pointer;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gold-dark);
    transition: color 0.3s;
}

.user-trigger:hover {
    color: var(--gold-light);
}

#adminPanelLink {
    margin-right: 15px;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* ═══════════════════════════════════════
   MAIN HEADER / NAV
═══════════════════════════════════════ */
.main-header {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 5px 0;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid var(--black-border);
    transition: var(--transition);
    height: 80px;
    display: flex;
    align-items: center;
}

.main-header.scrolled {
    padding: 12px 0;
    background: rgba(8, 8, 8, 0.99);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-on-dark);
    font-weight: 500;
    font-size: 13.5px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-dark);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-light);
}

.nav-link:hover::after {
    width: 100%;
}

/* ── MEGA MENU ── */
.mega-menu {
    position: absolute;
    top: 24px;
    left: 0;
    background: var(--black-soft);
    padding: 36px 40px;
    border-radius: 14px;
    border: 1px solid var(--black-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(226, 161, 45, 0.08);
    display: none;
    width: 720px;
}

.nav-item:hover .mega-menu {
    display: block;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.mega-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--gold-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--black-border);
    letter-spacing: 0.5px;
}

.mega-links {
    list-style: none;
    margin-top: 14px;
}

.mega-links li {
    margin-bottom: 10px;
}

.mega-links a {
    text-decoration: none;
    color: var(--text-on-dark-2);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.mega-links a i {
    color: var(--gold-dark);
    font-size: 10px;
    opacity: 0;
    transition: 0.3s;
}

.mega-links a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.mega-links a:hover i {
    opacity: 1;
}

.mega-col-heading-link {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

.mega-col-heading-link:hover {
    color: var(--gold-light);
}

.mega-featured {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--black-border);
    display: flex;
    gap: 50px;
    align-items: center;
}

.mega-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-on-dark-2);
    font-size: 13px;
}

.mega-feature-item i {
    font-size: 16px;
    color: var(--gold-dark);
}

/* ── LOGO ── */
.logo {
    height: 100%;
    display: flex;
    align-items: center;
}
.logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(226, 161, 45, 0.15));
    transition: filter 0.3s;
    max-height: 150px;
}

.logo:hover img {
    filter: drop-shadow(0 0 14px rgba(226, 161, 45, 0.35));
}

/* ── HEADER ICONS ── */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.icon-wrapper {
    display: flex;
    align-items: center;
}

.icon-link {
    font-size: 18px;
    color: var(--text-on-dark);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.icon-link:hover {
    color: var(--gold-light);
}

.icon-link i {
    font-size: 18px;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold-dark);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ── SEARCH ── */
.search-bar {
    display: flex;
    align-items: center;
    background: var(--black-soft);
    border-radius: 25px;
    border: 1px solid var(--black-border);
    padding: 5px 12px;
    max-width: 170px;
    gap: 8px;
    transition: border-color 0.3s;
}

.search-bar:focus-within {
    border-color: var(--gold-dark);
}

.search-input {
    border: none;
    outline: none;
    font-size: 13px;
    width: 100px;
    font-family: 'Jost', sans-serif;
    flex: 1;
    background: transparent;
    color: var(--text-on-dark);
}

.search-input::placeholder {
    color: var(--text-on-dark-3);
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gold-dark);
    font-size: 13px;
    transition: color 0.3s;
}

.search-btn:hover {
    color: var(--gold-light);
}

/* ═══════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════ */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.slide {
    display: none;
    animation: fade 0.8s ease;
}

.slide.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: scale(1.02);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 0 5%;
    min-height: 90vh;
    background: var(--black);
}

.hero-text {
    max-width: 520px;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--gold-dark);
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1.15;
    color: var(--text-on-dark);
    font-weight: 600;
}

.hero-text h1 em {
    color: var(--gold-dark);
    font-style: italic;
}

.hero-text p {
    font-size: 1.05rem;
    margin: 18px 0 32px;
    color: var(--text-on-dark-2);
    line-height: 1.7;
}

/* ── HERO BUTTON ── */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-muted) 100%);
    color: var(--black);
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(226, 161, 45, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 50px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(226, 161, 45, 0.45);
    color: var(--black);
}

.btn-primary span,
.btn-primary {
    position: relative;
    z-index: 1;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-img-wrap {
    width: 100%;
    max-width: 520px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--black-border);
    position: relative;
}

.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(226, 161, 45, 0.12);
    pointer-events: none;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.88) saturate(0.9);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.hero-img-wrap:hover img {
    transform: scale(1.04);
    filter: brightness(0.95) saturate(1);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 28px;
    display: flex;
    gap: 10px;
}

.slider-controls button {
    width: 46px;
    height: 46px;
    border: 1px solid var(--gold-dark);
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.7);
    color: var(--gold-dark);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    backdrop-filter: blur(8px);
}

.slider-controls button:hover {
    background: var(--gold-dark);
    color: var(--black);
    transform: scale(1.08);
}

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-wrap {
    background: var(--gold-dark);
    color: var(--black);
    padding: 0.85rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
}

.marquee-inner span {
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .8rem;
    color: var(--black);
}

.marquee-inner span::before {
    content: '◆';
    color: var(--black);
    opacity: 0.5;
    font-size: .45rem;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════
   SECTION FRAMEWORK
═══════════════════════════════════════ */
.section {
    padding: 6rem 5%;
    background: var(--black-rich);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold-dark);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 18px;
}

.section-tag::before,
.section-tag::after {
    content: '—';
    position: absolute;
    top: 0;
    color: var(--gold-dark);
    opacity: 0.5;
}

.section-tag::before {
    left: 0;
}

.section-tag::after {
    right: 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-on-dark);
}

.section-sub {
    color: var(--text-on-dark-2);
    margin-top: .9rem;
    font-size: .98rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   CATEGORIES
═══════════════════════════════════════ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.4rem;
}

.cat-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.cat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0;
    transition: opacity .35s;
}

.cat-card:hover {
    border-color: var(--black-border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(226, 161, 45, 0.08);
}

.cat-card:hover::before {
    opacity: 1;
}

.cat-icon {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(0.2);
    transition: transform 0.3s ease;
}

.cat-card:hover .cat-icon {
    transform: scale(1.12);
}

.cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .35rem;
    color: var(--text-on-dark);
}

.cat-count {
    font-size: .78rem;
    color: var(--gold-dark);
    letter-spacing: 1px;
}

/* Cat skeleton */
.cat-skeleton {
    pointer-events: none;
    cursor: default;
    animation: cat-pulse 1.4s ease-in-out infinite;
}

.cat-skeleton-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(226, 161, 45, 0.06);
    margin: 0 auto 12px;
}

.cat-skeleton-text {
    height: 14px;
    background: rgba(226, 161, 45, 0.06);
    border-radius: 6px;
    width: 60%;
    margin: 0 auto 8px;
}

.cat-skeleton-sub {
    height: 12px;
    background: rgba(226, 161, 45, 0.04);
    border-radius: 6px;
    width: 40%;
    margin: 0 auto;
}

@keyframes cat-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}

/* Cat card link */
.cat-card--link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cat-thumb {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 12px;
    border: 2px solid var(--black-border);
}

/* ═══════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════ */
.products {
    background: var(--black-soft);
}

.filter-tabs {
    display: flex;
    gap: .5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tab {
    padding: .5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--black-border);
    background: transparent;
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
    color: var(--text-on-dark-2);
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.5px;
}

.tab.active,
.tab:hover {
    background: var(--gold-dark);
    color: var(--black);
    border-color: var(--gold-dark);
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all .35s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--black-border-hover);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 24px rgba(226, 161, 45, 0.07);
}

.product-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #111;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    filter: brightness(0.9);
}

.product-card:hover .product-img img {
    transform: scale(1.07);
    filter: brightness(1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold-dark);
    color: var(--black);
    padding: .28rem .8rem;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid var(--black-border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .95rem;
    color: var(--text-on-dark-2);
    transition: all .3s;
    box-shadow: none;
    backdrop-filter: blur(6px);
}

.product-wishlist:hover {
    background: rgba(226, 161, 45, 0.15);
    border-color: var(--gold-dark);
    color: var(--gold-light);
}

.product-info {
    padding: 1.4rem;
}

.product-category {
    font-size: .7rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: .4rem;
    font-weight: 600;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: .4rem;
    color: var(--text-on-dark);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .8rem;
    color: var(--text-on-dark-2);
    margin-bottom: .8rem;
}

.stars {
    color: var(--gold-dark);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
}

.product-price span {
    font-size: .82rem;
    color: var(--text-on-dark-3);
    text-decoration: line-through;
    margin-left: .4rem;
    font-weight: 400;
}

.add-cart {
    background: var(--gold-dark);
    color: var(--black);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.add-cart:hover {
    background: var(--gold-light);
    transform: scale(1.12) rotate(8deg);
}

.product-footer button {
    background: var(--gold-dark);
    color: var(--black);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 17px;
    transition: all 0.3s;
}

.product-footer button:hover {
    background: var(--gold-light);
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--black-soft);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 5px 10px;
}

.qty-box button {
    border: none;
    background: var(--gold-dark);
    color: var(--black);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
}

.qty-box button:hover {
    background: var(--gold-light);
}

.qty-box span {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--text-on-dark);
}

/* ═══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.6rem 1.8rem;
    border: 1px solid var(--black-border);
    border-radius: 20px;
    background: var(--black-card);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

.feature-card:hover {
    border-color: var(--black-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    width: 64px;
    height: 64px;
    background: rgba(226, 161, 45, 0.08);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.3rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: rgba(226, 161, 45, 0.15);
    border-color: var(--gold-dark);
}

.feature-icon i {
    color: var(--gold-dark) !important;
    font-size: 1.4rem;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: var(--text-on-dark);
}

.feature-desc {
    font-size: .86rem;
    color: var(--text-on-dark-2);
    line-height: 1.65;
}

/* ═══════════════════════════════════════
   BANNER
═══════════════════════════════════════ */
.banner {
    margin: 0 5% 6rem;
    background: var(--black-card);
    border: none;
    border-radius: 32px;
    padding: 5rem 6%;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.banner::before {
    content: '';
    position: absolute;
    left: -5%;
    top: -20%;
    width: 45%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(226, 161, 45, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.banner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    border: none;
    pointer-events: none;
}

.banner-text {
    position: relative;
    z-index: 1;
}

.banner-tag {
    color: var(--gold-dark);
    font-size: .72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text-on-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.banner-title em {
    color: var(--gold-light);
    font-style: italic;
}

.banner-desc {
    color: var(--text-on-dark-2);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.btn-light {
    background: transparent;
    color: var(--gold-dark);
    border: 1.5px solid var(--gold-dark);
    padding: .9rem 2.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .3s;
    display: inline-block;
}

.btn-light:hover {
    background: var(--gold-dark);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(226, 161, 45, 0.3);
}

.banner-img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    height: 360px;
    border: 1px solid var(--black-border);
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82) saturate(0.9);
    transition: filter 0.4s;
}

.banner:hover .banner-img img {
    filter: brightness(0.92) saturate(1);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
    background: var(--black-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.testi-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all .35s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
    border-color: var(--black-border-hover);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.testi-stars {
    color: var(--gold-dark);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.testi-text {
    font-size: .94rem;
    line-height: 1.75;
    color: var(--text-on-dark-2);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(226, 161, 45, 0.1);
    border: 1px solid var(--black-border);
    overflow: hidden;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-on-dark);
}

.testi-role {
    font-size: .76rem;
    color: var(--gold-dark);
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════ */
.newsletter-section {
    padding: 5rem 5%;
    text-align: center;
    background: var(--black-rich);
}

.newsletter-box {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 28px;
    padding: 4rem 3rem;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold-light), var(--gold-dark), transparent);
}

.newsletter-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: .8rem;
    color: var(--text-on-dark);
    font-weight: 700;
}

.newsletter-box p {
    color: var(--text-on-dark-2);
    margin-bottom: 2.2rem;
    line-height: 1.7;
    font-size: .95rem;
}

.newsletter-form {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 240px;
    padding: .9rem 1.4rem;
    border-radius: 50px;
    border: 1px solid var(--black-border);
    font-size: .9rem;
    background: var(--black-soft);
    outline: none;
    font-family: 'Jost', sans-serif;
    transition: border-color .3s;
    color: var(--text-on-dark);
}

.newsletter-form input::placeholder {
    color: var(--text-on-dark-3);
}

.newsletter-form input:focus {
    border-color: var(--gold-dark);
}

.newsletter-form button {
    background: var(--gold-dark);
    color: var(--black);
    padding: .9rem 2.2rem;
    border-radius: 50px;
    border: none;
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    font-family: 'Jost', sans-serif;
}

.newsletter-form button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(226, 161, 45, 0.35);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
    background: var(--black);
    color: var(--text-on-dark-2);
    padding: 80px 5% 30px;
    position: relative;
    border-top: 1px solid var(--black-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 55px;
    margin-bottom: 5px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: block;
}

.footer-logo img {
    height: 60px;
    filter: drop-shadow(0 0 6px rgba(226, 161, 45, 0.1));
}

.footer-brand p {
    font-size: .86rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-on-dark-2);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(226, 161, 45, 0.07);
    border: 1px solid var(--black-border);
    color: var(--text-on-dark-2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: .85rem;
    transition: all .3s;
}

.social-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--gold-dark);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: .75rem;
}

.footer-col ul li a {
    color: var(--text-on-dark-2);
    text-decoration: none;
    font-size: .86rem;
    transition: color .3s;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .86rem;
    color: var(--text-on-dark-2);
    line-height: 1.6;
}

.footer-contact p i {
    color: var(--gold-dark);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--black-border);
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-on-dark-3);
}

.footer-bottom a {
    color: var(--text-on-dark-3);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--gold-dark);
}

.policies {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 1.6rem;
    color: var(--text-on-dark-3);
}

/* ═══════════════════════════════════════
   TOAST
═══════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: var(--black-card);
    border: 1px solid var(--gold-dark);
    color: var(--gold-light);
    padding: 1rem 1.6rem;
    border-radius: 14px;
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    transform: translateY(100px);
    opacity: 0;
    transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(226, 161, 45, 0.1);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ═══════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════ */
.back-to-top,
.whatsapp {
    position: fixed;
    right: 25px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top {
    background: var(--black-card);
    border: 1px solid var(--gold-dark);
    color: var(--gold-dark);
    bottom: 90px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-dark);
    color: var(--black);
    transform: translateY(-3px);
}

.whatsapp {
    background: #25D366;
    color: #fff;
    bottom: 150px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    border: none;
    font-size: 22px;
}

.whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px) scale(1.05);
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all .7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   MOBILE NAVBAR
═══════════════════════════════════════ */
.hamburger {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--gold-dark);
    padding: 4px;
}

.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gold-dark);
    z-index: 1001;
}

/* ═══════════════════════════════════════
   MOBILE BOTTOM BAR
═══════════════════════════════════════ */
.mobile-bottom-bar {
    display: none;
}

/* ═══════════════════════════════════════
   SCROLL DOWN
═══════════════════════════════════════ */
.scroll-down {
    display: none !important;
}

/* ═══════════════════════════════════════
   GLOBAL UTILS
═══════════════════════════════════════ */
img {
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 5rem;
    }

    .hero-img-wrap {
        height: 320px;
    }

    .banner {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        display: grid;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .announcement-bar .container {
        flex-direction: column;
        gap: 8px;
    }

    .announcement-left {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: 0.4s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: auto;
        text-align: center;
    }

    .nav-link {
        font-size: 22px;
        font-weight: 500;
        letter-spacing: 1px;
        color: var(--text-on-dark);
    }

    .nav-link:hover {
        color: var(--gold-light);
    }

    /* CLOSE BUTTON */
    .close-menu {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 28px;
        color: var(--gold-dark);
        cursor: pointer;
    }

    /* Hide desktop elements */
    .header-icons,
    .announcement-right,
    .user-menu {
        display: flex;
    }

    /* Center logo */
    .logo {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .close-menu {
        display: block;
    }

    .header-icons {
        display: none;
    }

    .announcement-right {
        display: none;
    }

    .user-menu {
        display: none;
    }

    .main-header {
        padding: 10px 0;
    }
    .main-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .mobile-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background: var(--black);
        border-top: 1px solid var(--black-border);
        display: flex;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
        z-index: 9999;
    }

    .mobile-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        color: var(--text-on-dark-2);
        text-decoration: none;
        gap: 4px;
        letter-spacing: 0.5px;
        transition: color 0.3s;
    }

    .mobile-item i {
        font-size: 19px;
    }

    .mobile-item:active,
    .mobile-item:hover {
        color: var(--gold-dark);
    }

    body {
        padding-bottom: 70px;
    }

    .whatsapp {
        bottom: 130px;
    }

    .back-to-top {
        bottom: 85px;
    }
}

@media (max-width: 600px) {
    
    .announcement-bar {
        padding: 6px 10px; /* reduced height */
        font-size: 11px;
    }

    .announcement-bar .container {
        flex-direction: row; /* keep in one line */
        justify-content: center;
        align-items: center;
    }

    .announcement-left {
        display: flex;
        gap: 12px;
        flex-wrap: nowrap; /* prevent wrapping */
        overflow-x: auto;  /* allow scroll if needed */
        white-space: nowrap;
    }

    .announcement-item {
        font-size: 11px;
        gap: 4px;
    }

    .announcement-item i {
        font-size: 10px;
    }

    /* hide right side completely */
    .announcement-right {
        display: none;
    }
    
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;   /* ✅ center horizontally */
        text-align: center;
        flex-direction: column;    /* ✅ icon above text */
        align-items: center;       /* ✅ center icon + text */
    }

    .footer-contact p i {
        margin: 0 0 5px 0;         /* spacing below icon */
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .policies {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .footer-bottom .policies a {
        display: inline-block;
    }
    
    .footer-socials{
        display: flex;
        justify-content: center;
    }

    .payment-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .banner {
        margin: 0 0 4rem;
        border-radius: 0;
    }

    .newsletter-box {
        padding: 2.5rem 1.5rem;
    }
    .whatsapp {
        bottom: 150px; /* more gap on mobile */
    }

    .back-to-top {
        bottom: 80px;
    }
}