/* ==========================================================================
   GELA BOCA SORVETES E AÇAÍ - STYLESHEET WITH LIGHT/DARK THEME SYSTEM
   ========================================================================== */

:root {
    /* Brand & Accent Palette (invariante) */
    --brand-magenta: #E2007A;
    --brand-magenta-hover: #C20067;
    --purple-primary: #7C3AED;
    --purple-dark: #4C1D95;
    --cyan-primary: #0284C7;
    --gold-accent: #F59E0B;
    --green-status: #059669;
    --whatsapp-green: #16A34A;
    --whatsapp-green-bright: #22C55E;
    --whatsapp-hover: #15803D;
    --red-alert: #DC2626;

    /* === TEMA CLARO (padrão) === */
    --bg-dark-main: #F1F5F9;
    --bg-dark-card: #FFFFFF;
    --bg-dark-card-hover: #F8FAFC;
    --bg-dark-secondary: #E2E8F0;

    --text-white: #0F172A;
    --text-muted: #475569;
    --text-dim: #64748B;
    --border-color: #CBD5E1;

    --header-bg: rgba(255, 255, 255, 0.94);
    --header-border: #E2E8F0;
    --modal-overlay-bg: rgba(15, 23, 42, 0.6);
    --footer-bg: #F8FAFC;
    --footer-bottom-bg: #E2E8F0;
    --footer-text: #475569;
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-magenta: 0 6px 20px rgba(226, 0, 122, 0.3);
    --shadow-whatsapp: 0 6px 25px rgba(34, 197, 94, 0.4);

    /* Radius & Transitions */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === TEMA ESCURO (override) === */
body.dark-theme {
    --bg-dark-main: #090D16;
    --bg-dark-card: #0F172A;
    --bg-dark-card-hover: #161E2E;
    --bg-dark-secondary: #1E293B;

    --text-white: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    --border-color: #1E293B;

    --header-bg: rgba(9, 13, 22, 0.94);
    --header-border: #1E293B;
    --modal-overlay-bg: rgba(5, 8, 14, 0.82);
    --footer-bg: #05080E;
    --footer-bottom-bg: #020408;
    --footer-text: #64748B;
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-magenta: 0 6px 20px rgba(226, 0, 122, 0.35);
    --shadow-whatsapp: 0 6px 25px rgba(34, 197, 94, 0.45);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark-main);
    color: var(--text-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-top: 80px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* MAIN FIXED HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--header-border);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 1.25rem;
    gap: 16px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 52px;
    width: 104px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0 16px rgba(226, 0, 122, 0.5);
}

.brand-text {
    display: none;
    flex-direction: column;
}

.brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: -0.5px;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

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

.btn-sm {
    padding: 7px 14px;
    font-size: 0.8rem;
    border-radius: var(--radius-full);
}

.btn-primary-magenta {
    background-color: var(--brand-magenta);
    color: #FFFFFF;
    box-shadow: var(--shadow-magenta);
}

.btn-primary-magenta:hover {
    background-color: var(--brand-magenta-hover);
}

.btn-gold {
    background-color: var(--gold-accent);
    color: #000000;
    font-weight: 700;
}

.btn-gold:hover {
    opacity: 0.9;
}

.cart-trigger-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-dark-secondary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.cart-trigger-btn:hover {
    border-color: var(--brand-magenta);
    color: var(--brand-magenta);
}

/* THEME TOGGLE BUTTON */
.theme-toggle-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-dark-secondary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
    cursor: pointer;
}

.theme-toggle-btn:hover {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
    transform: rotate(20deg);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--brand-magenta);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark-main);
}

/* HERO SECTION */
.hero-section {
    padding: 3.5rem 0 2.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.rating-divider {
    color: var(--text-dim);
}

.hero-headline {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.highlight-magenta { color: var(--brand-magenta); }
.highlight-cyan { color: var(--cyan-primary); }
.highlight-gold { color: var(--gold-accent); }

.hero-subheadline {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 560px;
}

.store-open-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(5, 150, 105, 0.15);
    border: 1px solid rgba(5, 150, 105, 0.4);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: #34D399;
    margin-bottom: 1.75rem;
}

.store-open-indicator.store-open-indicator-closed {
    background-color: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.45);
    color: var(--red-alert);
}

