/* ============================================================
   KHAMO LUXURY BOUTIQUE — MASTER CSS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ────────────────────────────────────────────── */
:root {
    /* ── Accent / Gold ── */
    --gold: #B8860B;
    --gold-light: #D4A843;
    --gold-dark: #8B6508;

    /* ── Light theme backgrounds ── */
    --obsidian: #FFFFFF;
    /* page background  */
    --charcoal: #F8F5F0;
    /* card / section   */
    --dark: #F0EBE3;
    /* subtle panel     */
    --mid: #E5DDD4;
    /* borders / dividers */

    /* ── Text ── */
    --smoke: #7A6A58;
    /* muted text       */
    --ash: #4A3F35;
    /* secondary text   */
    --ivory: #2C2218;
    /* primary body text */
    --cream: #FAF7F2;
    /* light tint       */
    --white: #FFFFFF;

    --serif: 'Cormorant Garamond', serif;
    --sans: 'Montserrat', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 2px;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: var(--sans);
    background: var(--obsidian);
    color: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--mid);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: var(--sans);
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.serif {
    font-family: var(--serif);
}

h1,
h2,
h3 {
    line-height: 1.1;
}

/* ── UTILITIES ────────────────────────────────────────────── */
.hidden {
    display: none !important;
}

.section-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-sub {
    font-size: 13px;
    color: var(--smoke);
    max-width: 500px;
    line-height: 1.9;
}

.section-header {
    margin-bottom: 60px;
}

.section {
    padding: 100px 80px;
}

.gold-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 24px 0;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: #FFFFFF;
    padding: 14px 36px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.25);
}

.btn-gold.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 13px 36px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(201, 169, 110, 0.5);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 10px;
    letter-spacing: 2px;
}

.btn-xs {
    padding: 7px 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    padding: 12px 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
}

.btn-wa:hover {
    background: rgba(37, 211, 102, 0.15);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(184, 134, 11, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--gold);
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #4A3F35;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #4A3F35;
    font-size: 18px;
    transition: color 0.2s;
    position: relative;
    padding: 4px;
}

.nav-icon-btn:hover {
    color: var(--gold);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gold);
    color: var(--obsidian);
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 180px;
    display: none;
    flex-direction: column;
    z-index: 100;
    margin-top: 12px;
}

.dropdown-menu a,
.dropdown-menu button {
    display: block;
    padding: 12px 20px;
    font-size: 12px;
    color: #4A3F35;
    cursor: pointer;
    transition: all 0.2s;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--sans);
    letter-spacing: 0.5px;
}

.dropdown-menu a:hover,
.dropdown-menu button:hover {
    color: var(--gold);
    background: rgba(184, 134, 11, 0.06);
}

.nav-dropdown:hover .dropdown-menu {
    display: flex;
}

.nav-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-search-input {
    position: absolute;
    right: 100%;
    width: 0;
    background: var(--dark);
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--white);
    padding: 8px 12px;
    font-size: 12px;
    font-family: var(--sans);
    border-radius: var(--radius);
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.nav-search-form.open .nav-search-input {
    width: 220px;
    opacity: 1;
    margin-right: 8px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--charcoal);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    padding: 20px;
    gap: 0;

    position: absolute;
    /* IMPORTANT */
    top: 100%;
    /* below header */
    left: 0;
    right: 0;

    max-height: calc(100vh - 60px);
    /* prevents overflow off-screen */
    overflow-y: auto;
    /* enables scroll */
    z-index: 999;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    padding: 12px 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4A3F35;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s;
}

.mobile-nav a:hover {
    color: var(--gold);
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ash);
    transition: all 0.3s;
}

/* ── WA FLOAT ─────────────────────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 900;
    background: #25D366;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.wa-float:hover {
    transform: scale(1.1);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #FAF7F2;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FAF7F2 0%, #F0E8D8 40%, #FAF7F2 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #C9A96E, transparent);
    top: -100px;
    right: -100px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8B6914, transparent);
    bottom: 100px;
    left: 200px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 700px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--serif);
    font-size: 80px;
    font-weight: 300;
    line-height: 1;
    color: #2C2218;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--smoke);
    max-width: 400px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 80px;
    z-index: 2;
    display: flex;
    gap: 48px;
}

.hero-stat {
    text-align: right;
}

.hero-stat-num {
    display: block;
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--smoke);
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}

.hero-scroll-indicator span {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ash);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollAnim 1.5s ease infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scaleY(1);
        transform-origin: top;
    }
}

/* ── PROMO STRIP ──────────────────────────────────────────── */
.promo-strip {
    background: var(--gold);
    padding: 12px;
    text-align: center;
}

.promo-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--obsidian);
}

.promo-strip-link {
    color: var(--obsidian);
    text-decoration: underline;
}

/* ── PRODUCT GRID ─────────────────────────────────────────── */
.product-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: transparent;
}

.product-grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    background: transparent;
}

.product-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
}

.product-card:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.product-img-link {
    display: block;
}

.product-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.04);
}

.product-img-placeholder {
    width: 100%;
    height: 100%;
    background: #F0EBE3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(184, 134, 11, 0.2);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    pointer-events: none;
}

.product-card:hover .product-overlay {
    opacity: 1;
    pointer-events: all;
}

.overlay-add-btn {
    background: var(--gold);
    color: var(--obsidian);
    border: none;
    padding: 10px 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 1px;
    font-family: var(--sans);
}

.overlay-wish-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 1px;
    font-size: 16px;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    background: var(--gold);
    color: var(--obsidian);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 10px;
    text-transform: uppercase;
}

.sale-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background: #E24B4A;
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 2px;
}

.product-info {
    padding: 20px;
}

.product-brand-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.product-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    color: #2C2218;
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-name a {
    color: inherit;
    text-decoration: none;
}

.product-name a:hover {
    color: var(--gold);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.product-rating .fa-star,
.product-rating .fa-star-o {
    color: var(--gold);
    font-size: 11px;
}

.rating-count {
    font-size: 11px;
    color: var(--smoke);
    margin-left: 4px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}

.product-old-price {
    font-size: 12px;
    color: var(--smoke);
    text-decoration: line-through;
}

.out-of-stock-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #E57373;
    text-transform: uppercase;
    margin-top: 6px;
}

.low-stock-label {
    font-size: 10px;
    letter-spacing: 1px;
    color: #FFB74D;
    margin-top: 6px;
}

/* ── BRANDS ───────────────────────────────────────────────── */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(201, 169, 110, 0.1);
}

.brand-card {
    background: var(--charcoal);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
    display: block;
}

.brand-card:hover {
    background: var(--dark);
    border-color: rgba(201, 169, 110, 0.3);
}

.brand-initials {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.brand-logo-img {
    width: 80px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto 12px;
    filter: brightness(0.8);
}

.brand-card:hover .brand-logo-img {
    filter: brightness(1);
}

.brand-name {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--ash);
    text-transform: uppercase;
}

