:root {
    /* Shopify Aesthetic Variables */
    --bg-soft: #FDF7F9;
    --bg-dark: #0A0510;
    --primary-gradient: linear-gradient(45deg, #501f5a, #915ba4, #c2649b, #e783b5);
    --text-deep: #271539;
    --text-muted: #554a5f;
    --rosa-vibrante: #e783b5;
    --purple-soft: #915ba4;
    --whatsapp-green: #25D366;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.9);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-soft);
    color: var(--text-deep);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Background Gradients (Global) */
.bg-radial {
    background-image: 
      radial-gradient(circle at 0% 0%, rgba(231, 131, 181, 0.1) 0%, transparent 40%),
      radial-gradient(circle at 100% 100%, rgba(145, 91, 164, 0.08) 0%, transparent 40%) !important;
}

/* Header & Navigation */
header {
    background: rgba(253, 247, 249, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(145, 91, 164, 0.05);
}

#main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-img {
    height: 45px;
    width: auto;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-deep);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle:hover span {
    background: var(--rosa-vibrante);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-deep);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

/* Glass Components */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 35px;
    box-shadow: 0 20px 50px rgba(145, 91, 164, 0.08);
    padding: 40px;
}

/* Button Tornasol */
.btn-tornasol {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-gradient);
    background-size: 300% 300%;
    animation: tornasol-move 5s ease infinite;
    color: #FFFFFF !important;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 10px 25px rgba(194, 100, 155, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

@keyframes tornasol-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-tornasol:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(194, 100, 155, 0.4);
    filter: brightness(1.1);
}

.btn-outline {
    display: inline-block;
    padding: 14px 38px;
    border: 1px solid var(--purple-soft);
    color: var(--purple-soft);
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--purple-soft);
    color: white;
}

/* Sections */
section {
    padding: 100px 10%;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--purple-soft);
    margin-bottom: 15px;
    display: block;
}

.text-gradient {
    background: linear-gradient(90deg, #501f5a, #c2649b, #e783b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Dark Sections (Manifesto) */
.dark-section {
    background-color: var(--bg-dark) !important;
    background-image: 
      radial-gradient(circle at 50% 10%, rgba(80, 31, 90, 0.25) 0%, transparent 50%) !important;
    color: #FFFFFF !important;
}

.dark-section h2 { color: #FFFFFF; }

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 25px;
    padding: 10px;
    border: 1px solid rgba(145, 91, 164, 0.05);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(145, 91, 164, 0.1);
}

.product-img {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    padding: 60px 10%;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-icon {
    color: white;
    opacity: 0.6;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--rosa-vibrante);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp-green);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 3000;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@media (max-width: 768px) {
    section { padding: 60px 5%; }
    
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -15px 0 35px rgba(0,0,0,0.1);
        z-index: 1500;
    }

    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
}
