/**
 * Kashvi Pearls & Jewellers - Premium Luxury CSS
 * Inspired by Rainbow Rang premium jewellery aesthetic
 */

/* ===== CSS Variables ===== */
:root {
    --pearl-white: #FDFBF7;
    --champagne-gold: #C5A467;
    --gold-dark: #A8893A;
    --gold-light: #E8D5A3;
    --soft-beige: #F5F0E8;
    --cream: #FBF8F1;
    --luxury-maroon: #7B2D3B;
    --maroon-light: #9B3D4B;
    --charcoal: #1A1A1A;
    --text-dark: #2D2D2D;
    --text-medium: #5A5A5A;
    --text-light: #8A8A8A;
    --border-light: #E8E0D4;
    --border-lighter: #F0EBE3;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 4px 20px rgba(197,164,103,0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--pearl-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: 0;
}
@media (max-width: 991px) {
    body { padding-bottom: 65px; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text-dark); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--champagne-gold); }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; color: var(--charcoal); }

.section-heading {
    text-align: center;
    margin-bottom: 48px;
}
.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.section-heading .heading-line {
    width: 60px;
    height: 2px;
    background: var(--champagne-gold);
    margin: 12px auto 0;
    display: block;
}
.section-heading p {
    color: var(--text-light);
    font-size: 15px;
    margin-top: 10px;
}

/* ===== Announcement Bar ===== */
.announcement-bar {
    background: var(--charcoal);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    overflow: hidden;
    height: 38px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}
.announcement-track {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}
.announcement-slide {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 40px;
    flex-shrink: 0;
}
.announcement-slide i { color: var(--champagne-gold); font-size: 14px; }

.announcement-slide::after {
    content: '•';
    margin-left: 40px;
    color: var(--gold-dark);
    opacity: 0.4;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Header ===== */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-lighter);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}
