/* ============================================
   MATILDA BEAUTY COSMETICS - STYLES
   ============================================ */

:root {
    --blush: #F5E6E0;
    --blush-deep: #E8D4CC;
    --rose: #D4A5A5;
    --rose-gold: #B76E79;
    --charcoal: #2C2C2C;
    --soft-black: #1A1A1A;
    --cream: #FDF9F7;
    --gold: #C9A962;
    --white: #FFFFFF;
    --success: #4CAF50;
    --error: #E53935;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, .elegant {
    font-family: 'Cormorant Garamond', serif;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: linear-gradient(90deg, var(--rose-gold) 0%, var(--rose) 50%, var(--rose-gold) 100%);
    background-size: 200% 200%;
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.announcement-bar span {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    background: var(--cream);
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--soft-black);
    text-decoration: none;
}

.logo-text span {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--rose-gold);
    margin-top: -3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--rose-gold);
    transition: width 0.3s;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--soft-black);
    color: var(--white) !important;
    padding: 14px 32px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--soft-black);
}

.nav-cta:hover {
    background: transparent;
    color: var(--soft-black) !important;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 10px;
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    color: var(--charcoal);
    transition: color 0.3s;
}

.cart-icon:hover svg {
    color: var(--rose-gold);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--rose-gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile nav controls container */
.mobile-nav-controls {
    display: none;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .mobile-nav-controls {
        display: flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 50%, var(--blush-deep) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(212, 165, 165, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 30px;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(183, 110, 121, 0.15);
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge::before {
    content: '✦';
    color: var(--gold);
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--soft-black);
    margin-bottom: 25px;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

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

.hero-subtitle {
    font-size: 17px;
    color: var(--charcoal);
    opacity: 0.8;
    max-width: 450px;
    margin-bottom: 40px;
    font-weight: 300;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
    animation: slideInLeft 0.8s ease-out 0.5s both;
}

.price-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 400;
    color: var(--soft-black);
}

.price-info {
    font-size: 13px;
    color: var(--rose-gold);
    letter-spacing: 1px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose) 100%);
    color: var(--white);
    padding: 20px 45px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.8s ease-out 0.6s both;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hero-cta:active {
    transform: scale(0.98);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(183, 110, 121, 0.4);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.hero-cta:hover svg {
    transform: translateX(5px);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
    animation: slideInLeft 0.8s ease-out 0.7s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--charcoal);
    opacity: 0.7;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--rose-gold);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
}

.product-showcase {
    position: relative;
    animation: floatProduct 4s ease-in-out infinite;
}

@keyframes floatProduct {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.product-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
    border-radius: 10px;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    font-size: 12px;
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge.badge-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.floating-badge.badge-3 {
    bottom: 35%;
    right: 0;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--rose-gold);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    color: var(--soft-black);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 16px;
    color: var(--charcoal);
    opacity: 0.7;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    padding: 100px 60px;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--cream);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-gold), var(--rose));
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(183, 110, 121, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
    border-radius: 50%;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--rose-gold);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--soft-black);
}

.benefit-card p {
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.7;
    line-height: 1.6;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 100px 60px;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(183, 110, 121, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

/* ============================================
   INGREDIENTS SECTION
   ============================================ */
.ingredients {
    padding: 100px 60px;
    background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
}

.ingredients-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.ingredients-visual {
    position: relative;
}

.ingredients-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    filter: brightness(1.05);
}

.ingredients-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 40px;
    max-width: 280px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.ingredients-overlay h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--soft-black);
}

.ingredients-overlay p {
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.7;
}

.ingredients-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.ingredient-item {
    padding: 25px;
    background: var(--white);
    border-left: 3px solid var(--rose-gold);
    transition: all 0.3s;
    border-radius: 0 10px 10px 0;
}

.ingredient-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.1);
}

.ingredient-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--soft-black);
}

.ingredient-item p {
    font-size: 13px;
    color: var(--charcoal);
    opacity: 0.7;
    line-height: 1.5;
}

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.certifications {
    padding: 80px 60px;
    background: var(--soft-black);
    color: var(--white);
}

.cert-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cert-item {
    text-align: center;
    opacity: 0.9;
}

.cert-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--rose-gold);
    border-radius: 50%;
}

.cert-icon svg {
    width: 32px;
    height: 32px;
    color: var(--rose-gold);
}

.cert-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    margin-bottom: 5px;
}

.cert-item p {
    font-size: 12px;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: 100px 60px;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 40px;
    background: var(--cream);
    position: relative;
    border-radius: 10px;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: var(--rose);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 500;
    color: var(--soft-black);
}

.testimonial-author span {
    display: block;
    font-weight: 300;
    color: var(--rose-gold);
    margin-top: 3px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 120px 60px;
    background: linear-gradient(135deg, var(--blush-deep) 0%, var(--blush) 50%, var(--rose) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    color: var(--soft-black);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: 40px;
}

.cta-price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 40px 60px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.cta-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    color: var(--rose-gold);
    line-height: 1;
}

