/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette dal Logo "My Mindful Mandala" */
    --primary: #D4A574;        /* Oro Champagne - mandala logo */
    --primary-light: #E5C9A3;  /* Oro chiaro */
    --primary-dark: #B8865A;   /* Oro scuro */

    /* Colori Secondari dal Logo */
    --secondary: #C9B9A5;      /* Beige Taupe - sfondo logo */
    --secondary-light: #DBD0C1;/* Beige chiaro */
    --accent: #A68B65;         /* Bronzo dorato */
    --accent-light: #BDA485;   /* Bronzo chiaro */

    /* Neutrali dal Logo */
    --cream: #F5EFE7;          /* Crema/Avorio - centro logo */
    --white: #FFFFFF;
    --beige: #E8DED0;          /* Beige caldo */
    --light-grey: #F0EBE3;     /* Grigio caldo */
    --soft-beige: #EDE5DB;     /* Beige soft */

    /* Testi dal Logo */
    --text-dark: #1A1A1A;      /* Nero logo */
    --text-medium: #2C2C2C;
    --text-light: #6B6B6B;
    --text-lighter: #9B9B9B;

    /* Accenti Premium */
    --gold: #D4A574;           /* Oro champagne */
    --bronze: #A68B65;         /* Bronzo */

    /* Shadows Calde */
    --shadow: rgba(212, 165, 116, 0.12);
    --shadow-md: rgba(212, 165, 116, 0.16);
    --shadow-lg: rgba(212, 165, 116, 0.20);
    --shadow-hover: rgba(212, 165, 116, 0.24);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: radial-gradient(ellipse at center, var(--cream) 0%, var(--beige) 100%);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Pattern di sfondo elegante - stile logo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(212, 165, 116, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(201, 185, 165, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

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

/* === HEADER === */
.header {
    background: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 8px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--beige);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 0.9rem;
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.logo a {
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

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

.cart-btn {
    background: var(--primary);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px var(--shadow);
}

.cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-hover);
}

.cart-count {
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

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

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--sky-blue) 100%);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    background: var(--white);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: var(--cream);
}

/* === ABOUT SECTION === */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--ocean-blue);
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* === PRODUCTS SECTION === */
.products {
    padding: 5rem 0;
    background: var(--cream);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    color: var(--ocean-blue);
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

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

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeIn 0.5s ease;
    border: 3px solid transparent;
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::after {
    opacity: 0.3;
}

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

.product-card.hidden {
    display: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px var(--shadow);
    letter-spacing: 0.5px;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(0deg); }
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.4rem;
    color: var(--ocean-blue);
    margin-bottom: 0.8rem;
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.add-to-cart-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    touch-action: manipulation;
}

.add-to-cart-btn::before {
    content: '';
    display: none;
}

.add-to-cart-btn:hover::before {
    display: none;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-hover);
}

/* === CONTACT SECTION === */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--beige) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-email {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-social a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-social a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--beige);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.submit-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--ocean-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

/* === FOOTER === */
.footer {
    background: var(--ocean-blue);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-quote {
    font-style: italic;
    opacity: 0.9;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

/* === CART SIDEBAR === */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--beige);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cream);
}

.cart-header h3 {
    color: var(--ocean-blue);
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: var(--primary-blue);
}

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

.empty-cart {
    text-align: center;
    color: var(--text-light);
    padding: 3rem 0;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 10px;
    margin-bottom: 1rem;
}

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

.cart-item-name {
    font-weight: 600;
    color: var(--ocean-blue);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary-blue);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: var(--ocean-blue);
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #E74C3C;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--beige);
    background: var(--cream);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ocean-blue);
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.checkout-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

/* Payment Buttons */
.payment-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.payment-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    text-transform: none;
}

.stripe-btn {
    background: #635BFF;
    color: white;
}

.stripe-btn:hover {
    background: #4F46E5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.4);
}

.paypal-btn {
    background: #0070BA;
    color: white;
}

.paypal-btn:hover {
    background: #005ea6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 112, 186, 0.4);
}