.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    line-height: 1.1;
}
.header-logo:hover { color: var(--charcoal); }
.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 1px;
}
.logo-sub {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    color: var(--champagne-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.header-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    padding: 6px 0;
    position: relative;
    text-transform: uppercase;
    background: none;
    border: none;
}
.header-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--champagne-gold);
    transition: var(--transition);
}
.header-nav .nav-link:hover::after,
.header-nav .nav-link.active::after { width: 100%; }
.header-nav .nav-link:hover { color: var(--champagne-gold); }
.header-nav .nav-link.active { color: var(--champagne-gold); }
.header-nav .nav-link i { font-size: 10px; margin-left: 3px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    padding: 12px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-lighter);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu-custom a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    color: var(--text-medium);
    transition: var(--transition-fast);
}
.dropdown-menu-custom a:hover {
    background: var(--soft-beige);
    color: var(--champagne-gold);
    padding-left: 28px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 18px;
    position: relative;
    transition: var(--transition-fast);
}
.header-icon-btn:hover {
    background: var(--soft-beige);
    color: var(--champagne-gold);
}
.badge-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--luxury-maroon);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
}
.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}
.search-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.search-form-overlay {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}
.search-input-overlay {
    flex: 1;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
    background: var(--cream);
}
.search-input-overlay:focus { border-color: var(--champagne-gold); background: var(--white); }
.search-submit-overlay, .search-close-overlay {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-fast);
}
.search-submit-overlay { background: var(--champagne-gold); color: var(--white); }
.search-submit-overlay:hover { background: var(--gold-dark); }
.search-close-overlay { background: var(--soft-beige); color: var(--text-dark); }

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2001;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-lighter);
}
.mobile-menu-header .logo-text { font-size: 24px; }
.mobile-menu-close {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--soft-beige);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.mobile-menu-body { flex: 1; padding: 12px 0; }
.mobile-nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-lighter);
    transition: var(--transition-fast);
}
.mobile-nav-link:hover { background: var(--soft-beige); color: var(--champagne-gold); padding-left: 30px; }
.mobile-menu-footer { padding: 20px 24px; }
.btn-whatsapp-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: var(--white) !important;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
}
.btn-whatsapp-mobile:hover { background: #1DA851; color: var(--white) !important; }

/* ===== Category Strip (Above Hero) ===== */
.category-strip {
    background: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-lighter);
}
.category-strip-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
}
.category-strip-scroll::-webkit-scrollbar { display: none; }
.category-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    flex-shrink: 0;
    transition: var(--transition);
}
.category-strip-item:hover { color: var(--champagne-gold); transform: translateY(-3px); }
.category-strip-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid var(--border-light);
    background: var(--soft-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.category-strip-item:hover .category-strip-icon {
    border-color: var(--champagne-gold);
    box-shadow: 0 4px 16px rgba(197,164,103,0.25);
}
.category-strip-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.category-strip-icon i { font-size: 24px; color: var(--champagne-gold); }
.category-strip-item span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
@media (max-width: 768px) {
    .category-strip { padding: 12px 0; }
    .category-strip-scroll { justify-content: flex-start; gap: 20px; padding: 4px 16px; }
    .category-strip-icon { width: 58px; height: 58px; }
    .category-strip-item span { font-size: 10px; }
}

/* ===== Hero Banner (CSS-only gradient) ===== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
}
.hero-slider {
    position: relative;
    min-height: 480px;
}
@media (max-width: 768px) {
    .hero-slider { min-height: 380px; }
}
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; position: relative; }

/* Unique gradient for each slide */
.hero-slide-1 { background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 30%, #1a1a2e 60%, #0f0f1a 100%); }
.hero-slide-2 { background: linear-gradient(135deg, #2a1520 0%, #3d1b2d 30%, #2a1520 60%, #1a0f14 100%); }
.hero-slide-3 { background: linear-gradient(135deg, #1a2015 0%, #2d3d1b 30%, #1a2015 60%, #0f1a0a 100%); }

/* Decorative elements on hero */
.hero-slide-decor {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 20% 50%, var(--champagne-gold) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, var(--gold-light) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, var(--champagne-gold) 0%, transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 20px 50px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-content .hero-label {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--champagne-gold);
    margin-bottom: 20px;
    font-weight: 500;
    background: rgba(197,164,103,0.1);
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(197,164,103,0.2);
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero-content .hero-tagline {
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 8px;
    font-weight: 400;
}
.hero-content .hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
}
.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Trust bar below hero */
.hero-trust-bar {
    background: rgba(0,0,0,0.3);
    padding: 14px 0;
    position: relative;
    z-index: 5;
}
.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.trust-item i { font-size: 16px; color: var(--champagne-gold); }
@media (max-width: 768px) {
    .trust-items { gap: 16px; }
    .trust-item { font-size: 11px; }
    .trust-item i { font-size: 14px; }
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active { background: var(--champagne-gold); width: 28px; border-radius: 5px; }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 34px; }
    .hero-content .hero-tagline { font-size: 16px; }
    .hero-content { padding: 40px 20px 40px; }
    .hero-dots { bottom: 50px; }
}

/* ===== Promo Banner Grid ===== */
.promo-banner-strip {
    padding: 60px 0;
    background: var(--white);
}
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.promo-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: var(--white);
}
.promo-card-large {
    grid-row: 1 / 3;
    min-height: 420px;
}
.promo-card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}
.promo-card:hover .promo-card-bg { transform: scale(1.05); }
.promo-bg-1 { background: linear-gradient(135deg, #7B2D3B 0%, #4a1a24 50%, #2a0f14 100%); }
.promo-bg-2 { background: linear-gradient(135deg, #2d3b7b 0%, #1a244a 100%); }
.promo-bg-3 { background: linear-gradient(135deg, #3b7b2d 0%, #244a1a 100%); }
.promo-card-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}
.promo-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--champagne-gold);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}
.promo-card-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.promo-card-large .promo-card-content h3 { font-size: 28px; }
.promo-cta {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--champagne-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
@media (max-width: 768px) {
    .promo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .promo-card-large { grid-row: auto; min-height: 200px; }
    .promo-banner-strip { padding: 40px 0; }
}

/* ===== Buttons ===== */
.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--champagne-gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary-gold:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--champagne-gold);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline-gold:hover {
    background: var(--champagne-gold);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 48px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}
.btn-dark:hover {
    background: var(--champagne-gold);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* ===== Category Section ===== */
.categories-section {
    padding: 80px 0;
    background: var(--white);
}
.category-scroll {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 16px;
}
.category-card {
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    flex: 0 0 auto;
}
.category-card:hover { color: var(--champagne-gold); transform: translateY(-4px); }
.category-img-wrap {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto 14px;
    border: 2px solid var(--border-light);
    transition: var(--transition);
    background: var(--soft-beige);
}
.category-card:hover .category-img-wrap { border-color: var(--champagne-gold); box-shadow: var(--shadow-gold); }
.category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.category-card:hover .category-img-wrap img { transform: scale(1.1); }
.category-card .cat-name {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .categories-section { padding: 50px 0; }
    .category-scroll { gap: 20px; justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 0 20px; }
    .category-scroll::-webkit-scrollbar { display: none; }
    .category-img-wrap { width: 85px; height: 85px; }
    .section-heading h2 { font-size: 26px; }
    .section-heading { margin-bottom: 32px; }
}

/* ===== Product Cards ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
@media (max-width: 576px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-lighter);
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.product-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--soft-beige);
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.product-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.badge-discount { background: var(--luxury-maroon); color: var(--white); }
.badge-new { background: var(--champagne-gold); color: var(--white); }
.badge-bestseller { background: var(--charcoal); color: var(--white); }

.product-card-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    z-index: 2;
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}
.product-action-btn:hover { background: var(--champagne-gold); color: var(--white); }
.product-action-btn.wishlisted { color: var(--luxury-maroon); }

.product-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26,26,26,0.9);
    color: var(--white);
    text-align: center;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transform: translateY(100%);
    transition: var(--transition);
    border: none;
    width: 100%;
}
.product-card:hover .product-quick-add { transform: translateY(0); }
.product-quick-add:hover { background: var(--champagne-gold); }

.product-card-body {
    padding: 16px;
}
.product-card-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--champagne-gold);
    margin-bottom: 4px;
    font-weight: 500;
}
.product-card-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--champagne-gold); }

.product-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}
.star-rating { color: var(--champagne-gold); font-size: 12px; display: flex; gap: 1px; }
.rating-count { font-size: 12px; color: var(--text-light); }

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.price-current {
    font-size: 17px;
    font-weight: 700;
    color: var(--charcoal);
}
.price-compare {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}
.price-discount-tag {
    font-size: 12px;
    font-weight: 600;
    color: #2E7D32;
    background: #E8F5E9;
    padding: 2px 8px;
    border-radius: 4px;
}

@media (max-width: 576px) {
    .product-card-body { padding: 10px; }
    .product-card-title { font-size: 13px; }
    .price-current { font-size: 15px; }
    .product-card-actions { opacity: 1; transform: translateX(0); }
    .product-quick-add { transform: translateY(0); padding: 10px; font-size: 11px; }
}

/* ===== Best Sellers / Product Sections ===== */
.bestseller-section,
.new-arrivals-section,
.featured-section {
    padding: 80px 0;
}
.bestseller-section { background: var(--pearl-white); }
.new-arrivals-section { background: var(--cream); }

/* Product Slider */
.product-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px;
}
.product-slider::-webkit-scrollbar { display: none; }
.product-slider .product-card {
    min-width: 260px;
    max-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}
@media (max-width: 576px) {
    .product-slider .product-card { min-width: 170px; max-width: 200px; }
}

/* Slider Navigation */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}
.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1.5px solid var(--border-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: var(--transition-fast);
}
.slider-btn:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--champagne-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    border-bottom: 1px solid var(--champagne-gold);
    margin-top: 40px;
}
.view-all-link:hover { color: var(--gold-dark); gap: 12px; }

/* ===== Why Choose Us ===== */
.why-section {
    padding: 80px 0;
    background: var(--charcoal);
    color: var(--white);
}
.why-section .section-heading h2 { color: var(--white); }
.why-section .heading-line { background: var(--champagne-gold); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
    background: rgba(255,255,255,0.03);
}
.why-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--champagne-gold);
    transform: translateY(-4px);
}
.why-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--champagne-gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--white);
}
.why-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}
.why-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ===== Reviews ===== */
.reviews-section {
    padding: 80px 0;
    background: var(--cream);
}
.review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 991px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border-lighter);
    transition: var(--transition);
    height: 100%;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--champagne-gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-heading);
}
.review-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}
.review-stars { color: var(--champagne-gold); font-size: 13px; }
.review-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    font-style: italic;
}
.review-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #2E7D32;
    margin-top: 12px;
    font-weight: 500;
}