.status-dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #34D399;
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.3);
}

.status-dot-green.status-dot-closed {
    background-color: var(--red-alert);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25);
}

.hours-text {
    color: var(--text-muted);
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-lg {
    padding: 14px 26px;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
}

.btn-magenta {
    background-color: var(--brand-magenta);
    color: #FFFFFF;
    box-shadow: var(--shadow-magenta);
}

.btn-magenta:hover {
    background-color: var(--brand-magenta-hover);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: var(--bg-dark-secondary);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-outline-light:hover {
    background-color: var(--bg-dark-card);
    border-color: var(--brand-magenta);
}

.hero-pillars {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.pillar-item i {
    color: var(--brand-magenta);
}

.hero-visual-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.visual-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

.visual-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.visual-card-main { transform: rotate(-1deg); }
.visual-card-secondary {
    width: 85%;
    margin-left: auto;
    margin-top: -40px;
    transform: rotate(2deg);
}

.card-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tag-magenta { background-color: var(--brand-magenta); color: #FFF; }
.tag-gold { background-color: var(--gold-accent); color: #000; }

/* FAVORITOS & DESTAQUES SECTION */
.favorites-section {
    padding: 3rem 0;
}

.section-header-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

.section-subtitle {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.section-header-center h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-header-center p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* PRODUCT CARD */
.product-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-card);
    position: relative;
}

.product-card:hover {
    border-color: var(--brand-magenta);
    transform: translateY(-4px);
    background-color: var(--bg-dark-card-hover);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    background-color: var(--brand-magenta);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.product-img-wrapper {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

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

.product-details {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-desc {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px dashed var(--border-color);
}

.price-main {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-magenta);
}

.price-sub {
    font-size: 0.725rem;
    color: var(--text-dim);
    display: block;
}

.add-cart-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background-color: var(--bg-dark-secondary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-fast);
    border: 1px solid var(--border-color);
}

.add-cart-icon-btn:hover {
    background-color: var(--brand-magenta);
    border-color: var(--brand-magenta);
}

/* CARDÁPIO COMPLETO & SEARCH */
.catalog-section {
    padding: 3rem 0;
}

.search-bar-container {
    max-width: 580px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.search-bar-container input {
    width: 100%;
    padding: 12px 42px 12px 46px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark-card);
    color: var(--text-white);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.search-bar-container input::placeholder {
    color: var(--text-dim);
    opacity: 1;
}

.search-bar-container input:focus {
    outline: none;
    border-color: var(--brand-magenta);
    box-shadow: 0 0 0 3px rgba(226, 0, 122, 0.25);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.clear-search-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
}

.tabs-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    border-color: var(--brand-magenta);
    color: #FFFFFF;
}

.tab-btn.active {
    background-color: var(--brand-magenta);
    color: #FFFFFF;
    border-color: var(--brand-magenta);
    box-shadow: var(--shadow-magenta);
}

/* Keep catalog category labels legible in the default light theme. */
body:not(.dark-theme) .tab-btn:hover,
body:not(.dark-theme) .tab-btn:focus,
body:not(.dark-theme) .tab-btn:focus-visible,
body:not(.dark-theme) .tab-btn.active {
    color: var(--text-white);
    border-color: var(--brand-magenta);
}

body:not(.dark-theme) .tab-btn:focus-visible {
    outline: 2px solid rgba(226, 0, 122, 0.35);
    outline-offset: 2px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* ABOUT US SECTION */
.about-section {
    padding: 4rem 0;
    background-color: var(--bg-dark-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-feature-item {
    background-color: var(--bg-dark-main);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-item i {
    font-size: 1.2rem;
    color: var(--brand-magenta);
}

.about-feature-item strong {
    display: block;
    font-size: 0.85rem;
}

.about-feature-item small {
    font-size: 0.725rem;
    color: var(--text-muted);
}

.about-visual-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.rating-card-purple {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    color: #FFFFFF;
    text-align: center;
}

.rating-score-large {
    font-size: 3rem;
    font-weight: 900;
}

.stars {
    color: var(--gold-accent);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.about-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* REVIEWS SECTION */
.reviews-section {
    padding: 3.5rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.review-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: box-shadow 0.2s ease;
}

.review-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--brand-magenta);
    color: #FFF;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-comment {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* LOCATION & HOURS SECTION */
.location-section {
    padding: 4rem 0;
    background-color: var(--bg-dark-card);
    border-top: 1px solid var(--border-color);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.status-banner-open {
    background-color: rgba(5, 150, 105, 0.15);
    border: 1px solid rgba(5, 150, 105, 0.4);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #34D399;
    margin: 1rem 0 1.5rem;
}

.status-banner-open i {
    font-size: 1.5rem;
}

.status-banner-open.status-banner-closed {
    background-color: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.35);
    color: var(--red-alert);
}

.hours-table-card {
    background-color: var(--bg-dark-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.hours-table-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-muted);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--text-white);
}

.today-row td {
    color: var(--gold-accent) !important;
    font-weight: 700;
}

.today-row span {
    background-color: var(--gold-accent);
    color: #000;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

.contact-buttons-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.contact-btn {
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    transition: var(--transition-fast);
}

.contact-btn:hover {
    border-color: var(--brand-magenta);
}

.whatsapp-bg {
    background-color: rgba(22, 163, 74, 0.2);
    border-color: rgba(22, 163, 74, 0.4);
}

.map-card-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
}

/* FOOTER */
.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding-top: 3.5rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo-img {
    height: 64px;
    width: 128px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.brand-col p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-links a:hover {
    color: var(--brand-magenta);
}

.footer-col h3 {
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
}

.footer-col a {
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--text-white);
}

.footer-bottom {
    background-color: var(--footer-bottom-bg);
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.8rem;
}

.footer-developer {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* MODALS SYSTEM & ENHANCED FOOTER BUTTONS */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--modal-overlay-bg);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.modal-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-dark-card);
}

.modal-title-group h3 {
    font-size: 1.25rem;
}

.modal-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.close-modal-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-dark-secondary);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.close-modal-btn:hover {
    background-color: var(--red-alert);
    color: #FFFFFF;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ENHANCED MODAL FOOTER & ADD BUTTON (PROMINENT TOUCH AREA) */
.sticky-modal-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-dark-card);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-total-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.total-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.total-amount {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--brand-magenta);
    line-height: 1;
}

.btn-modal-add {
    height: 60px;
    padding: 0 28px;
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: var(--radius-md);
    background-color: var(--brand-magenta);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 24px rgba(226, 0, 122, 0.5);
    transition: var(--transition-fast);
    letter-spacing: 0.3px;
    width: 100%;
    border: none;
    cursor: pointer;
}

.btn-modal-add:hover {
    background-color: var(--brand-magenta-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(226, 0, 122, 0.65);
}

.btn-modal-add:active {
    transform: translateY(0);
}

.modal-product-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: var(--bg-dark-main);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.modal-product-summary img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.summary-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-magenta);
}

.badge-included-info {
    font-size: 0.75rem;
    color: var(--green-status);
}

.customizer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-heading h5 {
    font-size: 0.95rem;
}

.req-tag, .opt-tag {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
}

.req-tag { background-color: rgba(220, 38, 38, 0.2); color: #FCA5A5; }
.opt-tag { background-color: var(--bg-dark-secondary); color: var(--text-muted); }

.complements-grid, .flavors-picker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.comp-item, .flavor-chip-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: var(--bg-dark-main);
    transition: var(--transition-fast);
}

.comp-item:hover, .flavor-chip-item:hover {
    border-color: var(--brand-magenta);
}

.comp-item.selected, .flavor-chip-item.selected {
    border-color: var(--brand-magenta);
    background-color: rgba(226, 0, 122, 0.18);
}

.comp-item-info, .flavor-chip-info {
    font-size: 0.825rem;
    font-weight: 600;
}

.comp-checkbox, .radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #FFF;
}

.comp-checkbox {
    border-radius: 4px;
}

.comp-item.selected .comp-checkbox, .flavor-chip-item.selected .radio-circle {
    background-color: var(--brand-magenta);
    border-color: var(--brand-magenta);
}

textarea {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark-main);
    color: var(--text-white);
    font-family: inherit;
    font-size: 0.875rem;
    resize: vertical;
    transition: background-color 0.3s ease, color 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: var(--brand-magenta);
}

.unit-price-notice {
    background-color: var(--bg-dark-main);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.flavors-selection-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 320px;
    overflow-y: auto;
}

.flavor-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark-main);
}

