/* CSS RESET & VARIABLES */
:root {
    /* Paleta de Cores (Obrigatória) */
    --color-bg: #FFFFFF;
    --color-title: #1A1A1A;
    --color-text: #3D3D3D;
    --color-cta: #53B96A;
    --color-cta-hover: #48a15c;
    --color-accent-1: #E8873A;
    --color-accent-2: #B17143;
    --color-border: #C8B89A;
    
    /* Outras cores base */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-100: #F7F7F7;
    --color-gray-200: #EAEAEA;
    
    /* Tipografia */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espaçamento & Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-title);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent-1);
    border-radius: 2px;
}


/* TOPBAR */
.topbar {
    background-color: var(--color-title);
    color: var(--color-white);
    padding: 8px 0;
    overflow: hidden;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.topbar-track {
    display: flex;
    white-space: nowrap;
    animation: scroll 12s linear infinite;
    align-items: center;
}
.topbar-track span {
    margin: 0 20px;
}
.topbar-track .dot {
    color: var(--color-accent-1);
    font-size: 1.2rem;
    line-height: 0;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* HEADER */
.header {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo .brand-logo {
    height: 36px;
    width: auto;
    display: block;
}

.desktop-nav {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    display: none;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-gray-100);
    transition: var(--transition);
}
.cart-btn:hover {
    background-color: var(--color-gray-200);
}
.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--color-cta);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: var(--color-gray-100);
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
    .desktop-nav {
        display: flex;
        gap: 32px;
    }
    .desktop-nav a {
        font-size: 1rem;
        font-weight: 500;
        color: var(--color-text);
        position: relative;
    }
    .desktop-nav a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--color-accent-1);
        transition: var(--transition);
    }
    .desktop-nav a:hover::after {
        width: 100%;
    }
    .search-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        border: 1px solid var(--color-border);
        border-radius: 30px;
        color: #888;
        background-color: var(--color-gray-100);
        transition: var(--transition);
    }
    .search-btn:hover {
        background-color: var(--color-gray-200);
    }
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu-content {
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background-color: var(--color-bg);
    padding: 24px;
    transition: left 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
    box-shadow: 4px 0 24px rgba(0,0,0,0.1);
}
.mobile-menu-overlay.active .mobile-menu-content {
    left: 0;
}
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--color-title);
}

/* HERO BANNER */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--color-gray-100) 0%, #EAEAEA 100%);
    padding: 80px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 135, 58, 0.05) 0%, transparent 60%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.hero-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(90deg, var(--color-title) 0%, var(--color-accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-cta);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(83, 185, 106, 0.3);
    transition: var(--transition);
}
.cta-button:hover {
    background-color: var(--color-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(83, 185, 106, 0.4);
}

/* HERO CAROUSEL */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    z-index: 2;
}
.hero-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 24px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.hero-carousel::-webkit-scrollbar {
    display: none;
}

.hero-card {
    flex: 0 0 280px;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    scroll-snap-align: start;
}
.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hero-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--color-accent-1);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 3;
    text-transform: uppercase;
}
.hero-card-img {
    width: 100%;
    aspect-ratio: 1;
    background-color: #f5f5f5;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-card-img img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.hero-card-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}
.hero-card-info h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--color-title);
    flex: 1;
}
.hero-card-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #FFB800;
    margin-bottom: 12px;
    font-size: 0.85rem;
}
.hero-card-stars i {
    width: 14px;
    height: 14px;
}
.hero-card-stars span {
    color: #888;
    margin-left: 4px;
}
.hero-card-price {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-title);
    margin-bottom: 4px;
}
.hero-card-installment {
    font-size: 0.85rem;
    color: #666;
}
.hero-card-installment strong {
    color: var(--color-accent-1);
}
.hero-card-btn {
    width: 100%;
    margin-top: 14px;
    padding: 10px 14px;
    background-color: var(--color-cta);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
    text-align: center;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
}
.hero-card-btn:hover {
    background-color: #3da85e;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(83,185,106,0.35);
}
.hero-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: var(--color-title);
}
.hero-carousel-arrow-left  { left: -22px; }
.hero-carousel-arrow-right { right: -22px; }
.hero-carousel-arrow:hover {
    background-color: var(--color-accent-1);
    color: var(--color-white);
    border-color: var(--color-accent-1);
}
@media (max-width: 1280px) {
    .hero-carousel-arrow-left  { left: 6px; }
    .hero-carousel-arrow-right { right: 6px; }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 24px;
        min-height: 400px;
    }
    .hero-content h2 {
        font-size: 2.2rem;
    }
}