/* ===== Instagram Gallery ===== */
.instagram-section {
    padding: 80px 0;
    background: var(--white);
}
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}
@media (max-width: 768px) {
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
.insta-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    position: relative;
    cursor: pointer;
    background: var(--soft-beige);
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.insta-item:hover img { transform: scale(1.1); }
.insta-item::after {
    content: '\F437';
    font-family: 'bootstrap-icons';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
}
.insta-item:hover::after { opacity: 1; }

/* ===== Newsletter ===== */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--soft-beige) 0%, var(--cream) 100%);
    text-align: center;
}
.newsletter-box {
    max-width: 560px;
    margin: 0 auto;
}
.newsletter-box h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.newsletter-box p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 28px;
}
.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 24px;
    border: 1.5px solid var(--border-light);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--white);
    outline: none;
    transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--champagne-gold); }
.newsletter-form button {
    padding: 14px 32px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.newsletter-form button:hover { background: var(--champagne-gold); }

@media (max-width: 576px) {
    .newsletter-form { flex-direction: column; }
}

/* ===== Footer ===== */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
}
.footer-top {
    padding: 70px 0 50px;
}
.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.footer-logo .logo-text { color: var(--white); font-size: 26px; }
.footer-logo .logo-sub { color: var(--champagne-gold); }
.footer-about {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--champagne-gold);
    border-color: var(--champagne-gold);
    color: var(--white);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--champagne-gold); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}
