:root {
    --primary: #C53D78; /* Magenta */
    --secondary: #F7F3FA; /* Soft neutral tint */
    --accent: #C53D78; /* Magenta */
    --blue: #3F6FB6;
    --green: #55B14B;
    --lilac: #A16CCF;
    --dark: #1F1F1F;
    --light: #ffffff;
    --gray: #F5F5F7;
    --text: #1F1F1F;
    --text-muted: #6b6b6f;
    --shadow: 0 8px 28px rgba(31,31,31,0.08);
    --shadow-hover: 0 16px 36px rgba(197,61,120,0.14);
    --radius: 14px;
    --transition: all 0.25s ease;
}

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

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

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.script-font {
    font-family: 'Dancing Script', cursive;
}

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

/* Navbar */
.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 14px;
    padding: 16px 5%;
    background: #ffffff;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Dancing Script', cursive;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-name span {
    color: var(--accent);
}

.logo-slogan {
    font-family: 'Dancing Script', cursive;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-logo {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-logo .logo-text {
    align-items: center;
}

.footer-logo .logo-img {
    width: 70px;
    height: 70px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 20px;
    row-gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a,
.filter-btn {
    display: inline-block;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: var(--transition);
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    vertical-align: middle;
}

.nav-links a:hover,
.filter-btn:hover {
    color: var(--accent);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 8px 18px;
}

.atacado-banner {
    margin: 0 auto 24px;
    max-width: 1200px;
}

.atacado-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

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

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

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

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100vh;
        overflow-y: auto;
        background: var(--light);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 22px;
        padding: 90px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.08);
        transition: right 0.3s ease;
        z-index: 1050;
    }

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

    .nav-links a,
    .nav-links .filter-btn {
        font-size: 1rem;
    }

    .nav-dropdown {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: none;
        padding: 0 0 0 16px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .dropdown-menu li {
        padding: 0;
    }

    .dropdown-menu .filter-btn {
        font-size: 0.9rem;
        color: var(--text-muted, #777);
    }
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    aspect-ratio: 1920 / 720;
    max-height: 480px;
    max-width: 1200px;
    margin: 24px auto 0;
    overflow: hidden;
    background: #000;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.carousel-slide a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-arrow:hover {
    background: var(--accent);
    color: var(--light);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 0;
    background: var(--gray);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d5d5d9;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .carousel-arrow {
        width: 34px;
        height: 34px;
    }

    .carousel-dots {
        bottom: 10px;
    }
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--dark);
    color: var(--light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--dark);
}

.cta-button:hover {
    background: transparent;
    color: var(--dark);
}

.filter-btn.active {
    color: var(--accent);
    font-weight: 700;
}


/* Catalog */
.catalog-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px 80px;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--light);
    border: 1px solid #eee;
    border-radius: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.product-image {
    flex-shrink: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background: var(--gray);
    padding: 10px;
    box-sizing: border-box;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
    border-radius: 6px;
}

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

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--light);
    padding: 5px 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-info p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 20px;
}

.add-to-cart {
    width: 100%;
    margin-top: auto;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--dark);
    color: var(--dark);
    cursor: pointer;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: var(--dark);
    color: var(--light);
}

/* Bestsellers */
.bestsellers-section {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.bestsellers-intro {
    text-align: center;
    margin-bottom: 36px;
}

.bestsellers-intro h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.bestsellers-intro p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto;
}

.badge-bestseller {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--light);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
}

/* FAQ */
.faq-section {
    max-width: 860px;
    margin: 80px auto 100px;
    padding: 0 20px;
}

.faq-intro {
    text-align: center;
    margin-bottom: 36px;
}

.faq-intro h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.faq-intro p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 560px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--light);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: var(--shadow);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: var(--dark);
    color: var(--light);
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    text-align: center;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.85rem;
    max-width: 640px;
    line-height: 1.5;
}

.cookie-accept-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 999px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.cookie-accept-btn:hover {
    opacity: 0.85;
}

/* Newsletter Wizard */
.newsletter-section {
    background: var(--secondary);
    padding: 80px 20px 30px;
    display: flex;
    justify-content: center;
}