.payment-info {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* === LANGUAGE SWITCHER === */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--primary-blue);
    background: var(--cream);
}

.lang-separator {
    color: var(--text-light);
}

/* === HERO HOME === */
.hero-home {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

/* Ottimizzazione video performance */
.hero-background video {
    /* Migliora le performance su mobile */
    will-change: transform;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(212, 165, 116, 0.70) 0%,
        rgba(184, 134, 90, 0.75) 50%,
        rgba(166, 139, 101, 0.80) 100%);
    z-index: 2;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg,
            rgba(212, 165, 116, 0.70) 0%,
            rgba(184, 134, 90, 0.75) 50%,
            rgba(166, 139, 101, 0.80) 100%);
    }
    50% {
        background: linear-gradient(135deg,
            rgba(166, 139, 101, 0.80) 0%,
            rgba(184, 134, 90, 0.75) 50%,
            rgba(212, 165, 116, 0.70) 100%);
    }
}

.hero-home .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-home .hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-home .hero-subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero-home .hero-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease;
}

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

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.cta-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn.primary {
    background: var(--secondary);
    color: var(--white);
    font-weight: 700;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-hover);
    background: var(--secondary-light);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 700;
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: var(--white);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* === SOCIAL PROOF BANNER === */
.social-proof-banner {
    background: var(--light-grey);
    padding: 3rem 0;
    box-shadow: 0 2px 12px var(--shadow);
    position: relative;
    overflow: hidden;
}

.social-proof-banner::before {
    content: '';
    display: none;
}

.social-proof-banner::after {
    content: '';
    display: none;
}

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

.proof-item {
    padding: 1rem;
}

.proof-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

@keyframes colorShift {
    0%, 100% {
        color: var(--primary);
    }
    50% {
        color: var(--primary-light);
    }
}

.proof-text {
    color: var(--text-light);
    font-size: 1rem;
}

/* === USP SECTION === */
.usp-section {
    padding: 5rem 0;
    background: var(--cream);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: -1.5rem;
    margin-bottom: 3rem;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.usp-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, var(--sunset-pink), var(--lavender), var(--mint), var(--sunshine), var(--sunset-pink));
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.usp-card:hover::before {
    opacity: 0.1;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.usp-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--sunset-pink);
}

.usp-card:nth-child(2):hover {
    border-color: var(--lavender);
}

.usp-card:nth-child(3):hover {
    border-color: var(--mint);
}

.usp-card:nth-child(4):hover {
    border-color: var(--sunshine);
}

.usp-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    filter: drop-shadow(0 3px 8px rgba(212, 165, 116, 0.3));
    transition: all 0.3s ease;
}