.brand-origin {
    font-size: 10px;
    color: var(--smoke);
    margin-top: 4px;
}

/* ── ABAYAS ───────────────────────────────────────────────── */
.abaya-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201, 169, 110, 0.1);
}

.abaya-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--mid);
    aspect-ratio: 2/3;
}

.abaya-card-img,
.abaya-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.abaya-card:hover .abaya-card-img,
.abaya-card:hover .abaya-img {
    transform: scale(1.04);
}

.abaya-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mid);
    color: rgba(201, 169, 110, 0.2);
    font-size: 80px;
}

.abaya-info,
.abaya-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.abaya-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--obsidian);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 12px;
    text-transform: uppercase;
    z-index: 1;
}

.abaya-name,
.abaya-gallery-name {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 4px;
}

.abaya-price,
.abaya-gallery-price {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
}

/* ── CATALOG ──────────────────────────────────────────────── */
.catalog-hero {
    background: linear-gradient(135deg, var(--dark), var(--charcoal));
    padding: 80px 80px 40px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    min-height: 60vh;
}

.catalog-sidebar {
    background: #F8F5F0;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding: 32px 24px;
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.catalog-main {
    padding: 32px 40px;
}

.filter-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--ash);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.filter-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 12px;
    color: #7A6A58;
    transition: color 0.2s;
}

.filter-check:hover {
    color: var(--gold);
}

.filter-check input {
    accent-color: var(--gold);
}

.filter-count {
    font-size: 10px;
    color: var(--smoke);
}

.filter-clear {
    display: block;
    font-size: 11px;
    color: var(--gold);
    margin-top: 8px;
}

.filter-search-input {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #2C2218;
    padding: 10px 14px;
    font-size: 12px;
    font-family: var(--sans);
    border-radius: 1px;
    outline: none;
}

.filter-search-input:focus {
    border-color: var(--gold);
    outline: none;
}

.filter-price-input {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #2C2218;
    padding: 8px 10px;
    font-size: 12px;
    font-family: var(--sans);
    border-radius: 1px;
    outline: none;
    width: 0;
}

.filter-price-input:focus {
    border-color: var(--gold);
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: #F8F5F0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 2px;
}

.results-count {
    font-size: 12px;
    color: var(--smoke);
    letter-spacing: 0.5px;
}

.sort-select {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #4A3F35;
    padding: 8px 16px;
    font-size: 12px;
    font-family: var(--sans);
    border-radius: 1px;
    cursor: pointer;
    outline: none;
}

.sort-select:focus {
    border-color: var(--gold);
}

.pagination-wrap {
    margin-top: 40px;
}

.pagination-wrap nav {
    display: flex;
    justify-content: center;
}

.empty-state {
    text-align: center;
    padding: 80px 40px;
}

.empty-state p {
    color: var(--smoke);
    margin: 16px 0 24px;
    font-size: 14px;
}

/* ── ABAYA GALLERY ────────────────────────────────────────── */
.abaya-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.abaya-gallery-card {
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    position: relative;
}

.abaya-gallery-img {
    height: 320px;
    overflow: hidden;
    background: var(--mid);
}

.abaya-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.abaya-gallery-card:hover .abaya-gallery-img img {
    transform: scale(1.04);
}

.abaya-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201, 169, 110, 0.2);
    font-size: 60px;
}

.abaya-gallery-info {
    padding: 20px;
}

.abaya-gallery-name {
    font-family: var(--serif);
    font-size: 18px;
    margin-bottom: 10px;
}

.abaya-gallery-name a {
    color: var(--white);
}

.abaya-tag {
    display: inline-block;
    font-size: 10px;
    padding: 3px 10px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.15);
    color: var(--gold);
    margin-right: 6px;
    margin-bottom: 12px;
}

.abaya-gallery-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.abaya-img-link {
    display: block;
}

/* ── PRODUCT DETAIL ───────────────────────────────────────── */
.product-detail-page {
    padding-top: 70px;
}

.breadcrumb-nav {
    padding: 20px 80px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 11px;
    color: var(--smoke);
}

.breadcrumb-nav a {
    color: var(--smoke);
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}

.breadcrumb-nav span:last-child {
    color: var(--ash);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 20px 80px 60px;
}

.gallery-main {
    background: var(--mid);
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 2px;
}

.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201, 169, 110, 0.2);
    font-size: 100px;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.gallery-thumb {
    width: 72px;
    height: 72px;
    background: var(--mid);
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 1px;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb.active {
    border-color: var(--gold);
}

.product-detail-brand {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.product-detail-name {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stars-row {
    color: var(--gold);
    font-size: 14px;
}

.reviews-link {
    font-size: 12px;
    color: var(--smoke);
    cursor: pointer;
}

.product-badge-inline {
    background: var(--gold);
    color: var(--obsidian);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 10px;
    text-transform: uppercase;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.current-price {
    font-family: var(--serif);
    font-size: 32px;
    color: var(--gold);
    font-weight: 400;
}

.old-price {
    font-size: 18px;
    color: var(--smoke);
    text-decoration: line-through;
}

.discount-pill {
    background: rgba(76, 175, 80, 0.15);
    color: #81C784;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-detail-desc {
    font-size: 13px;
    color: var(--smoke);
    line-height: 1.9;
    margin-bottom: 28px;
}

.fragrance-notes {
    margin-bottom: 24px;
}

.notes-group {
    margin-bottom: 16px;
}

.notes-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--ash);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.note-tag {
    font-size: 11px;
    padding: 5px 14px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--gold);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.perf-item {}

.perf-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--smoke);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.perf-dots {
    display: flex;
    gap: 5px;
}

.perf-dot {
    width: 12px;
    height: 4px;
    background: rgba(201, 169, 110, 0.2);
    border-radius: 2px;
}

.perf-dot.filled {
    background: var(--gold);
}

.perf-value {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
}

.size-selector {
    margin-bottom: 24px;
}

.selector-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--ash);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ash);
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 1px;
    font-family: var(--sans);
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.detail-spec {
    font-size: 13px;
    color: var(--smoke);
    margin-bottom: 8px;
}

.spec-label {
    font-weight: 600;
    color: var(--ash);
}

.stock-alert {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 1px;
    margin-bottom: 24px;
    display: inline-block;
}

.stock-alert.in {
    background: rgba(76, 175, 80, 0.1);
    color: #81C784;
}

.stock-alert.low {
    background: rgba(255, 152, 0, 0.1);
    color: #FFB74D;
}

.stock-alert.out {
    background: rgba(226, 75, 74, 0.1);
    color: #E57373;
}

.add-to-bag-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1px;
}