.flavor-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.qty-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--bg-dark-secondary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.qty-btn:hover {
    background-color: var(--brand-magenta);
}

.qty-val {
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 20px;
    text-align: center;
}

.sizes-picker-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.size-picker-card {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background-color: var(--bg-dark-main);
    transition: var(--transition-fast);
}

.size-picker-card.selected {
    border-color: var(--brand-magenta);
    background-color: rgba(226, 0, 122, 0.18);
}

.size-picker-card strong {
    font-size: 0.95rem;
}

.size-picker-card span {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-magenta);
}

/* CART DRAWER */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 14, 0.82);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background-color: var(--bg-dark-card);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: var(--transition-fast);
}

.cart-drawer-overlay.active .cart-drawer {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-dark-card);
}

.cart-drawer-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-count-pill {
    background-color: var(--brand-magenta);
    font-size: 0.725rem;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

.close-drawer-btn {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.empty-cart-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-muted);
    gap: 12px;
}

.empty-cart-view i {
    font-size: 3.5rem;
    color: var(--bg-dark-secondary);
}

.cart-item-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    gap: 12px;
    position: relative;
    background-color: var(--bg-dark-main);
}

.cart-item-card img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cart-item-name {
    font-size: 0.875rem;
    font-weight: 700;
}

.cart-item-meta {
    font-size: 0.725rem;
    color: var(--text-muted);
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-magenta);
    margin-top: 4px;
}