.footer-contact i { color: var(--champagne-gold); font-size: 16px; width: 20px; text-align: center; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--champagne-gold); }

.footer-newsletter { margin-top: 24px; }
.newsletter-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}
.newsletter-input-group {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}
.newsletter-input-group input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
}
.newsletter-input-group input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input-group button {
    width: 44px;
    background: var(--champagne-gold);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-input-group button:hover { background: var(--gold-dark); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.footer-payments i { font-size: 16px; color: var(--champagne-gold); }

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white) !important;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white) !important; }
.whatsapp-tooltip {
    position: absolute;
    right: 66px;
    background: var(--white);
    color: var(--text-dark);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }
@media (max-width: 991px) {
    .whatsapp-float { bottom: 80px; width: 50px; height: 50px; font-size: 24px; right: 16px; }
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 160px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
@media (max-width: 991px) {
    .back-to-top { bottom: 145px; right: 16px; width: 40px; height: 40px; }
}

/* ===== Mobile Bottom Nav ===== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background: var(--white);
    border-top: 1px solid var(--border-lighter);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: var(--transition-fast);
    padding: 6px 12px;
}
.mobile-bottom-item i { font-size: 20px; }
.mobile-bottom-item.active { color: var(--champagne-gold); }
.mobile-bottom-item:hover { color: var(--champagne-gold); }
.mobile-bottom-item.whatsapp-item { color: #25D366; }
.mobile-badge {
    position: absolute;
    top: 0;
    right: 4px;
    background: var(--luxury-maroon);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Toast ===== */
.toast-notification {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--charcoal);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
}
.toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ===== Product Detail Page ===== */
.product-detail-section {
    padding: 40px 0 80px;
    background: var(--pearl-white);
}
.breadcrumb-nav {
    padding: 16px 0;
    margin-bottom: 20px;
}
.breadcrumb-nav a { color: var(--text-light); font-size: 13px; }
.breadcrumb-nav a:hover { color: var(--champagne-gold); }
.breadcrumb-nav span { color: var(--text-light); font-size: 13px; margin: 0 8px; }
.breadcrumb-nav .current { color: var(--text-dark); font-weight: 500; }

.product-gallery {
    position: sticky;
    top: 100px;
}
.main-image-wrap {
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--soft-beige);
    cursor: zoom-in;
    margin-bottom: 12px;
}
.main-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.thumbnail-row {
    display: flex;
    gap: 8px;
}
.thumb-item {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    opacity: 0.6;
}
.thumb-item.active, .thumb-item:hover { border-color: var(--champagne-gold); opacity: 1; }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }

.product-info {
    padding-left: 20px;
}
@media (max-width: 991px) { .product-info { padding-left: 0; padding-top: 24px; } }

.product-info .product-category-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--champagne-gold);
    margin-bottom: 8px;
    font-weight: 500;
}
.product-info h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}
.product-info .product-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--border-lighter);
    border-bottom: 1px solid var(--border-lighter);
}
.product-price-box .main-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal);
}
.product-price-box .old-price {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
}
.product-price-box .save-badge {
    font-size: 14px;
    font-weight: 600;
    color: #2E7D32;
    background: #E8F5E9;
    padding: 4px 12px;
    border-radius: 50px;
}

