@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
    --primary: #00C2FF; /* Cyan */
    --primary-light: #E6FAFF; 
    --primary-dark: #009acc;
    --accent: #FF1493; /* Pink */
    --accent-light: #FFE6F3;
    --accent-dark: #cc1076;
    --yellow: #FFD700; /* Yellow */
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --bg-light: #F9F9F9;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.9);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

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

/* Glassmorphism */
.glass-nav {
    background: rgba(255, 20, 147, 0.95); /* Magenta vibrante */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-dark);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.glass-nav.scrolled {
    padding: 0.2rem 0;
    box-shadow: var(--shadow);
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: rgba(255, 255, 255, 0.8);
}

.logo i {
    color: var(--white); 
}

.nav-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    margin: 0 1rem;
    font-weight: 300;
}

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

.nav-links a {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.05rem;
    transition: var(--transition);
}

.nav-links a i {
    width: 20px;
    height: 20px;
}

.nav-links a:hover {
    color: var(--yellow);
    transform: scale(1.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-btn {
    background: var(--accent);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    border: 2px solid transparent;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
    background: var(--accent-dark);
    color: var(--white);
}

/* Hero Full Section */
.hero-full {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    display: flex;
    align-items: flex-end; /* Moved to the bottom */
    padding-bottom: 8rem; /* Space from the bottom edge */
    overflow: hidden;
    background: var(--text-dark);
}

.hero-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 0.8; /* Increased from 0.6 for clearer images */
}

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

.hero-full-container {
    position: relative;
    z-index: 3;
    pointer-events: none;
    margin-left: 0;
    width: 100%;
    padding-left: 5%; /* Aligned to the left but with a nice breathing space */
}

.hero-content {
    max-width: 700px;
    pointer-events: auto;
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 5.5rem; /* Slightly larger for better bottom-left impact */
    line-height: 0.9;
    margin-bottom: 2rem;
    color: var(--white);
}

.hero-content h1 span {
    background: linear-gradient(to right, var(--primary), var(--accent), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.btn-secondary {
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.btn-secondary:hover {
    color: var(--white);
    background: var(--primary);
}

/* Sections General */
section {
    padding: 4rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Trust Stats Section */
.bg-primary-light {
    background-color: var(--primary-light);
}

.stats-section {
    padding: 3rem 0;
}

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

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

#beneficios {
    /* Herencia de padding general */
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--yellow);
    color: var(--text-dark);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: rotate(0deg) scale(1.1);
    background: var(--primary);
    color: var(--white);
}

/* Product Showcase */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

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

.product-img {
    height: 300px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

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

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

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

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--text-dark);
}

.product-header i {
    color: var(--accent);
}

.product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 45px;
}

.product-cta {
    display: block;
    text-align: center;
    background: var(--bg-light);
    color: var(--primary);
    box-shadow: none;
    border: 2px solid var(--primary);
}

.product-cta:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 194, 255, 0.3);
}

/* Our Process Section */
#proceso {
    background: var(--white);
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 24px;
    transition: var(--transition);
}

.process-step:hover {
    background: var(--accent-light);
    transform: translateY(-5px);
}

.process-number {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    box-shadow: var(--shadow);
}

/* Testimonials Section */
#testimonios {
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.stars {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.3rem;
}

.star-svg {
    width: 22px;
    height: 22px;
    fill: var(--yellow);
    stroke: var(--yellow);
}

.review {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    overflow: hidden;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.client-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* FAQ Section */
#faq {
    background: var(--primary-light);
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 1.8rem;
    border-radius: 20px;
    background: var(--white);
}

.faq-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-card h4 i {
    color: var(--primary);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.footer-logo span {
    color: #aaaaaa; /* Light gray for footer contrast */
}

.footer-logo i {
    color: var(--primary);
}

[data-lucide="whatsapp"] {
    color: #25D366;
}

[data-lucide="instagram"] {
    color: #E4405F;
}

.float-wa [data-lucide="whatsapp"] {
    color: white;
}

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

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

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-contact-link {
    color: var(--white);
    text-decoration: underline;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--primary);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-contact-link i {
    width: 16px;
    height: 16px;
    color: var(--cyan);
}

a.footer-contact-link:hover {
    color: var(--cyan);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.dev-credit a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.dev-credit a:hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--cyan);
}