.usp-card:hover .usp-icon {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.usp-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.usp-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* === FEATURED PRODUCTS === */
.featured-products {
    padding: 5rem 0;
    background: var(--white);
}

.product-card.featured {
    border: 3px solid var(--gold);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 144, 226, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover .product-overlay {
    opacity: 1;
    pointer-events: auto;
}

.quick-view {
    background: var(--white);
    color: var(--primary-blue);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-view:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.product-badge.new {
    background: var(--primary-blue);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* === ABOUT PREVIEW === */
.about-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}

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

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-hover);
}

.about-text h2 {
    font-size: 3rem;
    color: var(--ocean-blue);
    margin-bottom: 1rem;
}

.about-text .intro {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text blockquote {
    background: var(--white);
    padding: 2rem;
    border-left: 5px solid var(--primary-blue);
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-radius: 10px;
}

/* === INSTAGRAM SECTION === */
.instagram-section {
    padding: 5rem 0;
    background: var(--white);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.insta-item:hover {
    transform: scale(1.05);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 144, 226, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 5rem 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--soft-pink) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 5px solid var(--sunset-pink);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 5rem;
    color: var(--lavender);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card:nth-child(2) {
    border-left-color: var(--lavender);
}

.testimonial-card:nth-child(3) {
    border-left-color: var(--mint);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 5px rgba(255, 215, 0, 0.5));
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--ocean-blue);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === NEWSLETTER === */
.newsletter {
    padding: 5rem 0;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    display: none;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form input:focus {
    outline: 3px solid rgba(255,255,255,0.3);
}

.newsletter-privacy {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* === FOOTER EXTENDED === */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    display: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.contact-info li {
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.nav a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* === ABOUT PAGE === */
.about-hero, .contact-hero, .blog-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    display: none;
}

.about-main {
    padding: 5rem 0;
    background: var(--white);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.about-image-large {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
}

.about-image-large img {
    width: 100%;
    display: block;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.emoji-decoration {
    position: absolute;
    font-size: 3rem;
    animation: float 4s ease-in-out infinite;
}

.emoji-decoration:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.emoji-decoration:nth-child(2) {
    bottom: 15%;
    left: 10%;
    animation-delay: 1s;
}

.emoji-decoration:nth-child(3) {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

.about-story h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--sunset-pink), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.story-highlight {
    background: linear-gradient(135deg, var(--soft-pink), var(--cream));
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--sunset-pink);
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-story h3 {
    font-size: 2rem;
    color: var(--ocean-blue);
    margin: 3rem 0 2rem;
}

.rainbow-quote {
    background: linear-gradient(135deg, var(--sunset-pink), var(--lavender), var(--mint), var(--sunshine));
    padding: 2.5rem;
    border-radius: 20px;
    font-size: 1.5rem;
    text-align: center;
    color: var(--white);
    font-style: italic;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sunset-pink), var(--coral));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--ocean-blue);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.values-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cream), var(--soft-pink));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    border-color: var(--sunset-pink);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 157, 0.3));
}

.value-card h3 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--sunset-pink), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.social-proof-about {
    padding: 4rem 0;
    background: var(--white);
}

.proof-card-large {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--soft-pink), var(--cream));
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.3);
}

.rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stars-large {
    font-size: 2.5rem;
    filter: drop-shadow(0 5px 10px rgba(255, 215, 0, 0.5));
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--sunset-pink), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cormorant Garamond', serif;
}

.rating-label {
    display: block;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.proof-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.about-gallery {
    padding: 5rem 0;
    background: var(--cream);
}

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

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--lavender), var(--mint));
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === CONTACT PAGE === */
.contact-hero {
    background: linear-gradient(135deg, var(--sunset-pink) 0%, var(--coral) 100%);
}

.contact-main {
    padding: 5rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
}

.contact-info-box, .contact-form-box {
    background: linear-gradient(135deg, var(--white), var(--soft-pink));
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-info-box h2, .contact-form-box h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--sunset-pink), var(--lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--beige);
}

.info-item:last-of-type {
    border-bottom: none;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.3rem;
    color: var(--ocean-blue);
    margin-bottom: 0.8rem;
}

.info-content a {
    color: var(--sunset-pink);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.info-content a:hover {
    text-decoration: underline;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.9rem;
    color: var(--mint);
    font-weight: 600;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.8rem 1rem;
    background: var(--cream);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--lavender);
    color: var(--white);
    transform: translateX(5px);
}

.trust-badge {
    background: linear-gradient(135deg, var(--sunshine), var(--gold));
    padding: 1.5rem;
    border-radius: 20px;
    margin-top: 2rem;
}

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

.badge-stars {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-intro {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--ocean-blue);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.5rem;
    border: 3px solid var(--beige);
    border-radius: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sunset-pink);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.2);
}

.submit-btn-main {
    background: linear-gradient(135deg, var(--sunset-pink), var(--coral));
    color: var(--white);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.submit-btn-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.6);
}

.faq-section {
    padding: 5rem 0;
    background: var(--cream);
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 5px solid var(--mint);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 207, 159, 0.3);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--ocean-blue);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--lavender), var(--mint));
}

