/* =========================================
   Sunaksha Soul & Wellness — Stylesheet
   ========================================= */

:root {
    /* Wellness color palette */
    --cream: #faf6f0;
    --cream-deep: #f5ede0;
    --blush: #f5e6e8;
    --lavender: #e8dff5;
    --sage: #c8d5b9;
    --gold: #c9a961;
    --gold-deep: #a0823a;
    --purple: #6a4c93;
    --purple-soft: #b39ddb;
    --plum: #4a2c5a;
    --brown: #3d2817;
    --warm-gray: #5c5048;
    --soft-gray: #a89c92;
    --white: #ffffff;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(74, 44, 90, 0.08);
    --shadow-md: 0 10px 30px rgba(74, 44, 90, 0.12);
    --shadow-lg: 0 20px 50px rgba(74, 44, 90, 0.18);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--brown);
    background: var(--cream);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

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

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

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

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--plum);
}

em {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 400;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 640px;
    margin: 0 auto;
}

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

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-block;
    padding: 0.95rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple) 0%, var(--plum) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--plum) 0%, var(--purple) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--plum);
    border: 1.5px solid var(--plum);
}

.btn-secondary:hover {
    background: var(--plum);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--plum);
}

.logo-symbol {
    color: var(--gold);
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--brown);
    position: relative;
}

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

.nav-links a:hover {
    color: var(--plum);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--plum);
    transition: var(--transition);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 50%, var(--lavender) 100%);
    padding: 6rem 2rem 4rem;
}

.hero-bg-circles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 157, 219, 0.3) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.c1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
}

.c2 {
    width: 700px;
    height: 700px;
    bottom: -250px;
    right: -200px;
    background: radial-gradient(circle, rgba(106, 76, 147, 0.15) 0%, transparent 70%);
    animation-delay: -7s;
}

.c3 {
    width: 400px;
    height: 400px;
    top: 40%;
    right: 15%;
    background: radial-gradient(circle, rgba(245, 230, 232, 0.6) 0%, transparent 70%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--gold-deep);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--plum);
    margin-bottom: 1.5rem;
}

.hero-title em {
    color: var(--gold-deep);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--warm-gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--plum);
    font-weight: 500;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--soft-gray);
    opacity: 0.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 1.5px solid var(--plum);
    border-radius: 20px;
    opacity: 0.5;
}

.scroll-indicator span {
    display: block;
    width: 3px;
    height: 8px;
    background: var(--plum);
    border-radius: 2px;
    margin: 6px auto;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(15px); }
}

/* =========================================
   About Section
   ========================================= */
.about {
    padding: 8rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.image-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--blush) 50%, var(--cream-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(106, 76, 147, 0.2) 0%, transparent 50%);
}

.om-symbol {
    font-size: 8rem;
    color: var(--plum);
    opacity: 0.4;
    position: relative;
    z-index: 1;
}

.decorative-leaf {
    position: absolute;
    color: var(--gold);
    font-size: 2.5rem;
    opacity: 0.6;
    animation: spin 30s linear infinite;
}

.leaf-1 {
    top: 20px;
    right: 20px;
}

.leaf-2 {
    bottom: 30px;
    left: 25px;
    font-size: 1.8rem;
    animation-duration: 25s;
    animation-direction: reverse;
}

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

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--purple);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-content p {
    color: var(--warm-gray);
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

.signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold-deep);
    margin-top: 2rem;
}

/* =========================================
   Services Section
   ========================================= */
.services {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 97, 0.15);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--blush) 100%);
    border-radius: 50%;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================
   Approach Section
   ========================================= */
.approach {
    padding: 8rem 0;
    background: var(--white);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.approach-content p {
    color: var(--warm-gray);
    margin-bottom: 1.2rem;
    line-height: 1.9;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(168, 156, 146, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--brown);
    font-weight: 400;
}

.benefits-list .check {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Mandala */
.approach-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mandala {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mandala-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    inset: 0;
}

.mandala-ring.r1 {
    border-color: var(--gold);
    opacity: 0.6;
    animation: spin 40s linear infinite;
    border-style: dashed;
}

.mandala-ring.r2 {
    inset: 40px;
    border-color: var(--purple-soft);
    opacity: 0.7;
    animation: spin 30s linear infinite reverse;
}

.mandala-ring.r3 {
    inset: 80px;
    border-color: var(--gold-deep);
    opacity: 0.5;
    border-style: dotted;
    animation: spin 25s linear infinite;
}

.mandala-center {
    font-size: 5rem;
    color: var(--plum);
    z-index: 1;
    background: var(--cream);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 30px rgba(106, 76, 147, 0.15);
}

/* =========================================
   Quote Section
   ========================================= */
.quote-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--plum) 0%, var(--purple) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 7rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 1rem;
}