.remove-item-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.remove-item-btn:hover {
    color: var(--red-alert);
}

.cart-drawer-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-dark-main);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
}

.total-line strong {
    font-size: 1.4rem;
    color: var(--brand-magenta);
}

/* CHECKOUT FORM MODAL & PROMINENT WHATSAPP BUTTON */
.checkout-modal-card {
    max-width: 600px;
}

.checkout-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--border-color);
}

.step-title {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
}

.step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--brand-magenta);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-dark-main);
    color: var(--text-white);
    font-size: 0.9rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
    opacity: 1;
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-magenta);
}

.order-type-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.type-option {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    cursor: pointer;
    background-color: var(--bg-dark-main);
    transition: var(--transition-fast);
}

.type-option input {
    display: none;
}

.type-option.active {
    border-color: var(--brand-magenta);
    background-color: rgba(226, 0, 122, 0.15);
}

.option-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-content i {
    font-size: 1.25rem;
    color: var(--brand-magenta);
}

.option-content strong {
    display: block;
    font-size: 0.825rem;
}

.option-content small {
    font-size: 0.675rem;
    color: var(--text-muted);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.payment-card {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px;
    cursor: pointer;
    text-align: center;
    background-color: var(--bg-dark-main);
    transition: var(--transition-fast);
}

.payment-card input {
    display: none;
}

.payment-card.active {
    border-color: var(--brand-magenta);
    background-color: rgba(226, 0, 122, 0.15);
}

.pm-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.text-pix { color: #34D399; }
.text-card { color: #60A5FA; }
.text-cash { color: var(--gold-accent); }

.checkout-summary-box {
    background-color: var(--bg-dark-main);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.checkout-summary-box h5 {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-white);
}

.checkout-summary-item,
.checkout-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-white);
    font-size: 0.875rem;
}

.checkout-summary-item {
    margin-bottom: 6px;
}

.checkout-summary-line {
    margin-top: 6px;
}

.checkout-grand-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed var(--border-color);
}

.checkout-grand-total span {
    font-size: 1rem;
    color: var(--text-muted);
}

.checkout-grand-total strong {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brand-magenta);
}

/* PROMINENT HIGH-VISIBILITY WHATSAPP SUBMIT BUTTON */
.btn-whatsapp-prominent {
    height: 62px;
    width: 100%;
    background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
    color: #FFFFFF !important;
    font-size: 1.15rem;
    font-weight: 900;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    box-shadow: 0 6px 28px rgba(34, 197, 94, 0.55);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.4px;
    margin-top: 10px;
    cursor: pointer;
}

.btn-whatsapp-prominent:hover {
    background: linear-gradient(135deg, #15803D 0%, #16A34A 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(34, 197, 94, 0.7);
}

.btn-whatsapp-prominent:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.5);
}

