/* =============================================
   JASORA – Luxury Moroccan Skincare
   Global Stylesheet
   ============================================= */

@import url(https://db.onlinewebfonts.com/c/3805b012a721132bb80bc93c24434010?family=BenguiatProITC-Book);
@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap);

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

:root {
    --bg-primary: #000000;
    --bg-card: #0a0a0a;
    --bg-card-hover: #111111;
    --bg-elevated: #0f0f0f;
    --accent-gold: #D4AF37;
    --accent-gold-deep: #b8941f;
    --accent-champagne: #E6C98F;
    --accent-gold-light: #e8d5a3;
    --accent-sapphire: #0d1b2a;
    --accent-burgundy: #2c0e14;
    --accent-rosegold: #d4a08a;
    --text-ivory: #F5F5F5;
    --text-muted: #b0b0b0;
    --border-gold: rgba(212, 175, 55, 0.25);
    --border-gold-hover: rgba(212, 175, 55, 0.6);
    --border-subtle: rgba(212, 175, 55, 0.12);
    --shadow-gold: rgba(212, 175, 55, 0.08);
    --shadow-gold-strong: rgba(212, 175, 55, 0.18);
    --shadow-gold-glow: 0 0 40px rgba(212, 175, 55, 0.15);
    --gold-gradient: linear-gradient(135deg, #D4AF37, #E6C98F, #D4AF37);
    --gold-gradient-subtle: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(230,201,143,0.04));
    --red-heart: #e74c3c;
    --green-success: #2ecc71;
    --font-heading: 'BenguiatProITC-Book', 'Cinzel', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Inter', 'Montserrat', -apple-system, sans-serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    --font-logo: 'BenguiatProITC-Book', 'ITC Benguiat', 'Benguiat', Georgia, serif;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.25s ease;
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    animation: pageIn 0.15s ease-out;
}

body.page-exit {
    animation: pageOut 0.1s ease-in forwards;
}

@keyframes pageIn {
    from { opacity: 0.9; }
    to   { opacity: 1; }
}
@keyframes pageOut {
    from { opacity: 1; }
    to   { opacity: 0.9; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-ivory);
}

/* ---- Scroll Reveal ---- */
.reveal {
    opacity: 0.01;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0.01;
    transform: translateX(-15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0.01;
    transform: translateX(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0.01;
    transform: scale(0.96);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.reveal-stagger > * {
    opacity: 0.01;
    transform: translateY(12px);
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* Image blur-in */
.img-reveal {
    opacity: 0.01;
    filter: blur(8px);
    transition: opacity 0.8s ease, filter 0.8s ease;
}
.img-reveal.visible {
    opacity: 1;
    filter: blur(0);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.95rem 2.5rem;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Button ripple effect */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-deep), var(--accent-gold));
    background-size: 200% 200%;
    color: var(--bg-primary);
    position: relative;
    isolation: isolate;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-champagne), var(--accent-gold-light), var(--accent-champagne));
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3),
                0 0 30px rgba(212, 175, 55, 0.15),
                var(--shadow-gold-glow);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-gradient);
    background-size: 200% 200%;
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-smooth);
    filter: blur(2px);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25), var(--shadow-gold-glow);
}

.btn-secondary:hover::before {
    opacity: 0.3;
}

/* Gold shimmer border animation */
@keyframes goldShimmerBorder {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Button shimmer overlay */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmerSlide 3s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Added state for "Added to Cart" feedback */
.btn-added {
    background-color: var(--green-success) !important;
    color: #fff !important;
    border-color: var(--green-success) !important;
    pointer-events: none;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-smooth);
    background: transparent;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(32px) saturate(1.4);
    -webkit-backdrop-filter: blur(32px) saturate(1.4);
    padding: 0.5rem 0;
    border-bottom: none;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 4px 30px rgba(212, 175, 55, 0.06);
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.nav-cart {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: all var(--transition-fast);
}

.nav-cart:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.nav-cart-icon {
    width: 18px;
    height: 18px;
}

.nav-cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--accent-gold);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.nav-logo {
    font-family: var(--font-logo);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    color: var(--accent-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    transition: text-shadow var(--transition-fast);
}

.nav-logo:hover {
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-ivory);
    position: relative;
    padding: 0.4rem 0;
    transition: color var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transform: translateX(-50%);
    transition: width var(--transition-smooth);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
}