.qty-btn {
    background: var(--mid);
    border: none;
    color: var(--ash);
    width: 36px;
    height: 48px;
    cursor: pointer;
    font-size: 16px;
    font-family: var(--sans);
    transition: all 0.2s;
}

.qty-btn:hover {
    background: var(--gold);
    color: var(--obsidian);
}

.qty-display {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    min-width: 44px;
    text-align: center;
    line-height: 48px;
}

.btn-add-bag {
    flex: 1;
    height: 48px;
}

.btn-wishlist {
    background: var(--mid);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ash);
    width: 48px;
    height: 48px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 1px;
    transition: all 0.2s;
}

.btn-wishlist:hover,
.btn-wishlist.wishlisted {
    border-color: #E24B4A;
    color: #E24B4A;
    background: rgba(226, 75, 74, 0.05);
}

.wa-order-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #25D366;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--smoke);
    text-transform: uppercase;
}

.share-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ash);
    border-radius: 50%;
    transition: all 0.2s;
    cursor: pointer;
}

.share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.product-tabs {
    padding: 60px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tabs-header {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--smoke);
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--sans);
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: var(--ash);
}

.tab-btn.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-content {
    display: block;
}

.tab-content.hidden {
    display: none;
}

.product-full-desc {
    font-size: 14px;
    color: var(--smoke);
    line-height: 2;
    max-width: 700px;
}

.reviews-summary {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.reviews-avg {
    text-align: center;
}

.avg-number {
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 1px;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--obsidian);
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.review-date {
    font-size: 11px;
    color: var(--smoke);
    margin-left: auto;
}

.verified-badge {
    font-size: 10px;
    color: #4CAF50;
    margin-left: 8px;
}

.review-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.review-body {
    font-size: 13px;
    color: var(--smoke);
    line-height: 1.8;
}

.write-review {
    padding: 32px;
    background: var(--charcoal);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 1px;
}

.rating-select {
    display: flex;
    gap: 8px;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
    cursor: pointer;
}

.notes-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.notes-detail-col {
    background: var(--charcoal);
    padding: 24px;
    border-radius: 1px;
}

.notes-detail-col h4 {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notes-detail-col p {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 12px;
}

.notes-detail-col small {
    font-size: 11px;
    color: var(--smoke);
    line-height: 1.6;
}

.related-section {
    padding: 60px 80px;
    background: var(--charcoal);
}

/* ── CART ─────────────────────────────────────────────────── */
.cart-page {
    padding-top: 70px;
}

.page-hero-sm {
    padding: 60px 80px 30px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding: 30px 80px 80px;
}

.cart-page-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-page-img {
    width: 100px;
    height: 100px;
    background: var(--mid);
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 2px;
}

.cart-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smoke);
    font-size: 24px;
}

.cart-item-brand-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cart-item-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 6px;
}

.cart-item-variant {
    font-size: 11px;
    color: var(--smoke);
    margin-bottom: 12px;
}

.cart-item-price-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qty-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    min-width: 40px;
    text-align: center;
    line-height: 36px;
}

.cart-item-subtotal {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
}

.remove-item-btn {
    background: none;
    border: none;
    color: var(--smoke);
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s;
}

.remove-item-btn:hover {
    color: #E24B4A;
}

.cart-summary-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 32px;
    position: sticky;
    top: 90px;
    border-radius: 1px;
}

.coupon-section {
    margin-bottom: 24px;
}

.coupon-input-row {
    display: flex;
    gap: 0;
}

.coupon-field {
    border-radius: 1px 0 0 1px;
    border-right: none;
}

.coupon-btn {
    background: var(--gold);
    color: var(--obsidian);
    border: none;
    padding: 0 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 1px 1px 0;
    white-space: nowrap;
    font-family: var(--sans);
}

.summary-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    color: var(--ash);
}

.summary-row.total {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    border-bottom: none;
    padding-top: 16px;
    margin-top: 4px;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.empty-cart-page {
    text-align: center;
    padding: 120px 40px;
}

.empty-cart-page i {
    font-size: 80px;
    color: rgba(201, 169, 110, 0.2);
    margin-bottom: 24px;
    display: block;
}

.empty-cart-page h2 {
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 12px;
}

.empty-cart-page p {
    color: var(--smoke);
    margin-bottom: 32px;
}

/* ── CHECKOUT ─────────────────────────────────────────────── */
.checkout-page {
    padding-top: 70px;
}

.checkout-form-wrap {
    display: contents;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 30px 80px 80px;
}

.checkout-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 1px;
}

.checkout-section-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    color: #2C2218;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkout-fields-grid .full-width {
    grid-column: span 2;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-method-card {
    padding: 16px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    border-radius: 1px;
}

.payment-method-card:hover,
.payment-method-card.active {
    border-color: var(--gold);
    background: rgba(184, 134, 11, 0.06);
}

.sticky-summary {
    position: sticky;
    top: 90px;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 16px;
}

.order-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.order-item-img {
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.order-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.img-placeholder-sm {
    width: 100%;
    height: 100%;
    background: var(--mid);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smoke);
}

.item-qty-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--mid);
    color: var(--ash);
    font-size: 9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-item-details {
    flex: 1;
    min-width: 0;
}

.summary-divider {
    height: 1px;
    background: rgba(201, 169, 110, 0.15);
    margin: 16px 0;
}

/* ── SUCCESS PAGE ─────────────────────────────────────────── */
.success-page {
    padding: 120px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 32px;
}

.order-ref {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--gold);
    margin: 16px 0;
}

.success-summary {
    background: var(--charcoal);
    border: 1px solid rgba(201, 169, 110, 0.1);
    padding: 32px;
    margin: 32px 0;
    text-align: left;
    border-radius: 1px;
}

.success-item-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    color: var(--ash);
}

.success-item-row.total {
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    border-bottom: none;
    padding-top: 16px;
    margin-top: 8px;
    font-size: 15px;
}

.success-detail-row {
    display: flex;
    gap: 16px;
    font-size: 12px;
    margin-top: 12px;
    color: var(--smoke);
}

.success-detail-row span:first-child {
    color: var(--ash);
    font-weight: 600;
    width: 80px;
}

.success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* ── ORDER TRACKING ───────────────────────────────────────── */
.track-page {
    padding-top: 70px;
}

.track-form-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 40px;
}

.track-input-row {
    display: flex;
    gap: 0;
}

.track-input {
    flex: 1;
    border-radius: 1px 0 0 1px;
    border-right: none;
}

.track-detail-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 40px 80px;
}

.track-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 48px;
}

.track-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(201, 169, 110, 0.2);
}

.track-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.track-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    background: var(--dark);
    color: var(--smoke);
    transition: all 0.3s;
}

.track-step.done .track-dot {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--obsidian);
}

.track-step.active .track-dot {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
}

.track-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--smoke);
    text-transform: uppercase;
    text-align: center;
    max-width: 80px;
}