.whatsapp-icon-lg {
    font-size: 1.65rem;
    flex-shrink: 0;
}

/* TOAST NOTIFICATION */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--brand-magenta);
    color: var(--text-white);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    animation: toastIn 0.25s ease-out;
}

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

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    .hero-grid, .about-grid, .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-headline {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }

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

    .form-grid-2, .payment-methods-grid, .contact-buttons-row {
        grid-template-columns: 1fr;
    }
}

.hero-rotating-word{display:inline-block;min-width:2.8ch;will-change:opacity,transform;transition:opacity .32s ease,transform .32s ease}
.hero-rotating-word.is-changing{opacity:0;transform:translateY(6px)}

/* Cores oficiais do título principal */
.hero-word-acai{color:#e90070 !important;}
.hero-word-sorvetes{color:#168bd6 !important;}
.hero-word-tortas{color:#f2b705 !important;}

.hero-rotating-prefix{display:inline;}

/* ==========================================================================
   COOKIE CONSENT & PRIVACY SYSTEM STYLES
   ========================================================================== */
.cookie-banner-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    max-width: 420px;
    width: calc(100% - 48px);
    pointer-events: none;
}

.cookie-banner-card {
    pointer-events: auto;
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 20px 22px;
    position: relative;
    color: var(--text-white);
    font-family: inherit;
    animation: cookieSlideUp 0.35s ease-out;
}

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

.cookie-close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--text-dim);
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-close-btn:hover {
    color: var(--brand-magenta);
}

.cookie-banner-text {
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--text-white);
    margin-bottom: 16px;
    padding-right: 18px;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.cookie-btn {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cookie-btn-accept {
    background-color: var(--brand-magenta);
    color: #FFFFFF;
}

.cookie-btn-accept:hover {
    background-color: var(--brand-magenta-hover);
}

.cookie-btn-deny {
    background-color: var(--bg-dark-secondary);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.cookie-btn-deny:hover {
    border-color: var(--brand-magenta);
    color: var(--brand-magenta);
}

.cookie-btn-prefs {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.cookie-btn-prefs:hover {
    color: var(--text-white);
    border-color: var(--text-muted);
}

.cookie-banner-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.75rem;
}

.cookie-policy-link {
    color: var(--brand-magenta);
    text-decoration: none;
    font-weight: 600;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

.cookie-footer-divider {
    color: var(--text-dim);
}

/* PREFERENCES MODAL */
.cookie-prefs-modal {
    position: fixed;
    inset: 0;
    background-color: var(--modal-overlay-bg);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.cookie-prefs-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.cookie-prefs-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: var(--text-white);
}

.cookie-prefs-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-prefs-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    font-size: 1.6rem;
    color: var(--text-dim);
    cursor: pointer;
}

.cookie-modal-close:hover {
    color: var(--brand-magenta);
}

.cookie-prefs-body {
    padding: 20px 24px;
    overflow-y: auto;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-category-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-category-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cookie-cat-info strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--text-white);
}

.cookie-cat-info p {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.35;
    margin: 0;
}

/* TOGGLE SWITCH */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: .3s;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    border-radius: 50%;
    transition: .3s;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--brand-magenta);
    border-color: var(--brand-magenta);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(20px);
    background-color: #FFFFFF;
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-prefs-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 480px) {
    .cookie-banner-container {
        bottom: 12px;
        right: 12px;
        width: calc(100% - 24px);
    }
    .cookie-banner-card {
        padding: 16px;
    }
    .cookie-banner-actions {
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
    }
}

/* Imagens de marca fornecidas para as variações do site. */
.brand-hero-image,
.brand-about-image {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background: #fff;
}
body[data-brand="ciadassopas"] .brand-hero-image { background: #650c1a; }
body[data-brand="ultraacai"] .brand-hero-image { background: #71368a; }
body[data-brand="sopasecaldos"] .brand-hero-image { background: #fff8ef; }
.hero-rotating-word { color: var(--brand-magenta) !important; }
.catalog-empty-state {
    grid-column: 1 / -1;
    padding: 48px 24px;
    text-align: center;
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-dark-card);
    color: var(--text-muted);
}
.catalog-empty-state i { color: var(--brand-magenta); font-size: 2rem; margin-bottom: 12px; }
.catalog-empty-state h3 { margin-bottom: 6px; }