.nav-link::before {
    content: '◆';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    font-size: 6px;
    color: var(--accent-gold);
    transition: transform var(--transition-smooth);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active::before {
    transform: translateX(-50%) scale(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: var(--accent-gold);
    transition: all var(--transition-fast);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../assets/images/hero section landscape.png') center center / cover no-repeat;
    overflow: hidden;
    padding: 2.5rem 0 3rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(230, 201, 143, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.02) 0%, transparent 40%);
    animation: heroGlow 15s ease-in-out infinite alternate;
}

/* Decorative gold border corners */
.hero::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    bottom: 2.5rem;
    pointer-events: none;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    opacity: 0;
    transition: opacity 1.5s ease 0.5s;
}

.hero.loaded::after {
    opacity: 1;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
    50% { opacity: 1; }
    100% { transform: translate(2%, -2%) rotate(1deg); opacity: 0.5; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 2rem;
    animation: fadeInUp 1.2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-champagne);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-logo-image {
    width: min(560px, 82%);
    max-height: 320px;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto 1rem;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.2));
}

.hero-description {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 4rem 0;
}

.section-dark {
    background-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.6rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--text-ivory);
}

.section-header {
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--gold-gradient);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
    margin: 0.8rem auto 0;
}



/* ---- About ---- */
.about-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 2rem;
}

/* ---- Zigzag Layout Refesign (Minimalist & Soothing) ---- */
.featured-zigzag-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
    position: relative;
}

.featured-zigzag-container > .featured-row:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.3;
}

.featured-zigzag-container > .featured-row {
    position: relative;
}

.featured-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.featured-row-reverse {
    flex-direction: row-reverse;
}

.featured-row-content {
    flex: 0 1 420px;
    text-align: left;
}

.featured-row-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--text-ivory);
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.featured-row-desc {
    font-size: 0.98rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 1.8rem;
}

.featured-row-price {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.featured-row-actions {
    display: flex;
    gap: 1rem;
}

.featured-row-image {
    flex: 0 1 360px;
    display: flex;
    justify-content: center;
}

.featured-image-canvas {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    transition: all var(--transition-smooth);
    background: transparent;
    border: none;
    box-shadow: none;
}


.product-placeholder-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent-champagne);
    letter-spacing: 0.2em;
    opacity: 0.5;
    z-index: 2;
    text-transform: uppercase;
}

/* Geometric Shapes (Floating Vibe) */
.geometric-shape {
    position: absolute;
    background: transparent;
    pointer-events: none;
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.shape-square {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    animation: rotateShape 25s linear infinite;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.05);
}

.shape-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.25);
    animation: pulseShape 10s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.08);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(212, 175, 55, 0.15);
    animation: driftShape 15s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.05));
}

.shape-triangle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: -58px;
    border-left: 58px solid transparent;
    border-right: 58px solid transparent;
    border-bottom: 96px solid var(--bg-primary);
}