.cta-shipping {
    font-size: 14px;
    color: var(--charcoal);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-shipping svg {
    width: 18px;
    height: 18px;
    color: var(--rose-gold);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--soft-black);
    color: var(--white);
    padding: 22px 55px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose-gold);
    color: var(--white);
    padding: 12px 25px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-top: 25px;
    animation: pulse 2s ease-in-out infinite;
    border-radius: 50px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 100px 60px;
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    background: var(--white);
    border-left: 3px solid transparent;
    transition: all 0.3s;
    border-radius: 0 10px 10px 0;
}

.faq-item:hover {
    border-left-color: var(--rose-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--soft-black);
}

.faq-item p {
    font-size: 14px;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 60px;
    background: var(--soft-black);
    color: var(--white);
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 13px;
    opacity: 0.6;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copy {
    font-size: 12px;
    opacity: 0.5;
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 2001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--blush);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--soft-black);
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.cart-close svg {
    width: 24px;
    height: 24px;
    color: var(--charcoal);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--blush);
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--soft-black);
}

.cart-item-details .price {
    color: var(--rose-gold);
    font-weight: 500;
    margin-bottom: 15px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-controls button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--blush-deep);
    background: var(--cream);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 4px;
}

.quantity-controls button:hover {
    background: var(--rose-gold);
    color: var(--white);
    border-color: var(--rose-gold);
}

.quantity-controls span {
    font-weight: 500;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    color: var(--rose);
    cursor: pointer;
    font-size: 12px;
    margin-top: 10px;
    display: inline-block;
}

.remove-item:hover {
    color: var(--error);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--charcoal);
    opacity: 0.6;
}

.cart-empty svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--blush-deep);
}

.cart-footer {
    padding: 25px 30px;
    border-top: 1px solid var(--blush);
    background: var(--cream);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.cart-shipping {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--success);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--blush-deep);
}

.cart-total .amount {
    color: var(--rose-gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: var(--soft-black);
    color: var(--white);
    border: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: var(--rose-gold);
}

.checkout-btn:disabled {
    background: var(--blush-deep);
    cursor: not-allowed;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page {
    min-height: 100vh;
    padding: 40px 60px;
    background: var(--cream);
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.checkout-form h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--soft-black);
}

.form-section {
    background: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.form-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--soft-black);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--blush);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--blush-deep);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
    border-radius: 5px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--rose-gold);
}

.form-group input.error {
    border-color: var(--error);
}

.error-message {
    color: var(--error);
    font-size: 12px;
    margin-top: 5px;
}

.order-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
}

.summary-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--soft-black);
}

.summary-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--blush);
}

.summary-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.summary-item-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.summary-item-details .qty {
    font-size: 12px;
    color: var(--charcoal);
    opacity: 0.7;
}

.summary-item-details .price {
    color: var(--rose-gold);
    font-weight: 500;
    margin-top: 5px;
}

.summary-totals {
    padding-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.summary-row.shipping {
    color: var(--success);
}

.summary-row.total {
    font-size: 18px;
    font-weight: 600;
    padding-top: 15px;
    border-top: 1px solid var(--blush-deep);
    margin-top: 15px;
}

.summary-row.total .amount {
    color: var(--rose-gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
}

.pay-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose) 100%);
    color: var(--white);
    border: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 25px;
    transition: all 0.3s;
    border-radius: 5px;
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.4);
}

.pay-btn:disabled {
    background: var(--blush-deep);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 12px;
    color: var(--charcoal);
    opacity: 0.7;
}

.secure-badge svg {
    width: 16px;
    height: 16px;
    color: var(--success);
}

/* ============================================
   SUCCESS PAGE
   ============================================ */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--cream);
}

.success-content {
    text-align: center;
    max-width: 500px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-icon svg {
    width: 50px;
    height: 50px;
    color: var(--white);
}

.success-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--soft-black);
}

.success-content p {
    font-size: 16px;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 30px;
}

.order-number {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.order-number span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--charcoal);
    opacity: 0.6;
    margin-bottom: 5px;
}

.order-number strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--rose-gold);
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

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

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
}

.toast {
    background: var(--soft-black);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 8px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease-out;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.toast.success {
    background: var(--success);
}

.toast.error {
    background: var(--error);
}

.toast svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: 60px 40px;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        min-height: 50vh;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .ingredients-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 25px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        padding: 40px 25px;
    }
    
    .benefits, .ingredients, .testimonials, .cta-section, .faq, .gallery {
        padding: 60px 25px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
    
    .ingredients-list {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        gap: 30px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .hero-trust {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .checkout-page {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

/* ============================================
   MOBILE MENU & MOBILE EXPERIENCE
   ============================================ */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    color: var(--charcoal);
    pointer-events: none;
}

/* Mobile cart icon in header */
.mobile-cart-icon {
    display: none;
    position: relative;
    cursor: pointer;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-cart-icon svg {
    width: 24px;
    height: 24px;
    color: var(--charcoal);
    pointer-events: none;
}

.mobile-cart-icon .cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--rose-gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile navigation overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile navigation drawer */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: var(--cream);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0,0,0,0.2);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid var(--blush-deep);
    background: var(--white);
}

.mobile-nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--soft-black);
}