.track-step.done .track-label,
.track-step.active .track-label {
    color: var(--gold);
}

.track-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.track-info-card {
    background: var(--charcoal);
    border: 1px solid rgba(201, 169, 110, 0.1);
    padding: 24px;
    border-radius: 1px;
}

.track-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 12px;
}

.track-item-row {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
    background: #F8F5F0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--dark);
    border: 1px solid rgba(201, 169, 110, 0.08);
    padding: 32px;
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.testi-quote {
    font-family: var(--serif);
    font-size: 100px;
    color: rgba(201, 169, 110, 0.06);
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testi-stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testi-text {
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
    color: var(--ash);
    line-height: 1.8;
    margin-bottom: 12px;
}

.testi-product {
    font-size: 11px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--obsidian);
    flex-shrink: 0;
}

.testi-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.testi-location {
    font-size: 11px;
    color: var(--smoke);
}

/* ── NEWSLETTER ───────────────────────────────────────────── */
footer {
    background: #2C2218;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.footer-inner {
    padding: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--ash);
    font-size: 14px;
    border-radius: 1px;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.footer-col-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.contact-line i {
    color: var(--gold);
    font-size: 13px;
    margin-top: 1px;
    width: 16px;
}

.footer-newsletter {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 48px;
    margin-bottom: 48px;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 6px;
}

.newsletter-sub {
    font-size: 12px;
    color: var(--smoke);
}

.newsletter-form {
    display: flex;
    min-width: 380px;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.25);
    color: #FFFFFF;
    padding: 14px 20px;
    font-size: 13px;
    font-family: var(--sans);
    border-right: none;
    outline: none;
    border-radius: 1px 0 0 1px;
}

.newsletter-input:focus {
    border-color: var(--gold);
}

.newsletter-btn {
    background: var(--gold);
    color: var(--obsidian);
    border: none;
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 0 1px 1px 0;
    font-family: var(--sans);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.wa-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #25D366;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 1px;
    transition: all 0.2s;
}

.wa-order-btn:hover {
    background: rgba(37, 211, 102, 0.15);
}

/* ── PROMO / ABOUT ────────────────────────────────────────── */
.promo-section {
    padding: 80px;
    background: linear-gradient(135deg, #F0EBE3, #E5DDD4);
    border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.promo-content {
    max-width: 600px;
    margin: 0 auto;
}

.about-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark), var(--charcoal));
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.value-card {
    padding: 60px 40px;
    text-align: center;
    border-right: 1px solid rgba(201, 169, 110, 0.08);
}

.value-card:last-child {
    border-right: none;
}

.value-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.value-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 12px;
}

.value-text {
    font-size: 13px;
    color: var(--smoke);
    line-height: 1.9;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.contact-info {
    background: var(--gold);
    padding: 60px;
}

.contact-info-title {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 300;
    color: var(--obsidian);
    margin-bottom: 8px;
}

.contact-info-sub {
    font-size: 12px;
    color: rgba(10, 10, 10, 0.6);
    margin-bottom: 40px;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.ci-icon {
    background: rgba(10, 10, 10, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    border-radius: 1px;
}

.ci-text strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--obsidian);
    margin-bottom: 4px;
}

.ci-text span {
    font-size: 13px;
    color: rgba(10, 10, 10, 0.7);
}

.contact-form {
    background: var(--dark);
    padding: 60px;
}

/* ── AUTH ─────────────────────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    background: #FAF7F2;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    padding: 48px;
    border-radius: 1px;
}

.auth-logo {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 32px;
}

.auth-title {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 300;
    color: #2C2218;
    text-align: center;
    margin-bottom: 8px;
}

.auth-sub {
    font-size: 13px;
    color: #7A6A58;
    text-align: center;
    margin-bottom: 32px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.auth-divider span {
    font-size: 11px;
    color: var(--smoke);
}

.password-field {
    position: relative;
}

.password-field .form-input {
    padding-right: 48px;
}

.toggle-pass {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--smoke);
    cursor: pointer;
    font-size: 14px;
}

.remember-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--smoke);
    cursor: pointer;
}

.remember-label input {
    accent-color: var(--gold);
}

/* ── FORM ELEMENTS ────────────────────────────────────────── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #7A6A58;
    text-transform: uppercase;
}

.form-input {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #2C2218;
    padding: 12px 16px;
    font-size: 13px;
    font-family: var(--sans);
    border-radius: var(--radius);
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.form-input::placeholder {
    color: #A89880;
}

.form-input.is-invalid {
    border-color: #E57373;
}

select.form-input {
    cursor: pointer;
}

textarea.form-input {
    resize: vertical;
}

.field-error {
    font-size: 11px;
    color: #E57373;
}

/* ── FLASH / TOAST ────────────────────────────────────────── */
.flash-msg {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 24px;
    font-size: 13px;
    margin: 0;
    position: relative;
    z-index: 50;
}

.flash-success {
    background: rgba(76, 175, 80, 0.08);
    border-left: 3px solid #4CAF50;
    color: #2E7D32;
}

.flash-error {
    background: rgba(226, 75, 74, 0.08);
    border-left: 3px solid #E24B4A;
    color: #C62828;
}

.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #FFFFFF;
    border: 1px solid rgba(184, 134, 11, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 14px 20px;
    font-size: 13px;
    color: #4A3F35;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 1px;
    max-width: 360px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success .fa-check-circle {
    color: var(--gold);
}

.toast-error .fa-exclamation-circle {
    color: #E57373;
}

/* ── CART DRAWER ──────────────────────────────────────────── */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -440px;
    width: 440px;
    height: 100vh;
    background: #FFFFFF;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.drawer-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    color: #2C2218;
}

.drawer-close {
    background: none;
    border: none;
    color: #7A6A58;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.drawer-close:hover {
    color: var(--gold);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 28px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 60px 20px;
    text-align: center;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    background: #F0EBE3;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 1px;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-brand {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.cart-item-name {
    font-family: var(--serif);
    font-size: 16px;
    color: #2C2218;
    margin-bottom: 6px;
}

.cart-item-variant {
    font-size: 11px;
    color: var(--smoke);
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--smoke);
    cursor: pointer;
    font-size: 13px;
    transition: color 0.2s;
    padding: 2px 6px;
}

.remove-btn:hover {
    color: #E24B4A;
}