@keyframes rotateShape {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulseShape {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes driftShape {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

@media (max-width: 992px) {
    .featured-zigzag-container {
        gap: 3rem;
    }
    .featured-row {
        flex-direction: column !important;
        text-align: center;
        gap: 3rem;
    }
    .featured-row-content {
        max-width: 100%;
        order: 2;
        padding: 0 1rem;
    }
    .featured-row-image {
        order: 1;
        width: 100%;
        max-width: 280px;
    }
    .featured-row-actions {
        justify-content: center;
    }
}


/* ---- Contact ---- */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2.5rem;
}

.contact-item {
    text-align: center;
}

.contact-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--text-muted);
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 3rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80%, 400px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    background: linear-gradient(
        90deg,
        var(--accent-gold) 0%,
        var(--accent-champagne) 25%,
        #fff 50%,
        var(--accent-champagne) 75%,
        var(--accent-gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 6s ease-in-out infinite;
}

.footer-tagline {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-links a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all var(--transition-fast);
    position: relative;
    padding: 0.2rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: width var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
    letter-spacing: 0.15em;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(176, 176, 176, 0.5);
    letter-spacing: 0.05em;
}

/* =============================================
   PAGE HEADER (Products page)
   ============================================= */
.page-header {
    position: relative;
    height: 38vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 40%, #0d0b06 100%);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 40% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 60%),
                radial-gradient(ellipse at 60% 30%, rgba(230, 201, 143, 0.02) 0%, transparent 40%);
    animation: heroGlow 15s ease-in-out infinite alternate;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
}

.page-header-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--text-ivory);
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.page-header-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.page-header-title::before {
    content: '◆';
    position: absolute;
    bottom: calc(-0.5rem - 4px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    z-index: 1;
    background: var(--bg-primary);
    padding: 0 0.5rem;
}

.page-header-description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =============================================
   PRODUCTS GRID
   ============================================= */
.products-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    transition: all var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
    animation: cardReveal 0.7s ease-out forwards;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: -1;
    border-radius: inherit;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }

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

.product-card:hover {
    border-color: var(--border-gold-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.product-card:hover::before {
    opacity: 0;
}

/* Wishlist heart button */
.product-wishlist {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: scale(0.8);
}
.product-card:hover .product-wishlist {
    opacity: 1;
    transform: scale(1);
}
.product-wishlist:hover {
    background: rgba(0, 0, 0, 0.85);
    border-color: var(--red-heart);
    transform: scale(1.15) !important;
}
.product-wishlist svg {
    width: 16px;
    height: 16px;
    transition: all var(--transition-fast);
}
.product-wishlist .heart-outline {
    color: var(--accent-gold);
}
.product-wishlist .heart-filled {
    display: none;
    color: var(--red-heart);
}
.product-wishlist.wishlisted .heart-outline {
    display: none;
}
.product-wishlist.wishlisted .heart-filled {
    display: block;
}
.product-wishlist.wishlisted {
    opacity: 1;
    transform: scale(1);
    background: rgba(0, 0, 0, 0.75);
    border-color: var(--red-heart);
    color: var(--red-heart);
}

@keyframes heartPop {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.35); }
    60%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}
.product-wishlist.heart-anim svg {
    animation: heartPop 0.4s ease;
}

.product-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.08);
    pointer-events: none;
    z-index: 3;
    transition: border-color var(--transition-smooth);
}

.product-card:hover .product-image::after {
    border-color: rgba(212, 175, 55, 0.02);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0d0b06 0%, #1a1508 50%, #0d0b06 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    transition: all var(--transition-smooth);
    position: relative;
}

.product-image-placeholder::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.12);
    pointer-events: none;
}

.product-image-placeholder span {
    position: relative;
    z-index: 1;
}

.product-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    pointer-events: none;
}

.product-card:hover .product-image-placeholder::before {
    color: rgba(212, 175, 55, 0.25);
}

.product-image-placeholder.has-image {
    padding: 0;
    background: #0d0b06;
}

.product-image-placeholder.has-image::before,
.product-image-placeholder.has-image::after {
    display: none;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.product-card-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity var(--transition-smooth);
    z-index: 1;
}

.product-card:hover .product-card-image {
    transform: scale(1.08);
}

.product-card:hover .product-card-image.has-hover {
    opacity: 0;
}

.product-card:hover .product-card-image-hover {
    opacity: 1;
    transform: scale(1.08);
}

.product-card:hover .product-image-placeholder {
    background: linear-gradient(145deg, #12100a 0%, #211c0e 50%, #12100a 100%);
}

/* Quick action overlay that appears on hover */
.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}
.product-card:hover .product-overlay {
    opacity: 1;
}
.product-overlay-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-champagne);
    font-weight: 400;
}

.product-image-placeholder span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--accent-champagne);
    letter-spacing: 0.08em;
    opacity: 0.5;
}

.product-info {
    padding: 1.2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-ivory);
    margin-bottom: 0.6rem;
}

.product-price {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
    font-variant-numeric: tabular-nums;
}