.quote-section blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.5;
}

.quote-section cite {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

/* =========================================
   Contact Section
   ========================================= */
.contact {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--cream-deep) 0%, var(--blush) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

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

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--blush) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--plum);
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--warm-gray);
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--purple);
}

.contact-card a:hover {
    color: var(--gold-deep);
}

/* Brands card — Aromaroots logo */
.brands-card .brand-logo-link {
    display: inline-block;
    margin-bottom: 0.75rem;
    line-height: 0;
}

.brands-card .brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--white);
    transition: var(--transition);
}

.brands-card .brand-logo-link:hover .brand-logo {
    transform: scale(1.06);
    filter: drop-shadow(0 4px 12px rgba(94, 53, 177, 0.18));
}

/* Shop hero — Aromaroots logo */
.shop-hero-brand {
    display: inline-block;
    margin-bottom: 1.25rem;
    line-height: 0;
}

.shop-hero-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.shop-hero-brand:hover .shop-hero-logo {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid rgba(168, 156, 146, 0.3);
    border-radius: 10px;
    background: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--brown);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--gold-deep);
    min-height: 1.2em;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: var(--plum);
    color: var(--cream);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-symbol {
    color: var(--gold);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--lavender);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.footer-divider {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 2rem 0;
    letter-spacing: 8px;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(245, 237, 224, 0.6);
    letter-spacing: 1px;
}

/* =========================================
   Animations on Scroll
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 900px) {
    .about-grid,
    .approach-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .approach-visual {
        order: -1;
    }

    .mandala {
        width: 260px;
        height: 260px;
    }

    .mandala-center {
        width: 100px;
        height: 100px;
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .container,
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

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

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .about,
    .services,
    .approach,
    .contact {
        padding: 5rem 0;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}

/* =========================================
   ============ SHOP & CART ================
   ========================================= */

/* Cart button in navbar */
.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lavender), var(--blush));
    border: 1.5px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
    transition: var(--transition);
    color: var(--plum);
    font-size: 1.2rem;
}

.cart-btn:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.cart-btn.flash {
    animation: cartFlash 0.6s ease;
}

@keyframes cartFlash {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: var(--plum);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.5);
}

.cart-count.has-items {
    opacity: 1;
    transform: scale(1);
    background: var(--gold-deep);
}

/* Cart drawer */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(74, 44, 90, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1500;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--cream);
    z-index: 1600;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(74, 44, 90, 0.25);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(168, 156, 146, 0.2);
    background: var(--white);
}

.cart-header h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--plum);
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--plum);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: var(--blush);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    text-align: center;
    color: var(--warm-gray);
    padding: 4rem 1rem;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
}

.cart-empty span {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    margin-top: 1rem;
    font-style: normal;
    letter-spacing: 2px;
}

.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 14px;
    margin-bottom: 1rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.cart-item-info h5 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--plum);
    margin-bottom: 0.3rem;
    font-weight: 500;
    line-height: 1.2;
}

.cart-item-price {
    color: var(--gold-deep);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.qty-controls,
.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(168, 156, 146, 0.4);
    border-radius: 30px;
    overflow: hidden;
    background: var(--cream);
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--plum);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.qty-num {
    min-width: 28px;
    text-align: center;
    font-weight: 500;
    color: var(--plum);
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--soft-gray);
    cursor: pointer;
    font-size: 1rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: var(--transition);
    align-self: start;
}

.cart-item-remove:hover {
    background: var(--blush);
    color: var(--plum);
}

.cart-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(168, 156, 146, 0.2);
    background: var(--white);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--plum);
}

.cart-total-amount {
    font-size: 1.6rem;
    color: var(--gold-deep);
    font-weight: 600;
}

.cart-continue {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--purple);
    letter-spacing: 1px;
}

.cart-continue:hover {
    color: var(--gold-deep);
}

/* =========================================
   Shop Page
   ========================================= */
.shop-page {
    background: var(--cream);
}