.product-short-desc {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-meta-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}
.product-meta-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-medium);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-lighter);
}
.product-meta-list li strong { color: var(--text-dark); min-width: 100px; }

.qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--border-light);
    border-radius: 50px;
    overflow: hidden;
    width: fit-content;
    margin-bottom: 20px;
}
.qty-btn {
    width: 42px;
    height: 42px;
    background: var(--soft-beige);
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.qty-btn:hover { background: var(--champagne-gold); color: var(--white); }
.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    outline: none;
    background: transparent;
}

.add-to-cart-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}
.btn-add-cart {
    flex: 1;
    padding: 16px 32px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-add-cart:hover { background: var(--champagne-gold); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-buy-now {
    padding: 16px 32px;
    background: var(--champagne-gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.btn-buy-now:hover { background: var(--gold-dark); }

.product-trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-lighter);
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-medium);
}
.trust-badge i { font-size: 18px; color: var(--champagne-gold); }

/* Product Tabs */
.product-tabs { margin-top: 50px; }
.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--border-light);
    gap: 0;
}
.tab-btn {
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}
.tab-btn.active { color: var(--charcoal); }
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--champagne-gold);
}
.tab-content { padding: 28px 0; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { font-size: 14px; color: var(--text-medium); line-height: 1.8; }

/* Sticky Mobile Add to Cart */
.sticky-add-cart {
    position: fixed;
    bottom: 62px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-lighter);
    padding: 10px 16px;
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
}
@media (max-width: 991px) {
    .sticky-add-cart { display: flex; }
}
.sticky-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    white-space: nowrap;
}
.sticky-add-btn {
    flex: 1;
    padding: 12px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}
.sticky-add-btn:hover { background: var(--champagne-gold); }

/* ===== Category Page ===== */
.category-hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a1f1f 100%);
    padding: 50px 0 45px;
    text-align: center;
}
.category-hero .breadcrumb-nav { margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.category-hero .breadcrumb-nav a { color: rgba(255,255,255,0.5); font-size: 13px; }
.category-hero .breadcrumb-nav a:hover { color: var(--champagne-gold); }
.category-hero .breadcrumb-nav i { color: rgba(255,255,255,0.3); font-size: 10px; }
.category-hero .breadcrumb-nav span { color: var(--white); font-size: 13px; font-weight: 500; }
.category-hero h1 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 8px;
}
.category-hero-desc { color: rgba(255,255,255,0.6); font-size: 15px; max-width: 500px; margin: 0 auto; }

.category-page-section { padding: 40px 0 80px; }

/* Category Layout with Sidebar */
.category-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}
@media (max-width: 991px) {
    .category-layout { grid-template-columns: 1fr; }
}

/* Filter Sidebar */
.filter-sidebar {
    background: var(--white);
    border: 1px solid var(--border-lighter);
    border-radius: var(--radius-md);
    padding: 0;
    position: sticky;
    top: 90px;
    overflow: hidden;
}
@media (max-width: 991px) {
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        z-index: 2001;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        overflow-y: auto;
    }
    .filter-sidebar.open { transform: translateX(0); }
}
.filter-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-lighter);
}
.filter-sidebar-header h3 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.filter-clear {
    font-size: 12px;
    color: var(--luxury-maroon);
    font-weight: 500;
    text-decoration: underline;
}

.filter-group { border-bottom: 1px solid var(--border-lighter); }
.filter-group-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    padding: 16px 20px;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}
.filter-group-title:hover { color: var(--champagne-gold); }
.filter-group-title i { font-size: 12px; transition: transform 0.3s ease; }
.filter-group.collapsed .filter-group-title i { transform: rotate(-90deg); }
.filter-group-body { padding: 0 20px 18px; }
.filter-group.collapsed .filter-group-body { display: none; }

.filter-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-medium);
    transition: var(--transition-fast);
    margin-bottom: 2px;
}
.filter-cat-link:hover { background: var(--soft-beige); color: var(--champagne-gold); }
.filter-cat-link.active { background: var(--soft-beige); color: var(--champagne-gold); font-weight: 600; }
.filter-cat-count {
    font-size: 11px;
    background: var(--cream);
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 500;
}