.drawer-footer {
    padding: 20px 28px 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.cart-coupon {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
}

.coupon-input {
    flex: 1;
    background: #F8F5F0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #2C2218;
    padding: 10px 14px;
    font-size: 12px;
    font-family: var(--sans);
    outline: none;
    border-radius: 1px 0 0 1px;
    border-right: none;
}

.coupon-input:focus {
    border-color: var(--gold);
}

.coupon-btn {
    background: var(--gold);
    color: var(--obsidian);
    border: none;
    padding: 0 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 1px 1px 0;
    font-family: var(--sans);
}

.cart-totals {
    margin-bottom: 16px;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 12px;
    color: #4A3F35;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.total-row {
    font-size: 16px !important;
    font-weight: 600;
    color: var(--white) !important;
    border-bottom: none !important;
    padding-top: 12px !important;
}

.total-amount {
    color: var(--gold) !important;
    font-family: var(--serif);
    font-size: 20px !important;
}

.checkout-btn {
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    display: block;
}

.discount-row {
    color: #4CAF50 !important;
}

/* ── ADMIN BASE ───────────────────────────────────────────── */
.admin-body {
    background: #F0EBE3;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 240px;
    height: 100vh;
    background: #2C2218;
    border-right: 1px solid rgba(184, 134, 11, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    /* overflow-y: auto; */
    z-index: 100;
}

/* 
.admin-sidebar {
    height: 100vh;
    display: flex;
    flex-direction: column;
} */

.admin-nav {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.admin-logo-wrap {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
}

.admin-logo {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--gold-light);
    text-decoration: none;
    display: block;
}

.admin-logo-sub {
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-top: 4px;
}

/* .admin-nav {
    padding: 12px 0;
} */

.nav-section {
    padding: 14px 24px 8px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 24px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    position: relative;
    border: none;
    background: none;
    font-family: var(--sans);
    width: 100%;
}

.nav-item:hover,
.nav-item.active {
    color: var(--gold-light);
    background: rgba(184, 134, 11, 0.12);
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.nav-icon {
    width: 18px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

.nav-badge {
    background: var(--gold);
    color: var(--obsidian);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: auto;
}

.admin-main {
    margin-left: 240px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #F0EBE3;
}

.admin-topbar {
    height: 60px;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--ash);
    font-size: 18px;
    cursor: pointer;
    display: none;
}

.topbar-title {
    flex: 1;
    font-size: 14px;
    color: #4A3F35;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-role {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    background: rgba(201, 169, 110, 0.1);
    padding: 4px 10px;
    border-radius: 10px;
}

.admin-content {
    padding: 32px;
    flex: 1;
    background: #F0EBE3;
}

.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.admin-page-title {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    color: #2C2218;
}

.admin-page-sub {
    font-size: 12px;
    color: #7A6A58;
    margin-top: 4px;
}

/* ── ADMIN CARDS ──────────────────────────────────────────── */
.admin-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-bottom: 24px;
    border-radius: 1px;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.admin-card-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 300;
    color: #2C2218;
}

.admin-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stats-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 24px;
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.stat-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.stat-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stat-card-value {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    color: #2C2218;
    line-height: 1;
}

.stat-card-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #7A6A58;
    text-transform: uppercase;
    margin-top: 6px;
}

.stat-card-change {
    font-size: 11px;
    font-weight: 600;
}

.stat-card-change.positive {
    color: #81C784;
}

.stat-card-change.warn {
    color: #FFB74D;
}

/* ── ADMIN TABLE ──────────────────────────────────────────── */
.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #7A6A58;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #F8F5F0;
    white-space: nowrap;
}

.admin-table td {
    padding: 14px 16px;
    font-size: 12px;
    color: #4A3F35;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(184, 134, 11, 0.04);
}

.tbl-actions {
    display: flex;
    gap: 6px;
}

.tbl-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--gold);
    padding: 5px 12px;
    cursor: pointer;
    font-size: 10px;
    letter-spacing: 1px;
    border-radius: 1px;
    text-decoration: none;
    transition: all 0.2s;
    font-family: var(--sans);
}

.tbl-btn:hover {
    background: rgba(201, 169, 110, 0.1);
}

.tbl-btn-danger {
    border-color: rgba(226, 75, 74, 0.3);
    color: #E57373;
}

.tbl-btn-danger:hover {
    background: rgba(226, 75, 74, 0.1);
}

.tbl-btn-wa {
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.tbl-btn-wa:hover {
    background: rgba(37, 211, 102, 0.1);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 20px;
}

.status-pending {
    background: rgba(255, 152, 0, 0.15);
    color: #FFB74D;
}

.status-confirmed {
    background: rgba(100, 181, 246, 0.15);
    color: #64B5F6;
}

.status-processing {
    background: rgba(201, 169, 110, 0.15);
    color: var(--gold);
}

.status-out_for_delivery {
    background: rgba(186, 104, 200, 0.15);
    color: #CE93D8;
}

.status-delivered {
    background: rgba(76, 175, 80, 0.15);
    color: #81C784;
}

.status-cancelled {
    background: rgba(226, 75, 74, 0.15);
    color: #E57373;
}

.status-refunded {
    background: rgba(158, 158, 158, 0.15);
    color: #9E9E9E;
}

.type-badge {
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 10px;
}

.type-perfume {
    background: rgba(201, 169, 110, 0.15);
    color: var(--gold);
}

.type-abaya {
    background: rgba(186, 104, 200, 0.15);
    color: #CE93D8;
}

.toggle-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.toggle-on {
    background: rgba(76, 175, 80, 0.15);
    color: #81C784;
}

.toggle-off {
    background: rgba(255, 255, 255, 0.05);
    color: var(--smoke);
}

/* ── ADMIN FORM ───────────────────────────────────────────── */
.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

.admin-form-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.admin-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.form-row-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: var(--ash);
}

.toggle-switch {
    position: relative;
    width: 40px;
    height: 22px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.2s;
}

input:checked+.toggle-switch {
    background: var(--gold);
}

input:checked+.toggle-switch::after {
    transform: translateX(18px);
}

input[type=checkbox] {
    display: none;
}

.upload-zone {
    border: 2px dashed rgba(201, 169, 110, 0.2);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    border-radius: 1px;
    transition: border-color 0.2s;
    color: var(--smoke);
    font-size: 13px;
}

.upload-zone:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.upload-zone i {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.current-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 1px;
    margin-bottom: 12px;
}

.gallery-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.gallery-thumb-item {
    position: relative;
}

.gallery-thumb-item img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 1px;
}

.gallery-del-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-del-btn:hover {
    background: #E24B4A;
}

.filter-bar-admin {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.admin-search-input {
    flex: 1;
    min-width: 200px;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 10px 16px;
    font-size: 12px;
    font-family: var(--sans);
    border-radius: 1px;
    outline: none;
}

.admin-search-input:focus {
    border-color: var(--gold);
}

.admin-select {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ash);
    padding: 10px 14px;
    font-size: 12px;
    font-family: var(--sans);
    border-radius: 1px;
    outline: none;
    cursor: pointer;
}

.status-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    margin-bottom: 20px;
    overflow-x: auto;
}

.status-tab {
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--smoke);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.status-tab:hover {
    color: var(--ash);
}

.status-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.tab-count {
    background: var(--gold);
    color: var(--obsidian);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 6px;
}