.product-weight {
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.product-preview {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Star rating on product card */
.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
}
.product-rating .stars {
    color: var(--accent-gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.product-rating .rating-count {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.btn-view-details {
    font-size: 0.72rem;
    padding: 0.75rem 2rem;
    margin-top: auto;
}

.product-actions {
    display: flex;
    gap: 0.55rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-add-cart,
.btn-view-details {
    font-size: 0.69rem;
    padding: 0.7rem 1.3rem;
}

/* Cart toast notification */
.cart-toast {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    background: #0c0c0c;
    color: var(--text-ivory);
    border: 1px solid var(--border-gold-hover);
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    z-index: 3000;
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.12), 0 0 30px rgba(212, 175, 55, 0.04);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    max-width: 340px;
    border-radius: 2px;
}

.cart-toast::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 30%;
    right: 30%;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.5;
}

.cart-toast.visible {
    opacity: 1;
    transform: translateX(0);
}

.cart-toast-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--green-success);
}

/* Cart badge bounce animation */
@keyframes badgeBounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.4); }
    60%  { transform: scale(0.85); }
    100% { transform: scale(1); }
}
.nav-cart-count.bounce {
    animation: badgeBounce 0.45s ease;
}

/* =============================================
   CART PAGE
   ============================================= */
.cart-section {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
}

.cart-panel,
.cart-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 1.2rem;
}

.cart-summary {
    position: relative;
    border-color: var(--border-gold-hover);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.04);
}

.cart-summary::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    color: var(--text-ivory);
    margin-bottom: 0.2rem;
}

.cart-item-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-end;
}

.cart-qty-btn,
.cart-remove-btn {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--border-gold);
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 0.9rem;
}

.cart-remove-btn {
    width: auto;
    padding: 0 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.62rem;
}

.cart-qty {
    min-width: 24px;
    text-align: center;
    color: var(--text-ivory);
    font-size: 0.9rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.9rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.cart-summary-total {
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    padding-top: 0.9rem;
    margin-top: 0.7rem;
    font-size: 1rem;
    color: var(--text-ivory);
}

.cart-empty {
    text-align: center;
    padding: 2.2rem 1rem;
    color: var(--text-muted);
}

.cart-empty .btn {
    margin-top: 1.2rem;
}

.cart-checkout-btn {
    width: 100%;
    margin-top: 1rem;
}

/* =============================================
   PRODUCT DETAIL MODAL
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.modal {
    background: #0a0a0a;
    border: 1px solid var(--border-gold-hover);
    max-width: 960px;
    width: 100%;
    max-height: min(90vh, 800px);
    overflow-y: auto;
    position: relative;
    transform: translateY(40px) scale(0.96);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 40px 100px rgba(212, 175, 55, 0.08), 0 0 60px rgba(212, 175, 55, 0.04);
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

/* Custom scrollbar for modal */
.modal::-webkit-scrollbar {
    width: 4px;
}

.modal::-webkit-scrollbar-track {
    background: transparent;
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    background: none;
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    line-height: 1;
}

.modal-close:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    flex: 1;
    overflow-y: auto;
}

.modal-image {
    position: relative;
    overflow: hidden;
}

.modal-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(145deg, #0d0b06 0%, #1a1508 50%, #0d0b06 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.modal-image-placeholder.has-image {
    padding: 0;
    background: #0d0b06;
    justify-content: flex-start;
}

.modal-product-image {
    flex: 1;
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.modal-nav-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.modal-nav-btn {
    pointer-events: auto;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-nav-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.modal-nav-btn svg {
    width: 20px;
    height: 20px;
}

.modal-thumbnails {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    justify-content: center;
}

.modal-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.modal-thumbnail:hover,
.modal-thumbnail.active {
    opacity: 1;
    border-color: var(--accent-gold);
}

.modal-image-placeholder.has-image #modalImageText {
    display: none;
}

.modal-image-placeholder span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-champagne);
    letter-spacing: 0.08em;
    opacity: 0.4;
}

.modal-content {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-ivory);
    margin-bottom: 1rem;
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
}