/* Price Filter */
.price-filter-form { margin-bottom: 14px; }
.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.price-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    background: var(--pearl-white);
}
.price-input-wrap span { font-size: 13px; color: var(--text-light); font-weight: 500; }
.price-input-wrap input {
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 13px;
    width: 100%;
    background: transparent;
    color: var(--text-dark);
}
.price-dash { color: var(--text-light); font-size: 14px; }
.price-apply-btn {
    width: 100%;
    padding: 9px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
}
.price-apply-btn:hover { background: var(--champagne-gold); }

.price-quick-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.price-quick {
    padding: 5px 12px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 11px;
    color: var(--text-medium);
    transition: var(--transition-fast);
    white-space: nowrap;
}
.price-quick:hover, .price-quick.active {
    border-color: var(--champagne-gold);
    color: var(--champagne-gold);
    background: rgba(197,164,103,0.06);
}

.filter-cta {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    margin: 16px;
    border-radius: var(--radius-sm);
}
.filter-cta i { font-size: 28px; color: #25D366; display: block; margin-bottom: 8px; }
.filter-cta p { font-size: 13px; color: var(--text-medium); margin: 0 0 8px; }
.filter-cta a {
    font-size: 12px;
    font-weight: 600;
    color: #25D366;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filter Bar (top toolbar) */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-lighter);
}
.filter-bar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.filter-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: 50px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}
.filter-toggle-btn:hover { border-color: var(--champagne-gold); color: var(--champagne-gold); }
.filter-count { font-size: 14px; color: var(--text-light); font-weight: 500; }

.active-filters { display: flex; gap: 6px; flex-wrap: wrap; }
.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--soft-beige);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-medium);
    font-weight: 500;
}
.active-filter-tag a {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}
.active-filter-tag a:hover { color: var(--luxury-maroon); }

.filter-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-sort label {
    font-size: 13px;
    color: var(--text-light);
    white-space: nowrap;
}
.filter-sort select {
    padding: 10px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 13px;
    background: var(--white);
    outline: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-lighter);
}
.empty-state i { font-size: 56px; color: var(--border-light); display: block; margin-bottom: 20px; }
.empty-state h3 { font-size: 22px; margin-bottom: 10px; }
.empty-state p { color: var(--text-light); margin-bottom: 24px; font-size: 14px; }

/* Pagination */
.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}
.page-link-custom {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    border: 1.5px solid var(--border-light);
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition-fast);
}
.page-link-custom:hover, .page-link-custom.active {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}
.page-dots { color: var(--text-light); font-size: 14px; padding: 0 4px; }

/* ===== Cart Page ===== */
.cart-section {
    padding: 40px 0 80px;
    background: var(--pearl-white);
}
.cart-title {
    font-size: 30px;
    margin-bottom: 32px;
}
.cart-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-lighter);
}
.cart-table th {
    background: var(--soft-beige);
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-medium);
    text-align: left;
}
.cart-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-lighter);
    vertical-align: middle;
}
.cart-product-info {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cart-product-img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--soft-beige);
}
.cart-product-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-product-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}
.cart-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition-fast);
}
.cart-remove:hover { color: var(--luxury-maroon); }

.cart-summary {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border-lighter);
    position: sticky;
    top: 100px;
}
.cart-summary h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-lighter);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
}
.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 2px solid var(--border-light);
    margin-top: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}
.empty-cart i { font-size: 64px; color: var(--border-light); margin-bottom: 20px; }
.empty-cart h3 { font-size: 24px; margin-bottom: 10px; }
.empty-cart p { color: var(--text-light); margin-bottom: 24px; }

/* ===== Checkout ===== */
.checkout-section { padding: 40px 0 80px; }
.checkout-form-group {
    margin-bottom: 20px;
}
.checkout-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.checkout-form-group input,
.checkout-form-group textarea,
.checkout-form-group select {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
    background: var(--white);
}
.checkout-form-group input:focus,
.checkout-form-group textarea:focus,
.checkout-form-group select:focus {
    border-color: var(--champagne-gold);
}