.chart-container {
    padding: 16px 0 0;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 1px;
    margin-bottom: 8px;
    font-size: 12px;
}

.alert-gold {
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--gold);
}

.alert-blue {
    background: rgba(100, 181, 246, 0.08);
    border: 1px solid rgba(100, 181, 246, 0.2);
    color: #64B5F6;
}

.alert-red {
    background: rgba(226, 75, 74, 0.08);
    border: 1px solid rgba(226, 75, 74, 0.2);
    color: #E57373;
}

.alert-action {
    margin-left: auto;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    padding: 4px 10px;
    border: 1px solid currentColor;
    border-radius: 1px;
}

.order-detail-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.detail-info-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 12px;
}

/* ── ACCOUNT ──────────────────────────────────────────────── */
.account-page {
    padding-top: 70px;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
.animate-up {
    opacity: 0;
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1.0s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
    .product-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 60px 40px;
    }

    .hero-title {
        font-size: 60px;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
        height: auto;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .admin-sidebar.open {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
    }

    .sidebar-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 24px;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-stats {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .product-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        padding: 20px 24px;
    }

    .checkout-fields-grid {
        grid-template-columns: 1fr;
    }

    .checkout-fields-grid .full-width {
        grid-column: span 1;
    }

    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cart-layout {
        grid-template-columns: 1fr;
        padding: 20px 24px;
    }

    .notes-detail-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        padding: 40px 24px;
    }

    .newsletter-form {
        min-width: auto;
    }

    .breadcrumb-nav {
        padding: 16px 24px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-two-col {
        grid-template-columns: 1fr;
    }

    .track-info-grid {
        grid-template-columns: 1fr;
    }

    .admin-content {
        padding: 20px;
    }

    .abaya-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 38px;
    }

    .section-title {
        font-size: 36px;
    }

    .product-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-ctas {
        flex-direction: column;
    }

    .cart-drawer {
        width: 100%;
        right: -100%;
    }

    .auth-card {
        padding: 32px 24px;
    }
}

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE — PREMIUM REDESIGN
   ══════════════════════════════════════════════════════════════ */

/* ── HP HERO ─────────────────────────────────────────────────── */
.hp-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #FAF7F2;
}

.hp-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(240, 235, 220, 0.9) 0%, #FAF7F2 65%);
}

.hp-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hp-hero-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.18), transparent);
    top: -150px;
    right: -150px;
}

.hp-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 105, 20, 0.12), transparent);
    bottom: 0;
    left: 10%;
}

.hp-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 80px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hp-hero-title {
    font-family: var(--serif);
    font-size: 72px;
    font-weight: 300;
    color: #2C2218;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hp-hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hp-hero-sub {
    font-size: 14px;
    color: #7A6A58;
    line-height: 1.9;
    max-width: 480px;
    margin-bottom: 36px;
}

.hp-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hp-hero-ctas .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hp-hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #4A3F35;
}

.hp-trust-item i {
    color: var(--gold);
    font-size: 14px;
}

.hp-trust-sep {
    width: 1px;
    height: 16px;
    background: rgba(0, 0, 0, 0.15);
}

/* Hero right side */
.hp-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hp-hero-img-wrap {
    position: relative;
    width: 440px;
    height: 440px;
}

.hp-hero-img-main {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(184, 134, 11, 0.04));
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 140px;
    color: rgba(201, 169, 110, 0.2);
    position: relative;
    overflow: hidden;
}

.hp-hero-img-main::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--gold) 0deg, transparent 60deg, transparent 300deg, var(--gold) 360deg);
    opacity: 0.15;
    animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

/* Floating stat cards */
.hp-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(184, 134, 11, 0.18);
    backdrop-filter: blur(16px);
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hp-float-card-1 {
    top: 30px;
    right: -30px;
    animation: floatUp 3s ease-in-out infinite;
}

.hp-float-card-2 {
    bottom: 80px;
    right: -50px;
    animation: floatUp 3s ease-in-out 1s infinite;
}

.hp-float-card-3 {
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    animation: floatUp 3s ease-in-out 0.5s infinite;
}

.hp-float-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hp-float-num {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: #2C2218;
    line-height: 1;
}

.hp-float-label {
    font-size: 10px;
    color: var(--smoke);
    letter-spacing: 1px;
    margin-top: 2px;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.hp-float-card-3 {
    animation-name: floatSide;
}

@keyframes floatSide {

    0%,
    100% {
        transform: translateY(-50%) translateX(0)
    }

    50% {
        transform: translateY(-50%) translateX(6px)
    }
}

/* Scroll hint */
.hp-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hp-scroll-hint span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--smoke);
}

.hp-scroll-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: scrollBounce 1.5s ease infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1
    }

    50% {
        transform: translateY(10px);
        opacity: 0.3
    }
}

/* ── ANNOUNCE STRIP ───────────────────────────────────────────── */
.hp-announce {
    background: var(--gold);
    overflow: hidden;
    padding: 10px 0;
}

.hp-announce-inner {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
    width: max-content;
}

.hp-announce-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--obsidian);
    padding: 0 32px;
}

.hp-announce-item i {
    font-size: 10px;
}

.hp-announce-sep {
    color: rgba(10, 10, 10, 0.3);
    font-size: 18px;
    padding: 0 4px;
}

.hp-announce-link {
    color: var(--obsidian);
    text-decoration: underline;
    font-weight: 700;
    margin-left: 6px;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── SECTIONS ─────────────────────────────────────────────────── */
.hp-section {
    padding: 80px;
}

.hp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 20px;
}

.hp-section-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.hp-section-title {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 300;
    color: #2C2218;
    line-height: 1.15;
}

.hp-section-title span {
    font-style: italic;
    color: var(--gold);
}

.hp-section-sub {
    font-size: 13px;
    color: #7A6A58;
    margin-top: 8px;
    max-width: 460px;
    line-height: 1.8;
}

.hp-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(201, 169, 110, 0.3);
    padding: 10px 20px;
    border-radius: 1px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.hp-view-all:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: var(--gold);
}

/* ── CATEGORY SHORTCUTS ───────────────────────────────────────── */
.hp-cats {
    padding: 0 80px 80px;
}

.hp-cats-inner>.hp-section-tag {
    margin-bottom: 8px;
}

.hp-cats-inner>.hp-section-title {
    margin-bottom: 32px;
}

.hp-cats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.hp-cat-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s;
    display: block;
}

.hp-cat-card:hover,
.hp-cat-active {
    background: var(--gold);
    border-color: var(--gold);
}

.hp-cat-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 14px;
    transition: color 0.2s;
}

.hp-cat-card:hover .hp-cat-icon,
.hp-cat-active .hp-cat-icon {
    color: var(--obsidian);
}

.hp-cat-name {
    font-size: 13px;
    font-weight: 600;
    color: #2C2218;
    margin-bottom: 6px;
    transition: color 0.2s;
}