/* TRUST BAR */
.trust-bar {
    background-color: var(--color-title);
    padding: 40px 0;
    color: var(--color-white);
}
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.trust-item i {
    color: var(--color-accent-1);
    width: 32px;
    height: 32px;
}
.trust-item h3 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.trust-item p {
    font-size: 0.9rem;
    color: #aaa;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* CATEGORIES */
.categories-section {
    background-color: var(--color-bg);
}
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.category-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 150px;
    max-width: 200px;
    background-color: var(--color-gray-100);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 32px 16px;
    text-align: center;
    transition: var(--transition);
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
    border-color: var(--color-accent-1);
    background-color: var(--color-white);
}
.category-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.8);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.category-card h3 {
    font-size: 1rem;
    font-weight: 500;
}

@media (min-width: 768px) {
    .category-card {
        flex: 1 1 auto;
    }
}

/* PRODUCTS CATALOG */
.products-section {
    background-color: var(--color-gray-100);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.product-card {
    background-color: var(--color-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #f0f0f0;
    overflow: hidden;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-accent-1);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}
.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-category {
    font-size: 0.8rem;
    color: var(--color-accent-2);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.product-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.3;
}
.product-benefit {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 24px;
    flex: 1;
}
.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-title);
    margin-bottom: 16px;
}
.buy-button {
    width: 100%;
    padding: 14px;
    background-color: var(--color-bg);
    border: 2px solid var(--color-cta);
    color: var(--color-cta);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
}
.buy-button:hover {
    background-color: var(--color-cta);
    color: var(--color-white);
}

/* Ajuste dos cards com 2 colunas em mobile */
@media (max-width: 639px) {
    .product-image {
        padding: 12px;
    }
    .product-info {
        padding: 12px 14px 14px;
    }
    .product-category {
        font-size: 0.7rem;
    }
    .product-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    .product-benefit {
        font-size: 0.8rem;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .product-price {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .buy-button {
        padding: 10px;
        font-size: 0.82rem;
    }
    .product-badge {
        top: 8px;
        left: 8px;
        font-size: 0.65rem;
        padding: 3px 8px;
    }
}


    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}
@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

/* TESTIMONIALS */
.testimonials-section {
    background-color: var(--color-title);
    color: var(--color-white);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.testimonial-card {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    padding: 32px;
}
.stars {
    color: #FFB800;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}
.stars i {
    width: 18px;
    height: 18px;
}
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    color: rgba(255,255,255,0.9);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-accent-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-white);
}
.testimonial-author h4 {
    color: var(--color-white);
    margin-bottom: 2px;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-cta);
    font-weight: 500;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FAQ */
.faq-section {
    background-color: var(--color-bg);
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--color-border);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-title);
    text-align: left;
}
.faq-question i {
    transition: transform 0.3s ease;
    color: var(--color-accent-1);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px; /* arbitrary large value for smooth transition */
}
.faq-answer p {
    padding-bottom: 24px;
    color: #555;
}

/* FOOTER */
.footer {
    background-color: var(--color-gray-100);
    border-top: 1px solid var(--color-border);
    padding: 60px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.brand-logo-footer {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
    display: block;
}
.footer-brand p {
    color: #666;
    max-width: 300px;
}
.footer-links h3, .footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--color-title);
}
.footer-links a {
    display: block;
    color: #666;
    margin-bottom: 12px;
}
.footer-links a:hover {
    color: var(--color-accent-1);
}
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    margin-bottom: 12px;
}
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    color: #888;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* FOOTER LEGAL */
.footer-legal {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-legal p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #888;
}
.footer-legal p i {
    width: 14px;
    height: 14px;
    color: var(--color-accent-1);
    flex-shrink: 0;
}

/* COOKIE BANNER LGPD */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #1A1A1A 0%, #2a2a2a 100%);
    border-top: 3px solid var(--color-accent-1);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-banner.hide {
    transform: translateY(100%);
}
.cookie-banner-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-accent-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.cookie-icon i {
    width: 24px;
    height: 24px;
}
.cookie-text {
    flex: 1;
    min-width: 200px;
}
.cookie-text h4 {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}
.cookie-text p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}
.cookie-text p strong {
    color: var(--color-accent-1);
}
.cookie-text p a {
    color: var(--color-cta);
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}
.cookie-btn-settings {
    background: transparent;
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.75);
}
.cookie-btn-settings:hover {
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}
.cookie-btn-reject {
    background: transparent;
    border-color: rgba(232, 135, 58, 0.4);
    color: var(--color-accent-1);
}
.cookie-btn-reject:hover {
    background: rgba(232, 135, 58, 0.15);
}
.cookie-btn-accept {
    background: var(--color-cta);
    border-color: var(--color-cta);
    color: #fff;
    box-shadow: 0 4px 12px rgba(83, 185, 106, 0.35);
}
.cookie-btn-accept:hover {
    background: var(--color-cta-hover);
    border-color: var(--color-cta-hover);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