.shop-hero {
    padding: 9rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 60%, var(--lavender) 100%);
    position: relative;
    overflow: hidden;
}

.shop-hero::before,
.shop-hero::after {
    content: '✦';
    position: absolute;
    color: var(--gold);
    opacity: 0.3;
    font-size: 8rem;
    font-family: var(--font-serif);
}

.shop-hero::before { top: 20%; left: 10%; }
.shop-hero::after { bottom: 10%; right: 12%; font-size: 5rem; }

.shop-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--plum);
    margin: 1rem 0 1.5rem;
    font-weight: 400;
    line-height: 1.1;
}

.shop-hero-subtitle {
    max-width: 640px;
    margin: 0 auto;
    color: var(--warm-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Filters */
.shop-filters-section {
    padding: 2.5rem 0 1rem;
    position: sticky;
    top: 70px;
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pill {
    padding: 0.5rem 1.3rem;
    border: 1.5px solid rgba(168, 156, 146, 0.3);
    background: var(--white);
    color: var(--warm-gray);
    border-radius: 30px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.pill:hover {
    border-color: var(--gold);
    color: var(--plum);
    transform: translateY(-2px);
}

.pill.active {
    background: linear-gradient(135deg, var(--purple), var(--plum));
    color: var(--white);
    border-color: var(--plum);
    box-shadow: var(--shadow-sm);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.shop-sort label {
    font-size: 0.85rem;
    color: var(--warm-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.shop-sort select {
    padding: 0.5rem 0.9rem;
    border: 1.5px solid rgba(168, 156, 146, 0.3);
    border-radius: 30px;
    background: var(--white);
    color: var(--plum);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.shop-sort select:focus {
    outline: none;
    border-color: var(--gold);
}

/* Product grid */
.shop-grid-section {
    padding: 3rem 0 6rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.empty-state {
    text-align: center;
    grid-column: 1 / -1;
    padding: 4rem 0;
    color: var(--warm-gray);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 97, 0.3);
}

.product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-emoji {
    font-size: 5rem;
    filter: drop-shadow(0 4px 12px rgba(74, 44, 90, 0.2));
    transition: var(--transition);
}

.product-card:hover .product-emoji {
    transform: scale(1.15) rotate(-5deg);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--plum);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: 30px;
}

.quick-view {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    color: var(--plum);
    border: none;
    padding: 0.55rem 1.4rem;
    border-radius: 30px;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.product-card:hover .quick-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.quick-view:hover {
    background: var(--plum);
    color: var(--white);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-cat {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--plum);
    margin-bottom: 0.4rem;
    font-weight: 500;
    line-height: 1.3;
}

.product-short {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-bottom: 1.2rem;
    flex: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-now {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--plum);
    font-weight: 600;
}

.price-old {
    font-size: 0.9rem;
    color: var(--soft-gray);
    text-decoration: line-through;
}

.add-cart-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--purple), var(--plum));
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.add-cart-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
}

.add-cart-btn.added {
    background: linear-gradient(135deg, var(--sage), #8aa876);
    animation: pop 0.6s ease;
}

.add-cart-btn.added::before {
    content: '✓';
    font-size: 1.2rem;
}

.add-cart-btn.added span {
    display: none;
}

@keyframes pop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Product Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(74, 44, 90, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1700;
}

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

.product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 92%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    z-index: 1800;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 30px 80px rgba(74, 44, 90, 0.35);
}

.product-modal.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--plum);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--plum);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-image {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.modal-emoji {
    font-size: 9rem;
    filter: drop-shadow(0 6px 20px rgba(74, 44, 90, 0.2));
}

.modal-info {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.modal-info h2 {
    font-size: 2.2rem;
    margin: 0.6rem 0 1rem;
    line-height: 1.2;
}

.modal-short {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--gold-deep);
    margin-bottom: 1.5rem;
}

.modal-description {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.modal-size {
    color: var(--brown);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 0.6rem 1rem;
    background: var(--cream);
    border-radius: 8px;
    display: inline-block;
}

.modal-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.modal-price .price-now {
    font-size: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: auto;
    flex-wrap: wrap;
}

.qty-selector {
    padding: 0.3rem;
}

.qty-selector .qty-btn {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
}

.qty-selector .qty-num {
    min-width: 36px;
    font-size: 1rem;
}

.modal-actions .btn {
    flex: 1;
}

/* Shop promise */
.shop-promise {
    padding: 5rem 0;
    background: var(--white);
    border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}

.promise-item {
    padding: 1.5rem;
}

.promise-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.promise-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.promise-item p {
    color: var(--warm-gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Shop responsive */
@media (max-width: 768px) {
    .shop-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .filter-pills::-webkit-scrollbar { display: none; }

    .pill {
        flex-shrink: 0;
    }

    .shop-sort {
        justify-content: space-between;
    }

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

    .modal-image {
        min-height: 240px;
        aspect-ratio: 16 / 10;
    }

    .modal-emoji {
        font-size: 6rem;
    }

    .modal-info {
        padding: 2rem 1.5rem;
    }

    .modal-info h2 {
        font-size: 1.6rem;
    }

    .modal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .qty-selector {
        align-self: center;
    }

    .cart-btn {
        margin-left: auto;
        margin-right: 0.8rem;
    }

    .shop-hero {
        padding: 7rem 0 3rem;
    }

    .shop-filters-section {
        top: 60px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-info {
        padding: 1rem;
    }

    .product-name {
        font-size: 1rem;
    }

    .price-now {
        font-size: 1.1rem;
    }

    .add-cart-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .product-emoji {
        font-size: 3.5rem;
    }

    .quick-view {
        display: none;
    }

    .cart-drawer {
        max-width: 100%;
    }
}

/* =========================================
   Shopify Live Catalog — UI States
   ========================================= */

.shop-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 6rem 1rem;
    color: var(--warm-gray);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--lavender);
    border-top-color: var(--purple);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 0.9s linear infinite;
}

.shop-loading p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--plum);
}

.shop-setup {
    grid-column: 1 / -1;
    max-width: 640px;
    margin: 3rem auto;
    text-align: center;
    background: var(--white);
    border-radius: 24px;
    padding: 4rem 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.setup-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.shop-setup h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--plum);
    margin-bottom: 1rem;
}

.shop-setup p {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.shop-setup code {
    background: var(--cream);
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    color: var(--gold-deep);
    font-size: 0.9em;
    font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}

.setup-steps {
    text-align: left;
    max-width: 460px;
    margin: 1.5rem auto;
    padding-left: 1.5rem;
    color: var(--brown);
    line-height: 2;
}

.setup-steps li {
    margin-bottom: 0.5rem;
}

.setup-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--gold-deep);
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

/* Real product images replace emoji backgrounds */
.product-image-shopify {
    background: linear-gradient(135deg, var(--cream-deep), var(--blush));
    overflow: hidden;
}

.product-image-shopify img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image-shopify img {
    transform: scale(1.06);
}

.modal-image-shopify {
    background: var(--cream-deep);
}

.modal-image-shopify img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sold out badge */
.product-badge.soldout {
    background: var(--soft-gray);
    top: auto;
    bottom: 1rem;
    left: 1rem;
}

/* Variant picker (modal) */
.variant-picker {
    margin: 1.2rem 0;
}

.variant-picker label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.variant-btn {
    padding: 0.5rem 1rem;
    border: 1.5px solid rgba(168, 156, 146, 0.4);
    background: var(--cream);
    color: var(--brown);
    border-radius: 30px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.variant-btn:hover {
    border-color: var(--gold);
    color: var(--plum);
}

.variant-btn.active {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

/* Modal description (rich HTML from Shopify) */
.modal-description {
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.modal-description p { margin-bottom: 0.8rem; }
.modal-description ul,
.modal-description ol { margin: 0.5rem 0 1rem 1.5rem; }
.modal-description strong { color: var(--brown); }

/* Add-to-cart busy state */
.add-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* =========================================
   Socials, Map Link & Floating WhatsApp
   ========================================= */

.contact-card .map-link {
    margin-top: 0.8rem;
    font-size: 0.85rem;
}

.contact-card .map-link a {
    color: var(--gold-deep);
    letter-spacing: 1px;
    font-weight: 500;
}

.contact-card .map-link a:hover {
    color: var(--plum);
}

/* Footer socials */
.footer-socials {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.8rem 0 0.5rem;
    padding: 0;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--cream);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--plum);
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1400;
    transition: var(--transition);
    animation: waPulse 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

@keyframes waPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0);
    }
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 18px;
        left: 18px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    .footer-socials a {
        width: 38px;
        height: 38px;
    }
}