.modal-price {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.modal-divider {
    color: rgba(212, 175, 55, 0.3);
    font-weight: 300;
}

.modal-weight {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.modal-description {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.modal-benefits-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.modal-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.modal-benefits-list li {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.modal-benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-page-header {
    min-height: 460px;
    height: auto;
    overflow: visible;
    padding: 6rem 0 3rem;
}

.about-page-header::before {
    z-index: 1;
}

/* Standalone About Hero */
.about-hero-section {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 40%, #0d0b06 100%);
    padding: 6rem 2rem 3rem;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(60%, 300px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.4;
}

.about-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
}

.about-hero-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.about-hero-logo-img {
    width: min(340px, 78%);
    max-height: 220px;
    object-fit: contain;
    display: block;
    margin: 0 auto 0.8rem;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-ivory);
    text-transform: uppercase;
    margin: 0.3rem 0 0.5rem;
}

.about-hero-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.8;
    margin: 0 auto;
}

.about-hero-layout {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr minmax(260px, 360px);
    gap: 2rem;
    align-items: center;
    padding-top: 1rem;
}

.about-hero-copy {
    text-align: left;
    max-width: 560px;
}

.about-hero-copy .page-header-description {
    margin: 0;
}

.about-hero-media,
.about-founder-media {
    border: 1px solid var(--border-gold);
    overflow: hidden;
    background: linear-gradient(145deg, #0d0b06 0%, #1a1508 50%, #0d0b06 100%);
    min-height: 320px;
    box-shadow: 0 22px 64px rgba(212, 175, 55, 0.12);
    position: relative;
}

.about-hero-media::after,
.about-founder-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.06);
    pointer-events: none;
    transition: border-color var(--transition-smooth);
}

.about-hero-media:hover::after,
.about-founder-media:hover::after {
    border-color: rgba(212, 175, 55, 0.15);
}

.about-hero-image,
.about-founder-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
    opacity: 0.9;
    display: block;
}

.about-founder-layout {
    display: grid;
    grid-template-columns: minmax(280px, 420px) 1fr;
    gap: 2.4rem;
    align-items: center;
}

.about-founder-copy {
    text-align: left;
    margin: 0;
}

.about-hero-logo-wrap {
    border: 1px solid var(--border-gold);
    background: #efefef;
    padding: 1.2rem;
    box-shadow: 0 22px 64px rgba(212, 175, 55, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
    width: min(100%, 360px);
}

.about-hero-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about-page-header .page-header-overlay {
    z-index: 1;
}

.about-page-header .page-header-content {
    max-width: 560px;
    z-index: 2;
}

.about-hero-media-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.about-hero-media-fallback span {
    font-family: var(--font-heading);
    color: var(--accent-champagne);
    letter-spacing: 0.08em;
    opacity: 0.6;
}

.about-page-content {
    max-width: 900px;
}

.about-heading {
    margin-bottom: 1.8rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image-placeholder {
        min-height: 280px;
    }

    .modal-product-image {
        min-height: 280px;
    }

    .modal-content {
        padding: 2rem 2rem 2.5rem;
    }

    .about-hero-layout {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .about-founder-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .about-founder-copy {
        text-align: center;
    }

    .about-hero-copy .page-header-description {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-media,
    .about-hero-image,
    .about-founder-media,
    .about-founder-image,
    .about-hero-media-fallback {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .nav-right {
        gap: 0.6rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right var(--transition-smooth);
        border-left: 1px solid var(--border-gold);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Mobile menu overlay backdrop */
    .nav-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
    }

    .nav-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-cart {
        width: 36px;
        height: 36px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-logo-image {
        width: min(460px, 92%);
        max-height: 260px;
    }

    .section {
        padding: 2.5rem 0;
    }

    .products-grid,
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 420px;
        margin: 0 auto;
    }

    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .page-header {
        min-height: 300px;
    }

    .about-page-header {
        min-height: 0;
        padding: 5rem 0 2.5rem;
    }

    .about-hero-layout {
        gap: 1.2rem;
    }

    .modal {
        max-height: 95vh;
    }

    .modal-content {
        padding: 1.8rem 1.5rem 2rem;
    }

    .modal-title {
        font-size: 1.35rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .btn {
        padding: 0.85rem 1.8rem;
        font-size: 0.72rem;
    }

    .modal-overlay {
        padding: 0.8rem;
    }

    .modal-image-placeholder {
        min-height: 200px;
    }

    .modal-product-image {
        min-height: 200px;
    }

    .product-info {
        padding: 1.3rem;
    }

    .about-hero-media,
    .about-hero-image,
    .about-founder-media,
    .about-founder-image,
    .about-hero-media-fallback {
        min-height: 210px;
    }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-card);
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
}

.trust-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--accent-gold);
    transition: all var(--transition-smooth);
}

.trust-item:hover .trust-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.trust-label {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-ivory);
    line-height: 1.3;
}

.trust-sublabel {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    padding: 1.5rem;
    transition: all var(--transition-smooth);
}

.review-card:hover {
    border-color: var(--border-gold-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 1.2rem;
    font-style: italic;
    position: relative;
    padding-left: 1.2rem;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    font-family: var(--font-elegant);
}

.review-author {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-ivory);
    margin-bottom: 0.3rem;
}

.review-badge {
    font-size: 0.7rem;
    color: var(--green-success);
    letter-spacing: 0.05em;
}

/* =============================================
   SCROLL DOWN INDICATOR (Hero)
   ============================================= */
.scroll-indicator {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    animation: scrollPulse 2.5s ease-in-out infinite;
    cursor: pointer;
    padding: 0.3rem;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: scrollRing 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scrollRing {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0; }
}

.scroll-indicator-text {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-champagne);
    opacity: 0.6;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    opacity: 0.6;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(6px);
        filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.3));
    }
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #1da851);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
    z-index: 2500;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 26px;
    height: 26px;
}

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: var(--text-ivory);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent-gold);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.15));
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-item {
    position: relative;
    transition: all var(--transition-smooth);
}