.newsletter-wizard {
    width: 100%;
    max-width: 460px;
    background: linear-gradient(155deg, var(--accent), var(--magenta-deep, #9c2f5e));
    border-radius: var(--radius);
    box-shadow: 0 20px 44px rgba(197, 61, 120, 0.3);
    padding: 44px 40px;
    text-align: center;
    color: var(--light);
}

.newsletter-wizard h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.1rem;
    color: var(--light);
    margin-bottom: 10px;
}

.newsletter-emoji {
    font-family: initial;
}

.newsletter-wizard > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    max-width: 340px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.wizard-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 22px 0 24px;
}

.wizard-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.wizard-dot.active {
    background: var(--light);
    transform: scale(1.3);
}

.wizard-dot.done {
    background: rgba(255, 255, 255, 0.7);
}

.wizard-steps {
    position: relative;
    min-height: 50px;
}

.wizard-step {
    display: none;
    text-align: left;
    animation: wizardFade 0.3s ease;
}

.wizard-step.active {
    display: block;
}

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

.wizard-input-icon {
    position: relative;
    display: block;
}

.wizard-input-icon svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.wizard-step input,
.wizard-step select {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--dark);
    outline: none;
    transition: var(--transition);
    background: var(--light);
    appearance: none;
}

.wizard-step input:focus,
.wizard-step select:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.wizard-step input::placeholder {
    color: var(--text-muted);
}

.wizard-nav {
    margin-top: 6px;
}

.wizard-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wizard-btn-primary {
    background: var(--light);
    color: var(--accent);
}

.wizard-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.wizard-back-link {
    display: inline-block;
    margin-top: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    font-size: 0.82rem;
    cursor: pointer;
    text-decoration: underline;
}

.wizard-back-link:hover {
    color: var(--light);
}

.newsletter-success {
    max-width: 460px;
    width: 100%;
    background: var(--light);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px 34px;
    color: var(--dark);
    font-size: 1rem;
    text-align: center;
}

.wizard-hidden {
    display: none !important;
}

.blog-placeholder {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 140px;
}

.blog-coming-soon {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--accent);
    margin-top: 20px;
}

/* Legal Pages */
.legal-page {
    max-width: 760px;
    margin: 50px auto 100px;
    padding: 0 24px;
    color: var(--dark);
}

.legal-page h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.6rem;
    margin-bottom: 6px;
}

.legal-updated {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 1.15rem;
    margin: 34px 0 12px;
    color: var(--dark);
}

.legal-page p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 10px;
}

.legal-page ul {
    margin: 0 0 14px 20px;
    padding: 0;
}

.legal-page li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 6px;
}

.legal-page a {
    color: var(--accent);
}

.legal-disclaimer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Footer */
footer {
    background: var(--light);
    border-top: 1px solid #ececec;
    padding: 60px 0 20px;
    text-align: center;
}

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

.footer-content {
    margin-bottom: 50px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    text-align: left;
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-brand p {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    margin-top: 18px;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray);
    color: var(--dark);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--light);
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dark);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links .filter-btn {
    color: var(--text-muted);
    font-size: 0.88rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    text-decoration: none;
}

.footer-links a:hover,
.footer-links .filter-btn:hover {
    color: var(--accent);
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
    text-decoration: none;
}

.footer-contact-link svg {
    color: #25D366;
    flex-shrink: 0;
}

.footer-contact-link[href^="mailto"] svg {
    color: var(--accent);
}

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

@media (max-width: 720px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 0.8rem;
    color: var(--dark);
}

.footer-bottom a {
    color: var(--dark);
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--green);
}

/* Cart Variables */
:root {
    --cart-bg: #ffffff;
    --cart-text: #333333;
    --cart-whatsapp: #25D366;
}

/* Floating WhatsApp Button */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--cart-whatsapp);
    color: var(--light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* Floating Cart Button (stacked above the WhatsApp button) */
.cart-fab {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--dark);
    color: var(--light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--light);
    font-size: 0.8rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--light);
}

/* Cart Panel Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* Cart Panel */
.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--cart-bg);
    z-index: 1002;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

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

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    color: var(--dark);
}

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

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

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

.empty-cart-msg {
    text-align: center;
    color: #999;
    margin-top: 50px;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
}

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

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.cart-item-info p {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: bold;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    background: #f4f4f4;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.qty-btn:hover {
    background: #e0e0e0;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--cart-whatsapp);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: #1ebe5d;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-panel {
        width: 100%;
        right: -100%;
    }
}

/* Lightbox Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    animation-name: zoom;
    animation-duration: 0.3s;
}

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

.close-image-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-image-modal:hover,
.close-image-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.product-image img {
    cursor: pointer;
}