.cta-box-contact {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-box-contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box-contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* === BLOG PAGE === */
.blog-hero {
    background: linear-gradient(135deg, var(--mint) 0%, var(--teal) 100%);
}

.blog-main {
    padding: 5rem 0;
    background: var(--cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.blog-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border: 3px solid var(--gold);
}

.blog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--sunshine), var(--gold));
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 217, 61, 0.5);
}

.blog-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.3);
}

.blog-image {
    height: 280px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-category {
    background: linear-gradient(135deg, var(--lavender), var(--violet));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-content h2 {
    font-size: 1.8rem;
    color: var(--ocean-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card.featured .blog-content h2 {
    font-size: 2.3rem;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--sunset-pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
    color: var(--coral);
}

.blog-newsletter {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--sunset-pink), var(--lavender), var(--mint));
}

.newsletter-box-blog {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.newsletter-box-blog h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.newsletter-box-blog p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form-blog {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.newsletter-form-blog input {
    flex: 1;
    min-width: 250px;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

/* === SHOP PAGE === */
.shop-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 0.3;
}

.shop-hero .container {
    position: relative;
    z-index: 1;
}

.shop-hero .hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shop-hero .emoji-float {
    position: absolute;
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.shop-hero .emoji-float:nth-child(2) {
    animation-delay: 1s;
}

.shop-hero .emoji-float:nth-child(3) {
    animation-delay: 2s;
}

.shop-hero .emoji-float:nth-child(4) {
    animation-delay: 3s;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.shop-filters {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 90;
    border-bottom: 1px solid var(--beige);
    backdrop-filter: blur(10px);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 30px;
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px var(--shadow-hover);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 3px 10px var(--shadow-hover);
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sort-dropdown label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.sort-dropdown select {
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 107, 157, 0.3);
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 500;
}

.sort-dropdown select:hover {
    border-color: var(--sunset-pink);
}

.sort-dropdown select:focus {
    outline: none;
    border-color: var(--sunset-pink);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.shop-products {
    padding: 4rem 0;
    background: var(--cream);
    min-height: 60vh;
}

.custom-order-cta {
    background: linear-gradient(135deg,
        rgba(255, 107, 157, 0.08) 0%,
        rgba(195, 177, 225, 0.08) 50%,
        rgba(152, 216, 200, 0.08) 100%);
    padding: 5rem 0;
}

.cta-box-shop {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.cta-box-shop::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
        var(--sunset-pink),
        var(--lavender),
        var(--mint),
        var(--sunshine));
    border-radius: 30px;
    z-index: -1;
    opacity: 0.5;
}

.cta-box-shop .emoji-decoration {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.cta-box-shop .emoji-decoration:nth-child(2) {
    animation-delay: 1.5s;
}

.cta-box-shop h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--sunset-pink), var(--violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-box-shop p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-box-shop .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1.5rem;
    opacity: 0.9;
}

/* === RESPONSIVE === */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero-home .hero-title {
        font-size: 3.5rem;
    }

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

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

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

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

    .blog-card.featured {
        grid-column: span 2;
    }
}

/* Tablets and Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header {
        padding: 1rem 0;
    }

    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 0.85rem;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        width: 100%;
    }

    .nav a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .language-switcher {
        order: -1;
        width: 100%;
        justify-content: center;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 107, 157, 0.1);
    }

    .cart-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--sunset-pink), var(--lavender));
        padding: 1rem;
        border-radius: 50%;
        box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cart-btn svg {
        width: 28px;
        height: 28px;
    }

    .cart-count {
        top: -5px;
        right: -5px;
        font-size: 0.75rem;
        min-width: 22px;
        height: 22px;
    }

    /* Hero Sections */
    .hero {
        padding: 3rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-home {
        height: 60vh;
        min-height: 450px;
    }

    .hero-home video {
        object-fit: cover;
    }

    .hero-home .hero-content {
        padding: 0 1rem;
    }

    .hero-home .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-home .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .hero-home .hero-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 50px;
        touch-action: manipulation;
    }

    /* Grid Layouts */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Cart */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

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

    /* Typography */
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Social Proof & USP */
    .proof-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .proof-item {
        padding: 1.5rem;
    }

    .proof-number {
        font-size: 2rem;
    }

    .usp-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .usp-card {
        padding: 2rem 1.5rem;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Instagram Grid */
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .instagram-item {
        height: 280px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input {
        width: 100%;
        min-height: 50px;
        font-size: 1rem;
    }

    .newsletter-form button {
        width: 100%;
        min-height: 50px;
        font-size: 1rem;
    }

    .newsletter-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .newsletter-content p {
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-col h3, .footer-col h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .footer-col p, .footer-col li {
        font-size: 0.95rem;
    }

    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }

    /* About Page Responsive */
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-large {
        max-width: 100%;
    }

    .about-story h2 {
        font-size: 2rem;
    }

    .process-steps {
        gap: 2rem;
    }

    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        margin-bottom: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .proof-card-large {
        padding: 3rem 2rem;
    }

    .rating-badge {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .stars-large {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
    }

    /* Contact Page Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        padding-bottom: 3rem;
        border-bottom: 2px solid rgba(255, 107, 157, 0.2);
    }

    .contact-info-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .info-icon {
        margin-bottom: 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .trust-badge-contact {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Blog Page Responsive */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-card.featured {
        grid-column: span 1;
    }

    .blog-card .blog-content {
        padding: 2rem;
    }

    .blog-card h2 {
        font-size: 1.5rem;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .newsletter-box-blog {
        padding: 3rem 2rem;
    }

    .newsletter-box-blog h2 {
        font-size: 2rem;
    }

    .newsletter-form-blog {
        flex-direction: column;
    }

    .newsletter-form-blog input {
        width: 100%;
    }

    .newsletter-form-blog button {
        width: 100%;
    }

    /* Shop Page Responsive */
    .shop-hero {
        padding: 3rem 1rem;
    }

    .shop-hero .page-title {
        font-size: 2.5rem;
    }

    .shop-hero .page-subtitle {
        font-size: 1.1rem;
    }

    .shop-hero .emoji-float {
        font-size: 2rem;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .filter-buttons {
        justify-content: center;
    }

    .filter-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .sort-dropdown {
        justify-content: center;
    }

    .cta-box-shop {
        padding: 3rem 2rem;
        border-radius: 20px;
    }

    .cta-box-shop h2 {
        font-size: 2rem;
    }

    .cta-box-shop p {
        font-size: 1.1rem;
    }

    .cta-box-shop .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-box-shop .cta-btn {
        width: 100%;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Logo and Header */
    .logo h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .nav a {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    /* Hero Sections */
    .hero-home {
        min-height: 400px;
        height: 55vh;
    }

    .hero-home .hero-title {
        font-size: 1.8rem;
    }

    .hero-home .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-home .hero-text {
        font-size: 0.9rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    /* Buttons */
    .cta-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        min-height: 48px;
    }

    /* Product Cards */
    .product-card {
        border-radius: 15px;
    }

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

    .product-description {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    /* About Page */
    .about-story h2 {
        font-size: 1.7rem;
    }

    .process-step h4 {
        font-size: 1.1rem;
    }

    .value-card h3 {
        font-size: 1.2rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    /* Contact Page */
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 0.95rem;
        padding: 0.9rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    /* Blog Page */
    .blog-card h2 {
        font-size: 1.3rem;
    }

    .blog-category {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
    }

    .blog-date {
        font-size: 0.8rem;
    }

    /* Shop Page */
    .filter-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .shop-hero .emoji-float {
        font-size: 1.5rem;
    }

    /* Cart */
    .cart-btn {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    .cart-btn svg {
        width: 24px;
        height: 24px;
    }

    /* Footer */
    .footer-col h3 {
        font-size: 1.2rem;
    }

    .footer-col p,
    .footer-col li {
        font-size: 0.9rem;
    }

    .footer-quote {
        font-size: 0.9rem;
    }

    /* Emoji Decorations */
    .emoji-decoration {
        font-size: 2rem !important;
    }

    .emoji-float {
        font-size: 1.8rem;
    }
}