.faq-item:hover .faq-question {
    padding-left: 0.5rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.open .faq-answer {
    max-height: 800px;
    padding-bottom: 1.5rem;
    opacity: 1;
}

.faq-answer p {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
}

/* =============================================
   SHIPPING PAGE
   ============================================= */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h3 {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin: 2.5rem 0 1rem;
    letter-spacing: 0.04em;
}

.policy-content p,
.policy-content li {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 0.8rem;
}

.policy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-content ul li {
    list-style: none;
    position: relative;
    padding-left: 1.2rem;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    background: var(--accent-gold);
    border-radius: 50%;
}

/* =============================================
   MODAL ADD TO CART / WISHLIST BUTTONS
   ============================================= */
.modal-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.modal-actions .btn {
    flex: 1;
    min-width: 140px;
}

.btn-wishlist-modal {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.69rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

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

.btn-wishlist-modal.wishlisted {
    border-color: var(--red-heart);
    color: var(--red-heart);
}

/* Wishlist nav icon */
.nav-wishlist {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: all var(--transition-fast);
}

.nav-wishlist:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-wishlist svg {
    width: 17px;
    height: 17px;
}

.nav-auth-link {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.nav-auth-link:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-auth-link svg {
    width: 18px;
    height: 18px;
}

.nav-auth-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-auth-wrapper::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

.nav-auth-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid var(--border-gold);
    min-width: 150px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
}

.nav-auth-wrapper:hover .nav-auth-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-auth-dropdown a {
    padding: 0.8rem 1.2rem;
    color: var(--text-ivory);
    font-size: 0.8rem;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
    border-bottom: 1px solid rgba(212,175,55,0.1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
    text-decoration: none;
}

.nav-auth-dropdown a:last-child {
    border-bottom: none;
}

.nav-auth-dropdown a:hover {
    background: rgba(212,175,55,0.1);
    color: var(--accent-gold);
}

.nav-wishlist-count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--red-heart);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-bar-grid {
        gap: 1.5rem;
    }

    .trust-item {
        min-width: 140px;
    }

    .whatsapp-btn {
        width: 44px;
        height: 44px;
        bottom: 1.2rem;
        left: 1.2rem;
    }

    .whatsapp-btn svg {
        width: 20px;
        height: 20px;
    }

    .nav-wishlist {
        width: 36px;
        height: 36px;
    }

    .nav-auth-link {
        width: 36px;
        height: 36px;
    }

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

@media (max-width: 480px) {
    .trust-bar-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }
}

/* =============================================
   SECTION DESCRIPTION
   ============================================= */
.section-description {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 520px;
    margin: 1rem auto 0;
    line-height: 1.9;
}

/* =============================================
   FEATURED SECTION ENHANCEMENTS
   ============================================= */
.featured-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.featured-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: auto;
    padding-top: 0.8rem;
}