/* ===== Search Page ===== */
.search-section { padding: 40px 0 80px; }
.search-hero {
    text-align: center;
    padding: 40px 0;
}
.search-hero h1 { font-size: 30px; margin-bottom: 20px; }
.search-form-page {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
}
.search-form-page input {
    flex: 1;
    padding: 14px 24px;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
}
.search-form-page input:focus { border-color: var(--champagne-gold); }
.search-form-page button {
    padding: 14px 28px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.search-form-page button:hover { background: var(--champagne-gold); }

/* ===== Policy Pages ===== */
.policy-hero {
    background: var(--charcoal);
    padding: 60px 0 50px;
    text-align: center;
}
.policy-hero h1 {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
}
.policy-content {
    padding: 60px 0 80px;
}
.policy-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 48px;
    border: 1px solid var(--border-lighter);
}
.policy-box h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--charcoal);
}
.policy-box h3 {
    font-size: 20px;
    margin: 32px 0 12px;
    color: var(--charcoal);
}
.policy-box p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 12px;
}
.policy-box a { color: var(--champagne-gold); font-weight: 500; }
.policy-box a:hover { text-decoration: underline; }
.policy-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0 32px;
}
.policy-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius-sm);
}
.policy-highlight-item i {
    font-size: 28px;
    color: var(--champagne-gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.policy-highlight-item strong {
    display: block;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.policy-highlight-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}
@media (max-width: 768px) {
    .policy-box { padding: 24px 20px; }
    .policy-hero h1 { font-size: 28px; }
}

/* ===== Contact Page ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a1f1f 100%);
    padding: 50px 0 45px;
    text-align: center;
}
.contact-hero h1 { font-size: 40px; color: var(--white); margin-bottom: 10px; }
.contact-hero-desc { color: rgba(255,255,255,0.6); font-size: 15px; max-width: 500px; margin: 0 auto; }

.contact-section { padding: 60px 0 80px; }

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
@media (max-width: 768px) { .contact-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 480px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-lighter);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    display: block;
    color: var(--text-dark);
    text-decoration: none;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--champagne-gold); color: var(--text-dark); }
.contact-card-whatsapp { border-color: #25D366; background: #f0faf3; }
.contact-card-whatsapp:hover { box-shadow: 0 4px 20px rgba(37,211,102,0.2); }
.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--soft-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--champagne-gold);
}
.contact-card-whatsapp .contact-card-icon { background: rgba(37,211,102,0.1); color: #25D366; }
.contact-card h3 { font-family: var(--font-body); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.contact-card p { font-size: 13px; color: var(--text-light); margin: 0 0 12px; }
.contact-card-action { font-size: 12px; font-weight: 600; color: var(--champagne-gold); text-transform: uppercase; letter-spacing: 0.5px; }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
@media (max-width: 991px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border-lighter);
    border-radius: var(--radius-md);
    padding: 40px;
}
@media (max-width: 576px) { .contact-form-wrap { padding: 24px 20px; } }
.contact-form-wrap h2 { font-size: 26px; margin-bottom: 8px; }
.contact-form-desc { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }

.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 576px) { .contact-form-row { grid-template-columns: 1fr; } }

.contact-form-group { margin-bottom: 20px; }
.contact-form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--text-dark); }
.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
    background: var(--pearl-white);
}
.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus { border-color: var(--champagne-gold); background: var(--white); }

.contact-success {
    text-align: center;
    padding: 40px 20px;
}
.contact-success i { font-size: 56px; color: #2E7D32; display: block; margin-bottom: 16px; }
.contact-success h3 { font-size: 22px; margin-bottom: 8px; }
.contact-success p { color: var(--text-light); font-size: 14px; }

.contact-errors {
    background: #FFF3E0;
    border: 1px solid #FFE0B2;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}
.contact-errors p { color: #E65100; font-size: 14px; margin: 4px 0; }

.contact-info-side { display: flex; flex-direction: column; gap: 20px; }
.contact-info-box {
    background: var(--white);
    border: 1px solid var(--border-lighter);
    border-radius: var(--radius-md);
    padding: 28px;
}
.contact-info-box h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-info-box h3 i { color: var(--champagne-gold); }
.contact-info-box ul { list-style: none; padding: 0; }
.contact-info-box ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-medium);
}
.contact-info-box ul li i { color: #2E7D32; font-size: 16px; flex-shrink: 0; }

.contact-faq details {
    border-bottom: 1px solid var(--border-lighter);
    padding: 12px 0;
}
.contact-faq details:last-child { border-bottom: none; }
.contact-faq summary {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-faq summary::-webkit-details-marker { display: none; }
.contact-faq summary::after { content: '+'; font-size: 18px; color: var(--champagne-gold); }
.contact-faq details[open] summary::after { content: '−'; }
.contact-faq details p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 8px;
    padding-left: 0;
}

/* ===== About Page ===== */
.about-hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a1f1f 100%);
    padding: 50px 0 45px;
    text-align: center;
}
.about-hero h1 { font-size: 44px; color: var(--white); margin-bottom: 10px; }
.about-hero-desc { color: var(--gold-light); font-size: 18px; font-family: var(--font-heading); font-style: italic; }