/* Floating WhatsApp Button */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.float-wa i {
    width: 35px;
    height: 35px;
}

.float-wa:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    color: white;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

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

.hero-content h1.reveal { transition-delay: 0.2s; }
.hero-content p.reveal { transition-delay: 0.4s; }
.hero-content .hero-buttons.reveal { transition-delay: 0.6s; }

/* Shopping Cart */
/* Floating Cart Button */
.float-cart {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    pointer-events: none;
}

.float-cart.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}

.float-cart:hover {
    transform: scale(1.1);
    background-color: var(--accent-dark);
}

.float-cart i {
    width: 30px;
    height: 30px;
}

#cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--yellow);
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 1002;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    padding: 1.5rem 2rem;
    background: var(--accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.cart-header h3 {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 700;
}

.cart-header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.clear-cart-btn, #close-cart {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.clear-cart-btn:hover {
    background: #ff4d4d;
}

#close-cart:hover {
    background: var(--white);
    color: var(--accent);
    transform: rotate(90deg);
}

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

.empty-cart-msg {
    text-align: center;
    color: var(--text-light);
    margin-top: 3rem;
    font-style: italic;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.item-title-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.item-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.item-details {
    display: flex;
    flex-direction: column;
}

.item-details h4 {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.cart-item-option {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    margin-top: 2px;
}

.item-qty {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.qty-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.remove-item {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    margin-left: 1rem;
    opacity: 0.6;
    transition: var(--transition);
}

.remove-item:hover {
    opacity: 1;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Product Actions (Landing Page) */
/* Product Options (Sizes, etc) */
.product-options {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-options span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-selector {
    display: flex;
    gap: 0.5rem;
}

.size-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.size-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.size-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(255, 20, 147, 0.3);
}

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

.main-qty-selector {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2px;
    border: 1px solid rgba(0,0,0,0.05);
}

.qty-btn-main {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn-main:hover {
    color: var(--primary);
}

.qty-input {
    width: 40px;
    border: none;
    background: none;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-actions .add-to-cart {
    flex: 1;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Toast System */
.toast-container {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    pointer-events: none;
}

.toast {
    background: var(--white);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-left: 4px solid var(--primary);
    pointer-events: auto;
    animation: toast-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
               toast-out 0.4s 2.5s forwards;
}

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

@keyframes toast-out {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.9); }
}

.whatsapp-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #25D366;
    border: none;
}

.whatsapp-btn:hover {
    background: #1ebe57;
}

.whatsapp-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.cart-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: var(--primary-light);
    padding: 0.8rem;
    border-radius: 12px;
    line-height: 1.4;
}

.cart-note i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 450px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-full {
        text-align: left;
        padding-bottom: 4rem;
        align-items: flex-end;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        margin: 0 0 2.5rem;
    }
    .hero-buttons {
        justify-content: flex-start;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    
    #mobile-menu-btn {
        display: block !important;
        color: var(--white) !important;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-links a {
        color: var(--text-dark);
        justify-content: flex-start;
        padding: 0.8rem 1rem;
        width: 250px;
        gap: 1.2rem;
        font-size: 1rem;
    }

    .nav-links a:hover {
        color: var(--accent);
        transform: scale(1.05);
    }

    .nav-links a i {
        color: var(--accent);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding-top: 8rem;
        padding-bottom: 4rem;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }

    .header-actions {
        gap: 0.8rem;
    }

    .nav-cta {
        display: none;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-separator {
        display: none;
    }
}

/* Custom Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: scale(0.9);
    transition: var(--transition);
}

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

.modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-icon i {
    width: 30px;
    height: 30px;
}

.modal-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.modal-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.modal-btn {
    flex: 1;
    padding: 0.8rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    border: none;
}

.modal-btn.secondary {
    background: #f0f0f0;
    color: var(--text-dark);
}

.modal-btn.secondary:hover {
    background: #e0e0e0;
}

.modal-btn.danger {
    background: #ff4d4d;
    color: var(--white);
}

.modal-btn.danger:hover {
    background: #e60000;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
}