.btn-sm {
    padding: 0.65rem 1.3rem;
    font-size: 0.68rem;
}

.btn-buy-now {
    font-size: 0.69rem;
    padding: 0.7rem 1.3rem;
}

/* Center align the 'View All Products' CTA */
.text-center .btn {
    min-width: 200px;
}

/* =============================================
   CONTACT GRID
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-card {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-smooth);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    min-height: 160px;
    justify-content: flex-start;
}

.contact-card:hover {
    transform: translateY(-6px);
    color: var(--accent-gold);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.contact-card-icon {
    width: 28px;
    height: 28px;
    color: var(--accent-gold);
    transition: all var(--transition-smooth);
}

.contact-card .contact-label {
    margin-bottom: 0.3rem;
}

/* =============================================
   WISHLIST PAGE
   ============================================= */
.wishlist-section {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
}

.wishlist-empty {
    text-align: center;
    padding: 4rem 1rem;
}

.wishlist-empty-icon {
    width: 64px;
    height: 64px;
    color: var(--accent-gold);
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

.wishlist-count {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.wishlist-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.wishlist-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    transition: all var(--transition-smooth);
    overflow: hidden;
    position: relative;
}

.wishlist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold-gradient);
    transition: height var(--transition-smooth);
    z-index: 1;
}

.wishlist-card:hover {
    border-color: var(--border-gold-hover);
    transform: translateX(4px);
    box-shadow: 0 16px 48px var(--shadow-gold-strong);
}

.wishlist-card:hover::before {
    height: 100%;
}

.wishlist-card-image {
    overflow: hidden;
}

.wishlist-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    background: linear-gradient(145deg, #0d0b06 0%, #1a1508 50%, #0d0b06 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.wishlist-image-placeholder span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--accent-champagne);
    letter-spacing: 0.06em;
    opacity: 0.5;
}

.wishlist-card-body {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.wishlist-card-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-ivory);
    margin-bottom: 0.4rem;
}

.wishlist-card-rating {
    color: var(--accent-gold);
    font-size: 0.82rem;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

.wishlist-card-rating span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.wishlist-card-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.wishlist-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.wishlist-card-price {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.wishlist-card-weight {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.wishlist-card-actions {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-wishlist-remove {
    background: none;
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: var(--red-heart);
    padding: 0.55rem 1rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-wishlist-remove svg {
    width: 12px;
    height: 12px;
}

.btn-wishlist-remove:hover {
    background: rgba(231, 76, 60, 0.1);
    border-color: var(--red-heart);
}

/* ---- Wishlist responsive ---- */
@media (max-width: 768px) {
    .wishlist-card {
        grid-template-columns: 1fr;
    }

    .wishlist-image-placeholder {
        min-height: 140px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .wishlist-card-body {
        padding: 1.2rem;
    }

    .wishlist-card-actions {
        flex-direction: column;
    }

    .wishlist-card-actions .btn,
    .wishlist-card-actions .btn-wishlist-remove {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

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

/* =============================================
   AESTHETIC ENHANCEMENTS – Jasora Premium Vibe
   ============================================= */

/* ---- Section Dividers (subtle gold gradient) ---- */
.section + .section::before,
.section + .section-dark::before,
.section-dark + .section::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 20%,
        rgba(230, 201, 143, 0.4) 50%,
        rgba(212, 175, 55, 0.3) 80%,
        transparent 100%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}

/* ---- Footer Logo Shimmer ---- */
@keyframes goldShimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ---- Featured Card Glow on Hover ---- */
.featured-card:hover {
    transform: translateY(-6px);
}