.about-story-section { padding: 80px 0; }
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 991px) { .about-story-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--champagne-gold);
    margin-bottom: 12px;
}
.about-story-content h2 { font-size: 32px; margin-bottom: 20px; line-height: 1.3; }
.about-story-content p { font-size: 15px; color: var(--text-medium); line-height: 1.8; margin-bottom: 16px; }

.about-story-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.about-visual-card {
    background: var(--white);
    border: 1px solid var(--border-lighter);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition);
}
.about-visual-card:hover { box-shadow: var(--shadow-md); border-color: var(--champagne-gold); transform: translateY(-4px); }
.about-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--champagne-gold);
    margin-bottom: 4px;
}
.about-stat-label { font-size: 13px; color: var(--text-light); font-weight: 500; }

.about-values-section { padding: 80px 0; background: var(--cream); }
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 991px) { .about-values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .about-values-grid { grid-template-columns: 1fr; } }

.about-value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border-lighter);
    transition: var(--transition);
}
.about-value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.about-value-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--champagne-gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--white);
}
.about-value-card h3 { font-size: 18px; margin-bottom: 10px; }
.about-value-card p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

.about-promise-section { padding: 80px 0; }
.about-promise-box {
    background: var(--white);
    border: 1px solid var(--border-lighter);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}
@media (max-width: 576px) { .about-promise-box { padding: 28px 20px; } }
.about-promise-box h2 { font-size: 28px; margin-bottom: 32px; }
.about-promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}
@media (max-width: 768px) { .about-promise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .about-promise-grid { grid-template-columns: 1fr; } }

.about-promise-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: var(--pearl-white);
    border: 1px solid var(--border-lighter);
}
.about-promise-item i { font-size: 24px; color: var(--champagne-gold); flex-shrink: 0; margin-top: 2px; }
.about-promise-item strong { display: block; font-size: 14px; color: var(--charcoal); margin-bottom: 2px; }
.about-promise-item p { font-size: 12px; color: var(--text-light); margin: 0; }

.about-reviews-section { padding: 80px 0; background: var(--cream); }

.about-cta-section { padding: 80px 0; background: linear-gradient(135deg, var(--charcoal) 0%, #2a1f1f 100%); }
.about-cta-box { text-align: center; max-width: 600px; margin: 0 auto; }
.about-cta-box h2 { font-size: 32px; color: var(--white); margin-bottom: 12px; }
.about-cta-box p { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 28px; }
.about-cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

@media (max-width: 768px) {
    .about-hero h1 { font-size: 32px; }
    .contact-hero h1 { font-size: 30px; }
    .about-story-content h2 { font-size: 26px; }
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
/* Fallback: Show content after 2s even if JS observer fails */
@keyframes fadeInFallback {
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    animation: fadeInFallback 0.6s ease 2s forwards;
}
.fade-in.visible {
    animation: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 30px; letter-spacing: 1px; }
    .hero-content .hero-subtitle { font-size: 12px; }
    .hero-btns { gap: 10px; }
    .btn-primary-gold, .btn-outline-gold { padding: 12px 24px; font-size: 12px; }
    .bestseller-section, .new-arrivals-section, .featured-section,
    .why-section, .reviews-section, .instagram-section, .newsletter-section {
        padding: 50px 0;
    }
    .product-info h1 { font-size: 24px; }
    .product-price-box .main-price { font-size: 26px; }
    .cart-table th:nth-child(n+3), .cart-table td:nth-child(n+3) { display: none; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ===== Admin link ===== */
.admin-link { display: none; }

/* ===== Loading placeholder ===== */
.img-placeholder {
    background: linear-gradient(135deg, var(--soft-beige) 0%, var(--cream) 50%, var(--soft-beige) 100%);
    background-size: 200% 200%;
    animation: shimmer 1.5s ease infinite;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