.hp-cat-card:hover .hp-cat-name,
.hp-cat-active .hp-cat-name {
    color: var(--obsidian);
}

.hp-cat-count {
    font-size: 11px;
    color: var(--smoke);
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.hp-cat-card:hover .hp-cat-count,
.hp-cat-active .hp-cat-count {
    color: rgba(10, 10, 10, 0.6);
}

/* ── TAB BAR ──────────────────────────────────────────────────── */
.hp-tab-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 4px;
    background: #F0EBE3;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    width: fit-content;
}

.hp-tab {
    background: transparent;
    border: none;
    color: #7A6A58;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 20px;
    cursor: pointer;
    border-radius: 2px;
    font-family: var(--sans);
    transition: all 0.2s;
}

.hp-tab:hover {
    color: var(--ash);
}

.hp-tab.active {
    background: var(--gold);
    color: var(--obsidian);
}

/* ── PRODUCT CARDS (HP) ───────────────────────────────────────── */
.hp-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hp-product-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.hp-product-card:hover {
    border-color: rgba(184, 134, 11, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.hp-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    background: var(--gold);
    color: var(--obsidian);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

.hp-product-sale {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    background: #E24B4A;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 2px;
}

.hp-product-img-link {
    display: block;
}

.hp-product-img {
    height: 240px;
    background: #F0EBE3;
    position: relative;
    overflow: hidden;
}

.hp-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.hp-product-card:hover .hp-product-img img {
    transform: scale(1.06);
}

.hp-product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(184, 134, 11, 0.15);
}

.hp-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.hp-product-card:hover .hp-product-overlay {
    opacity: 1;
}

.hp-overlay-btn {
    background: var(--gold);
    color: var(--obsidian);
    border: none;
    padding: 10px 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    font-family: var(--sans);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.hp-overlay-btn:hover {
    background: var(--gold-light);
}

.hp-overlay-wish {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.hp-overlay-wish:hover {
    background: #E24B4A;
    border-color: #E24B4A;
}

.hp-product-info {
    padding: 18px;
}

.hp-product-brand {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hp-product-name {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
    color: #2C2218;
    margin-bottom: 8px;
    line-height: 1.3;
}

.hp-product-name a {
    color: inherit;
    text-decoration: none;
}

.hp-product-name a:hover {
    color: var(--gold);
}

.hp-product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}

.hp-product-rating i {
    font-size: 11px;
    color: var(--gold);
}

.hp-product-rating span {
    font-size: 11px;
    color: var(--smoke);
    margin-left: 4px;
}

.hp-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hp-price-old {
    font-size: 11px;
    color: var(--smoke);
    text-decoration: line-through;
    display: block;
}

.hp-price-now {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
}

.hp-add-btn {
    width: 36px;
    height: 36px;
    background: var(--gold);
    border: none;
    color: var(--obsidian);
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.hp-add-btn:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}

/* ── DUAL PROMO BANNERS ───────────────────────────────────────── */
.hp-promo-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.hp-promo-banner {
    padding: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 280px;
}

.hp-promo-dark {
    background: linear-gradient(135deg, #2C2218, #3D2E1E);
    border-top: 1px solid rgba(184, 134, 11, 0.1);
}

.hp-promo-light {
    background: var(--gold);
}

.hp-promo-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.hp-promo-tag {
    display: inline-block;
    background: rgba(201, 169, 110, 0.15);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.hp-promo-title {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.hp-promo-sub {
    font-size: 13px;
    color: var(--smoke);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 300px;
}

.hp-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--obsidian);
    padding: 12px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
}

.hp-promo-btn:hover {
    background: var(--gold-light);
    transform: translateX(4px);
}

.hp-promo-visual {
    font-size: 120px;
    color: rgba(201, 169, 110, 0.08);
    flex-shrink: 0;
    line-height: 1;
}

/* ── BRANDS ───────────────────────────────────────────────────── */
.hp-brands-section {
    background: #FAF7F2;
}

.hp-brands-row {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.hp-brand-pill {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    background: #FFFFFF;
    text-decoration: none;
    transition: background 0.2s;
}

.hp-brand-pill:hover {
    background: #F8F5F0;
}

.hp-brand-logo {
    height: 36px;
    width: 80px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.2s;
}

.hp-brand-pill:hover .hp-brand-logo {
    filter: brightness(1);
}

.hp-brand-initials {
    width: 52px;
    height: 36px;
    background: rgba(184, 134, 11, 0.08);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
}

.hp-brand-info {
    flex: 1;
}

.hp-brand-name {
    font-size: 14px;
    font-weight: 600;
    color: #2C2218;
}

.hp-brand-origin {
    font-size: 11px;
    color: #7A6A58;
    margin-top: 2px;
}

.hp-brand-arrow {
    color: var(--smoke);
    font-size: 12px;
    transition: color 0.2s;
}

.hp-brand-pill:hover .hp-brand-arrow {
    color: var(--gold);
}

/* ── ABAYA MOSAIC ─────────────────────────────────────────────── */
.hp-abaya-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}

.hp-abaya-tile {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #E5DDD4;
    text-decoration: none;
    display: block;
}

.hp-abaya-tile-lg {
    grid-column: span 2;
    grid-row: span 2;
}

.hp-abaya-tile-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.hp-abaya-tile-lg .hp-abaya-tile-img {
    height: 460px;
}

.hp-abaya-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.hp-abaya-tile:hover .hp-abaya-tile-img img {
    transform: scale(1.06);
}

.hp-abaya-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(184, 134, 11, 0.15);
}

.hp-abaya-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    background: var(--gold);
    color: var(--obsidian);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
}

.hp-abaya-tile-info {
    padding: 14px 16px;
    background: #FFFFFF;
}

.hp-abaya-tile-name {
    font-family: var(--serif);
    font-size: 16px;
    color: #2C2218;
    margin-bottom: 4px;
}

.hp-abaya-tile-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
}

.hp-abaya-tile-hover {
    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;
}

.hp-abaya-tile:hover .hp-abaya-tile-hover {
    opacity: 1;
}

.hp-abaya-tile-hover span {
    background: var(--gold);
    color: var(--obsidian);
    padding: 12px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ── WIDE PROMO ───────────────────────────────────────────────── */
.hp-wide-promo {
    position: relative;
    overflow: hidden;
    padding: 80px;
    background: linear-gradient(135deg, #2C2218, #3D2E1E);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hp-wide-promo-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
}

.hp-wide-promo-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hp-wide-promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid rgba(201, 169, 110, 0.25);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hp-wide-promo-title {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}

.hp-wide-promo-title span {
    color: var(--gold);
}

.hp-wide-promo-sub {
    font-size: 14px;
    color: var(--smoke);
    line-height: 1.9;
    margin-bottom: 32px;
}

.hp-wide-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    padding: 14px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
}

.hp-wide-wa-btn:hover {
    background: rgba(37, 211, 102, 0.2);
}

.hp-wide-promo-deco {
    position: relative;
    z-index: 2;
    font-size: 200px;
    color: rgba(201, 169, 110, 0.06);
    line-height: 1;
    flex-shrink: 0;
}

/* ── TESTIMONIALS (HP) ────────────────────────────────────────── */
.hp-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hp-testi-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 32px;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.hp-testi-card:hover {
    border-color: rgba(201, 169, 110, 0.35);
}

.hp-testi-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.hp-testi-stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
}

.hp-testi-quote-icon {
    color: rgba(201, 169, 110, 0.2);
    font-size: 28px;
}

.hp-testi-text {
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
    color: #4A3F35;
    line-height: 1.85;
    margin-bottom: 16px;
}

.hp-testi-product {
    font-size: 11px;
    color: #4CAF50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hp-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--obsidian);
    flex-shrink: 0;
}

.hp-testi-name {
    font-size: 13px;
    font-weight: 600;
    color: #2C2218;
}

.hp-testi-location {
    font-size: 11px;
    color: var(--smoke);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── NEWSLETTER ───────────────────────────────────────────────── */
.hp-newsletter {
    background: linear-gradient(135deg, #F0EBE3, #FAF7F2);
    border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.hp-newsletter-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px;
}

.hp-newsletter-title {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 300;
    color: #2C2218;
    line-height: 1.25;
    margin-bottom: 12px;
}

.hp-newsletter-sub {
    font-size: 13px;
    color: #7A6A58;
    line-height: 1.9;
    margin-bottom: 28px;
}

.hp-newsletter-form {
    margin-bottom: 28px;
}

.hp-newsletter-input-wrap {
    display: flex;
    position: relative;
}

.hp-nl-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--smoke);
    font-size: 14px;
    z-index: 1;
}

.hp-newsletter-input {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid rgba(184, 134, 11, 0.25);
    color: #2C2218;
    padding: 14px 16px 14px 44px;
    font-size: 13px;
    font-family: var(--sans);
    border-radius: 2px 0 0 2px;
    border-right: none;
    outline: none;
    transition: border-color 0.2s;
}

.hp-newsletter-input:focus {
    border-color: var(--gold);
}

.hp-newsletter-input::placeholder {
    color: var(--smoke);
}

.hp-newsletter-btn {
    background: var(--gold);
    color: var(--obsidian);
    border: none;
    padding: 14px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
    font-family: var(--sans);
    white-space: nowrap;
    transition: background 0.2s;
}

.hp-newsletter-btn:hover {
    background: var(--gold-light);
}

.hp-social-row {
    display: flex;
    gap: 10px;
}

.hp-social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ash);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}