.mobile-nav-logo span {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--rose-gold);
    margin-top: -2px;
}

.mobile-nav-close {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
    color: var(--charcoal);
}

.mobile-nav-links {
    padding: 25px;
}

.mobile-nav-links a {
    display: block;
    padding: 18px 0;
    text-decoration: none;
    color: var(--charcoal);
    font-size: 15px;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--blush);
    transition: color 0.3s, padding-left 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--rose-gold);
    padding-left: 10px;
}

.mobile-nav-links a:last-child {
    border-bottom: none;
}

.mobile-nav-cta {
    display: block;
    margin: 20px 25px;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose) 100%);
    color: var(--white) !important;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 5px;
    border: none !important;
}

/* Floating mobile cart bar */
.mobile-cart-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    z-index: 1500;
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
}

.mobile-cart-bar.visible {
    display: block;
}

.mobile-cart-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.mobile-cart-info {
    display: flex;
    flex-direction: column;
}

.mobile-cart-count {
    font-size: 12px;
    color: var(--charcoal);
    opacity: 0.7;
}

.mobile-cart-total {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--soft-black);
    font-weight: 500;
}

.mobile-cart-bar-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose) 100%);
    color: var(--white);
    padding: 14px 25px;
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-cart-bar-btn:active {
    transform: scale(0.98);
}

.mobile-cart-bar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.4);
}

.mobile-cart-bar-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile-specific body padding when cart bar is visible */
body.has-cart-items {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-cart-icon {
        display: block;
    }
    
    .mobile-nav-overlay {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    /* Hide desktop nav elements */
    nav {
        padding: 12px 15px;
    }
    
    nav .nav-links {
        display: none !important;
    }
    
    .nav-links.active {
        display: none !important;
    }
    
    /* Mobile header layout */
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 1000;
    }
    
    .logo-text {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .logo-text span {
        font-size: 9px;
        letter-spacing: 2px;
    }
    
    .mobile-nav-controls {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    /* Announcement bar mobile */
    .announcement-bar {
        font-size: 11px;
        padding: 10px 15px;
        letter-spacing: 1px;
    }
    
    /* Hero mobile improvements */
    .hero-content {
        padding: 30px 20px;
        text-align: center;
    }
    
    .hero-badge {
        margin: 0 auto 20px;
    }
    
    .hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .hero-price {
        justify-content: center;
        margin-bottom: 25px;
    }
    
    .price-main {
        font-size: 42px;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 12px;
    }
    
    .hero-trust {
        justify-content: center;
        margin-top: 25px;
    }
    
    .trust-item {
        font-size: 11px;
    }
    
    /* Product image mobile */
    .hero-visual {
        padding: 20px;
        min-height: 40vh;
    }
    
    .product-image {
        max-height: 50vh;
    }
    
    /* Sections mobile padding */
    .benefits, .ingredients, .testimonials, .cta-section, .faq, .gallery {
        padding: 50px 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    /* CTA section mobile */
    .cta-content {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-price {
        font-size: 48px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
    }
    
    /* Footer mobile */
    footer {
        padding: 40px 20px 100px; /* Extra bottom padding for mobile cart bar */
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    /* Cart sidebar mobile full screen */
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
    }
    
    .cart-header {
        padding: 20px;
    }
    
    .cart-header h3 {
        font-size: 20px;
    }
    
    .cart-footer {
        padding: 20px;
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
    
    .checkout-btn {
        padding: 18px;
        font-size: 13px;
    }
    
    /* Form improvements mobile */
    .form-section {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 16px;
    }
    
    /* Pay button mobile */
    .pay-btn {
        padding: 18px;
        font-size: 13px;
    }
    
    /* Testimonials mobile */
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    /* Benefits cards mobile */
    .benefit-card {
        padding: 25px 20px;
    }
    
    /* FAQ mobile */
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h4 {
        font-size: 16px;
    }
    
    /* Ingredients mobile */
    .ingredient-item {
        padding: 15px;
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .price-main {
        font-size: 36px;
    }
    
    .hero-cta {
        padding: 16px 20px;
        font-size: 11px;
    }
    
    .mobile-cart-bar-btn {
        padding: 12px 18px;
        font-size: 11px;
    }
    
    .mobile-cart-total {
        font-size: 20px;
    }
    
    .cta-price {
        font-size: 40px;
    }
}

/* iOS safe area support */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-cart-bar {
        padding-bottom: calc(15px + env(safe-area-inset-bottom));
    }
    
    .cart-footer {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
    
    footer {
        padding-bottom: calc(40px + env(safe-area-inset-bottom) + 80px);
    }
}