.hp-social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.06);
}

.hp-social-wa {
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.hp-social-wa:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

/* Right deco */
.hp-newsletter-right {
    position: relative;
    height: 280px;
}

.hp-nl-deco-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(184, 134, 11, 0.18);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--ash);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hp-nl-deco-card i {
    color: var(--gold);
    font-size: 18px;
}

.hp-nl-deco-card {
    color: #4A3F35;
}

.hp-nl-card-1 {
    top: 10px;
    left: 20px;
    animation: floatUp 3s ease-in-out infinite;
}

.hp-nl-card-2 {
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    animation: floatUp 3s ease-in-out 0.8s infinite;
}

.hp-nl-card-3 {
    bottom: 10px;
    left: 10px;
    animation: floatUp 3s ease-in-out 1.6s infinite;
}

.hp-nl-deco-number {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1.1;
    text-align: center;
}

.hp-nl-deco-number small {
    font-size: 13px;
    color: var(--smoke);
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ── FEATURES ROW ─────────────────────────────────────────────── */
.hp-features {
    padding: 36px 80px;
    background: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.04);
}

.hp-features-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hp-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.hp-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.hp-feature-title {
    font-size: 13px;
    font-weight: 600;
    color: #2C2218;
    margin-bottom: 3px;
}

.hp-feature-sub {
    font-size: 11px;
    color: var(--smoke);
}

.hp-feature-sep {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media(max-width:1200px) {
    .hp-hero-inner {
        grid-template-columns: 1fr;
    }

    .hp-hero-right {
        display: none;
    }

    .hp-hero-title {
        font-size: 56px;
    }

    .hp-cats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hp-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hp-abaya-mosaic {
        grid-template-columns: repeat(3, 1fr);
    }

    .hp-abaya-tile-lg {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hp-abaya-tile-lg .hp-abaya-tile-img {
        height: 220px;
    }

    .hp-brands-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }
}

@media(max-width:1024px) {

    .hp-section,
    .hp-cats,
    .hp-newsletter-inner,
    .hp-features,
    .hp-promo-banner,
    .hp-wide-promo {
        padding: 60px 40px;
    }

    .hp-hero-inner {
        padding: 100px 40px 60px;
    }

    .hp-newsletter-inner {
        grid-template-columns: 1fr;
    }

    .hp-newsletter-right {
        display: none;
    }

    .hp-testi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-features-grid {
        flex-wrap: wrap;
        gap: 24px;
    }

    .hp-feature-sep {
        display: none;
    }

    .hp-promo-banners {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .hp-hero-title {
        font-size: 42px;
    }

    .hp-hero-inner {
        padding: 90px 24px 60px;
    }

    .hp-section,
    .hp-cats,
    .hp-features,
    .hp-wide-promo {
        padding: 48px 24px;
    }

    .hp-newsletter-inner {
        padding: 48px 24px;
    }

    .hp-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hp-cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hp-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hp-abaya-mosaic {
        grid-template-columns: 1fr 1fr;
    }

    .hp-testi-grid {
        grid-template-columns: 1fr;
    }

    .hp-brands-row {
        grid-template-columns: 1fr;
    }

    .hp-wide-promo-title {
        font-size: 38px;
    }

    .hp-wide-promo-deco {
        display: none;
    }

    .hp-promo-banner {
        padding: 40px 24px;
    }

    .hp-promo-visual {
        display: none;
    }

    .hp-hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hp-trust-sep {
        display: none;
    }
}

@media(max-width:480px) {
    .hp-products-grid {
        grid-template-columns: 1fr;
    }

    .hp-abaya-mosaic {
        grid-template-columns: 1fr;
    }

    .hp-cats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-section-title {
        font-size: 30px;
    }

    .hp-hero-title {
        font-size: 36px;
    }

    .hp-newsletter-input-wrap {
        flex-direction: column;
    }

    .hp-newsletter-input {
        border-radius: 2px;
        border-right: 1px solid rgba(201, 169, 110, 0.2);
    }

    .hp-newsletter-btn {
        border-radius: 2px;
        margin-top: 8px;
    }

    .hp-tab-bar {
        width: 100%;
    }
}