/* ==========================================================================
   Design System & Variables
   ========================================================================== */
:root {
    /* Colors - Artisanal Wood-Fired Oven Palette */
    --bg-main: #F6F1E8;          /* Massa artesanal / Creme quente */
    --bg-card: #FFFBF4;          /* Marfim aconchegante (sem branco puro #FFFFFF) */
    --bg-input: #F1EBE2;         /* Bege rústico para campos e fundos secundários */
    --bg-surface: #FFFBF4;
    --bg-surface-hover: #F1EBE2;
    --bg-header: #FFF9F2;        /* Marfim quente nobre */
    
    --primary: #D89B1D;          /* Âmbar dourado de forno a lenha */
    --primary-hover: #A65A2E;    /* Terracota / Madeira queimada */
    --primary-light: rgba(216, 155, 29, 0.12);
    --primary-glow: rgba(216, 155, 29, 0.20);
    
    --secondary: #A65A2E;
    
    --accent-green: #2E7D32;     /* Verde artesanal natural */
    --accent-green-light: rgba(46, 125, 50, 0.12);
    
    --accent-gold: #D89B1D;      /* Dourado quente */
    
    --text-main: #2D2D2D;        /* Grafite escuro para alta legibilidade */
    --text-secondary: #6E6458;   /* Castanho rústico */
    --text-muted: #8C8070;       /* Muted acolhedor */
    --text-light: #6E6458;
    
    --border-color: #E7DCCB;     /* Bege de acabamento suave */
    --glass-bg: rgba(255, 249, 242, 0.95);
    --glass-border: rgba(216, 155, 29, 0.15);
    
    /* Layout & Styling */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    
    /* Shadows - Soft Artisanal Elevation */
    --shadow-sm: 0 2px 8px rgba(166, 90, 46, 0.06);
    --shadow-md: 0 6px 20px rgba(166, 90, 46, 0.10);
    --shadow-lg: 0 12px 32px rgba(166, 90, 46, 0.16);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

textarea, input {
    font-family: inherit;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.pd-24 { padding: 24px; }
.flex-grow { flex-grow: 1; }
.display-none { display: none !important; }

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #2b2b30;
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

.animate-bounce {
    animation: bounce 2s infinite ease-in-out;
}

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.btn-success {
    background-color: var(--accent-green);
    color: #ffffff;
}

.btn-success:hover {
    background-color: #246427;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.35);
}

.btn-block {
    width: 100%;
}

.btn-close, .btn-close-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-close {
    background: transparent;
    color: var(--text-muted);
    padding: 8px;
    border-radius: 50%;
}

.btn-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.btn-close-circle {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    z-index: 10;
}

.btn-close-circle:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    background: var(--bg-input);
    color: var(--text-muted);
}

.badge-required {
    background: var(--primary-light);
    color: var(--primary);
}

/* ==========================================================================
   Header & Hero Area
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #09090b 0%, #151518 100%);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 12, 14, 0.4) 0%,
        rgba(12, 12, 14, 0.8) 50%,
        var(--bg-main) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.header-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.status-badge.open {
    background: rgba(46, 125, 50, 0.15);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.status-badge.open .dot {
    background-color: #4caf50;
}

.status-badge.closed {
    background: rgba(198, 40, 40, 0.15);
    color: #ef5350;
    border: 1px solid rgba(239, 83, 80, 0.2);
}

.status-badge.closed .dot {
    background-color: #ef5350;
}

.status-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.delivery-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.delivery-info-header span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.delivery-info-header .material-symbols-rounded {
    font-size: 18px;
    color: var(--primary);
}

.delivery-info-header .divider {
    color: var(--text-muted);
}

.pizzeria-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.pizzeria-logo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-md);
    background-color: #ffffff;
    object-fit: contain;
}

.pizzeria-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 60%, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pizzeria-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-slogan {
    display: flex;
    gap: 8px;
}

.hero-slogan .tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-slogan .tag.bg-gold {
    background: rgba(212, 175, 55, 0.15);
    color: #ffd700;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   Sticky Nav & Filter Bar
   ========================================================================== */
.sticky-nav-container {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.sticky-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.categories-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    white-space: nowrap;
}

.categories-nav::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.nav-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
    background-color: var(--primary-light);
    color: var(--primary);
}

.search-box {
    position: relative;
    width: 280px;
    flex-shrink: 0;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 20px;
}

.search-box input {
    width: 100%;
    height: 44px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0 16px 0 44px;
    font-size: 14px;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* ==========================================================================
   Main Grid Layout
   ========================================================================== */
.main-container {
    padding-top: 32px;
    padding-bottom: 80px;
}

/* Banner Carrossel Component */
.promo-banners-carousel {
    margin-top: 10px;
    padding: 0 16px;
    margin-bottom: 24px;
}

.banner-track {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    margin-right: -16px;
    padding-right: 16px;
    padding-bottom: 8px; /* Área segura para sombras */
}

.banner-track::-webkit-scrollbar {
    display: none;
}

.promo-banner {
    flex: 0 0 100%;
    min-width: 100%;
    height: 160px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #2a1b18 0%, #151518 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-banner:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(12, 12, 14, 0.92) 0%, rgba(12, 12, 14, 0.7) 45%, rgba(12, 12, 14, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner-tag {
    background-color: var(--primary);
    color: #0c0c0e;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.25);
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-main);
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.banner-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.banner-image {
    position: absolute;
    right: -15px;
    bottom: -15px;
    height: 120%;
    width: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-banner:hover .banner-image {
    transform: scale(1.08) rotate(6deg) translateY(-5px);
}

/* Promocional Custom Pizza Banner */
.custom-pizza-promo {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2a1b18 0%, #151518 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 48px;
    overflow: hidden;
    position: relative;
}

.custom-pizza-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55,0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.promo-text {
    flex: 1;
    z-index: 2;
}

.promo-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 12px;
    color: #ffffff;
}

.promo-text p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.promo-image-wrapper {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    margin-left: 32px;
    z-index: 2;
    animation: rotate 30s linear infinite;
}

.promo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Menu Layout sections */
.menu-category-section {
    padding-top: 24px;
    margin-bottom: 48px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Item Cards Styling */
.item-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.item-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-lg);
}

.item-card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #111;
}

.item-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.item-card:hover .item-card-image-wrapper img {
    transform: scale(1.08);
}

.item-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #ffffff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.item-card-badge.vegetarian {
    background: var(--accent-green);
}

.item-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.item-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.item-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.item-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.item-card-price {
    display: flex;
    flex-direction: column;
}

.item-card-price .from-text {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-card-price .price-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.item-card .btn-add {
    padding: 8px 14px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #000000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
    font-weight: 700;
    font-size: 13px;
    width: auto;
    height: auto;
}

.item-card .btn-add:hover {
    background: var(--primary);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 14px rgba(212, 175, 55, 0.4);
}

.item-card .btn-add .material-symbols-rounded {
    font-size: 16px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer-section {
    background-color: #08080a;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 8px;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-info .material-symbols-rounded {
    color: var(--primary);
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 24px;
    font-size: 12px;
}

/* ==========================================================================
   Floating Cart Button (Mobile)
   ========================================================================== */
.floating-cart-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.floating-cart-btn:hover {
    transform: scale(1.08) translateY(-4px);
    background-color: var(--primary-hover);
}

.floating-cart-btn .material-symbols-rounded {
    font-size: 28px;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--accent-green);
    color: #ffffff;
    border: 3px solid var(--bg-main);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Shopping Cart Sidebar / Drawer
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: var(--bg-card);
    border-left: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cart-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-title-wrapper h2 {
    font-size: 20px;
    font-weight: 600;
}

.cart-title-wrapper .material-symbols-rounded {
    color: var(--primary);
    font-size: 24px;
}

.cart-empty-state {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
}

.cart-empty-state .empty-icon {
    font-size: 72px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.05);
}

.cart-empty-state .subtext {
    font-size: 13px;
    margin-top: 6px;
}

.cart-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

/* Cart Item Styling */
.cart-item {
    display: flex;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 8px;
}

.cart-item-notes {
    font-size: 11px;
    color: var(--primary);
    background: rgba(212, 175, 55, 0.06);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-top: 4px;
}

.cart-item-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.cart-item-price {
    font-weight: 700;
    font-size: 15px;
}

.item-qty-adjuster {
    display: inline-flex;
    align-items: center;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    padding: 2px;
}

.item-qty-adjuster button {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
}

.item-qty-adjuster button:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.item-qty-adjuster span {
    font-size: 13px;
    font-weight: 600;
    padding: 0 8px;
    min-width: 20px;
    text-align: center;
}

.cart-summary {
    padding: 24px;
    background: rgba(12, 12, 14, 0.8);
    border-top: 1px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.summary-row.total {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    margin-bottom: 20px;
}

.checkout-btn {
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   Modals Common Styles
   ========================================================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

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

.modal-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-card.max-width-600 {
    max-width: 600px;
}

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

.modal-header h2 {
    font-size: 20px;
    font-weight: 600;
}

.modal-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(12, 12, 14, 0.5);
}

/* ==========================================================================
   Pizza Customizer Modal Detail Styles
   ========================================================================== */
.modal-header-image {
    position: relative;
    height: 180px;
}

.modal-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-header-badge {
    position: absolute;
    bottom: 16px;
    left: 20px;
    background-color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.customizer-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    margin-bottom: 24px;
}

.customizer-section {
    margin-bottom: 28px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.section-title .number {
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title h3 {
    font-size: 15px;
    font-weight: 600;
}

.section-title .helper-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: auto;
}

/* Step 1: Size selector layout */
.size-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.size-card {
    cursor: pointer;
}

.size-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.size-card-content {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: var(--transition);
    height: 100%;
}

.size-card input:checked + .size-card-content {
    border-color: var(--primary);
    background-color: var(--primary-light);
    box-shadow: 0 0 0 1px var(--primary);
}

.size-card-content .size-title {
    font-weight: 600;
    font-size: 14px;
}

.size-card-content .size-title .size-detail {
    font-size: 11px;
    color: var(--text-muted);
}

.size-card input:checked + .size-card-content .size-title .size-detail {
    color: var(--primary);
}

.size-card-content .size-rules {
    font-size: 11px;
    color: var(--text-muted);
}

.size-card-content .size-price {
    font-weight: 700;
    font-size: 14px;
    margin-top: 4px;
}

/* Step 2: Flavors checkboxes list */
.flavors-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    max-height: 240px;
    overflow-y: auto;
}

.flavor-item-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.flavor-item-label:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.flavor-item-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.flavor-item-label.disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.flavor-item-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.flavor-item-info .flavor-name {
    font-size: 14px;
    font-weight: 600;
}

.flavor-item-info .flavor-desc {
    font-size: 11px;
    color: var(--text-muted);
}

.flavor-item-price-diff {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Step 3: Borders Grid */
.border-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.border-card {
    cursor: pointer;
}

.border-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.border-card-content {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    text-align: center;
    transition: var(--transition);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.border-card input:checked + .border-card-content {
    border-color: var(--primary);
    background-color: var(--primary-light);
    box-shadow: 0 0 0 1px var(--primary);
}

.border-card-content .border-price {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.border-card input:checked + .border-card-content .border-price {
    color: var(--primary);
}

/* Step 4: Textarea notes style */
.customizer-section textarea {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-main);
    outline: none;
    resize: none;
    font-size: 13px;
    transition: var(--transition);
}

.customizer-section textarea:focus {
    border-color: var(--primary);
}

/* Quantity Selector in Modal */
.quantity-selector {
    display: inline-flex;
    align-items: center;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 4px;
}

.quantity-selector .qty-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-selector .qty-btn:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.quantity-selector .qty-number {
    font-weight: 700;
    font-size: 15px;
    padding: 0 16px;
    min-width: 44px;
    text-align: center;
}

/* ==========================================================================
   Checkout Modal Custom Styles
   ========================================================================== */
.checkout-toggle-group {
    display: flex;
    background-color: var(--bg-input);
    padding: 4px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.toggle-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.toggle-option.active {
    background-color: var(--bg-card);
    color: var(--primary);
}

.form-section {
    margin-bottom: 24px;
}

.form-section h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    color: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 6px;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 46px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0 16px;
    font-size: 14px;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
}

/* Payment options grid */
.payment-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.payment-card {
    cursor: pointer;
}

.payment-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-card-content {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 8px;
    text-align: center;
    transition: var(--transition);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.payment-card-content .material-symbols-rounded {
    font-size: 24px;
    color: var(--text-muted);
}

.payment-card input:checked + .payment-card-content {
    border-color: var(--primary);
    background-color: var(--primary-light);
    box-shadow: 0 0 0 1px var(--primary);
}

.payment-card input:checked + .payment-card-content .material-symbols-rounded {
    color: var(--primary);
}

.pix-info-box {
    background: rgba(245, 166, 35, 0.05);
    border: 1px dashed rgba(245, 166, 35, 0.2);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    font-size: 13px;
}

.pix-info-box p strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.pix-info-box .text-sm {
    font-size: 11px;
    color: var(--text-muted);
}

.checkout-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.checkout-total-summary {
    display: flex;
    flex-direction: column;
}

.checkout-total-summary .label {
    font-size: 12px;
    color: var(--text-muted);
}

.checkout-total-summary .price {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.checkout-submit-btn {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 15px rgba(46, 125, 50, 0.2);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .pizzeria-title {
        font-size: 44px;
    }
    .hero-section {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 280px;
        padding-bottom: 24px;
    }
    
    .pizzeria-brand-wrapper {
        gap: 12px;
    }
    
    .pizzeria-logo {
        width: 56px;
        height: 56px;
    }
    
    .pizzeria-title {
        font-size: 36px;
    }
    
    .pizzeria-subtitle {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .header-top {
        margin-bottom: 12px;
    }

    .sticky-nav-wrapper {
        height: auto;
        padding: 12px 24px;
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .search-box {
        width: 100%;
    }

    .categories-nav {
        width: 100%;
        justify-content: flex-start;
        padding-bottom: 4px;
    }

    .custom-pizza-promo {
        flex-direction: column;
        padding: 24px;
        text-align: center;
    }
    
    .promo-text p {
        margin-bottom: 20px;
    }

    .promo-image-wrapper {
        margin-left: 0;
        margin-top: 24px;
        width: 160px;
        height: 160px;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .size-options-grid {
        grid-template-columns: 1fr;
    }
    
    .border-options-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-options-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .modal-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantity-selector {
        justify-content: center;
    }
    
    .checkout-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .checkout-submit-btn {
        width: 100%;
    }
}

/* New Hero Layout Styles */
.hero-flex-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}
.hero-left {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pizzeria-brand-wrapper {
    justify-content: center;
}
.hero-slogan {
    justify-content: center;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}
.animate-float {
    animation: float 6s infinite ease-in-out;
}
.hero-cta-wrapper {
    margin-top: 28px;
}
.btn-large {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 50px;
}

@media (max-width: 992px) {
    .hero-flex-layout {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .hero-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .pizzeria-brand-wrapper {
        justify-content: center;
    }
    .hero-slogan {
        justify-content: center;
    }
    .hero-right {
        display: none;
    }
    .hero-section {
        min-height: auto;
        height: auto;
        padding: 40px 0;
    }
}

/* Tab Navigation Styles */
.menu-navigation-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 12px 24px;
}
.nav-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}
.nav-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}
.nav-tab.active {
    color: #ffffff;
    background: var(--primary-light);
    border-color: rgba(212, 175, 55, 0.3);
}
.menu-category-section {
    display: none;
    padding: 40px 0;
}
.menu-category-section.active {
    display: block;
}

/* Category Intro Styles */
.category-header-intro {
    text-align: center;
    margin-bottom: 40px;
}
.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 8px;
}
.category-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 24px auto;
}
.pizza-size-selector-intro {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}
.size-intro-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: var(--radius-md);
    width: 250px;
    text-align: center;
    transition: var(--transition);
}
.size-intro-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.size-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.size-badge.gold {
    background: var(--primary-light);
    color: var(--primary);
}
.size-intro-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}
.size-intro-card .desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.size-intro-card .price-from {
    font-size: 14px;
    color: var(--text-light);
}
.size-intro-card .price-from strong {
    color: var(--primary);
    font-size: 18px;
}

/* Subcategory Tabs */
.subcategory-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}
.sub-tab {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.sub-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}
.sub-tab.active {
    background: var(--primary);
    color: #000000;
    border-color: var(--primary);
    font-weight: 700;
}

/* Category tags inside cards */
.category-tag-card {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.category-tag-card.tradicional {
    background: rgba(46, 125, 50, 0.12);
    color: #81c784;
    border: 1px solid rgba(46, 125, 50, 0.25);
}
.category-tag-card.especial {
    background: rgba(212, 175, 55, 0.12);
    color: #ffd700;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

/* Enhancing Item Cards for Premium Look */
.item-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease, box-shadow 0.4s ease !important;
}
.item-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(212, 175, 55, 0.35) !important;
    box-shadow: 0 20px 38px rgba(212, 175, 55, 0.08), 0 15px 25px rgba(0, 0, 0, 0.5) !important;
}

/* Image styling correction */
.item-card-image-wrapper {
    position: relative;
    height: 180px;
}
.item-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Visual Pizza Builder & Carousel Styles
   ========================================================================== */

/* Modal Card Adjustments */
.customizer-card {
    max-width: 680px !important;
    background-color: #0c0c0e !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.customizer-body {
    padding: 20px 24px !important;
}

/* Modal Header styling for builder */
.modal-header-center {
    text-align: center;
    flex-grow: 1;
}

.modal-header-center h2 {
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    margin: 0;
}

.modal-header-size-badge {
    display: inline-block;
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 2px;
}

.btn-back, .btn-action-icon {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-back:hover, .btn-action-icon:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 8px;
}

/* Pizza Visualizer Container */
.pizza-visualizer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 70%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 24px;
    position: relative;
}

.pizza-display-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating animation on pizza display */
.pizza-visual-display {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 4s infinite ease-in-out;
    transform-style: preserve-3d;
}

/* Pizza base and crust layers */
.pizza-crust-base {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-image: url('assets/pizza_media.jpg'); /* fallback background */
    background-size: cover;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
    z-index: 1;
}

/* Overlaid Slices */
.pizza-slice-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* Active slice dividers */
.pizza-slice-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Floating Shadow */
.pizza-visual-shadow {
    position: absolute;
    bottom: -15px;
    width: 80%;
    height: 18px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    border-radius: 50%;
    animation: shadowPulse 4s infinite ease-in-out;
}

/* Slices indicator pills */
.active-flavors-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 90%;
}

.flavor-pill {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: scaleIn 0.3s ease;
}

.flavor-pill .slice-num {
    background: var(--primary);
    color: #000;
    width: 15px;
    height: 15px;
    font-size: 9px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flavor-pill .btn-remove-pill {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 0;
}

.flavor-pill .btn-remove-pill:hover {
    color: #ff5252;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes shadowPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(0.85); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes scaleIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Horizontal Carousel */
.carousel-filter-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.filter-tab {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #000000;
}

.flavors-carousel-wrapper {
    position: relative;
    margin: 0 -24px;
    padding: 0 24px;
}

.flavors-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 12px 4px 20px 4px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.flavors-carousel::-webkit-scrollbar {
    display: none;
}

.flavor-carousel-card {
    flex: 0 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    user-select: none;
    transition: transform 0.25s ease;
}

.flavor-carousel-card:active {
    transform: scale(0.95);
}

.flavor-circle-wrapper {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.08);
    background-color: #1a1a1f;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.flavor-circle-wrapper img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.flavor-carousel-card:hover .flavor-circle-wrapper img {
    transform: scale(1.1) rotate(5deg);
}

.flavor-carousel-card.active .flavor-circle-wrapper {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4), var(--shadow-md);
    transform: scale(1.04);
}

.flavor-selection-number {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary);
    color: #000000;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    z-index: 5;
    animation: scaleIn 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #0c0c0e;
}

.flavor-carousel-card .flavor-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 8px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.flavor-carousel-card.active .flavor-name {
    color: var(--primary);
}

.flavor-carousel-card .flavor-category-badge {
    font-size: 8px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

.flavor-carousel-card.active .flavor-category-badge {
    color: rgba(212, 175, 55, 0.7);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .customizer-card {
        height: 100%;
        max-height: 100vh !important;
        border-radius: 0 !important;
        margin: 0 !important;
        border: none !important;
    }
    
    .pizza-display-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .pizza-visualizer-container {
        padding: 15px 0;
    }
}

/* ==========================================================================
   Açaí Customizer Styles
   ========================================================================== */
.acai-additions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .acai-additions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.acai-cup-visualizer {
    position: relative;
    width: 100px;
    height: 130px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.acai-cup-visualizer:hover {
    transform: scale(1.05);
}

.acai-wave {
    animation: acaiWaveAnim 3s infinite linear;
}

@keyframes acaiWaveAnim {
    0% { transform: translateY(0) scaleY(1); }
    50% { transform: translateY(-5px) scaleY(1.05); }
    100% { transform: translateY(0) scaleY(1); }
}

#acaiCustomizerModal .modal-header-size-badge {
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { box-shadow: 0 0 0 0 rgba(74, 20, 140, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(74, 20, 140, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 20, 140, 0); }
}

/* ==========================================================================
   Responsive Menu Alignment & Overflow Fixes (Smartphones)
   ========================================================================== */
@media (max-width: 992px) {
    .pizza-size-selector-intro {
        flex-wrap: wrap;
        gap: 16px;
        padding: 0 16px;
    }
    .size-intro-card {
        width: calc(50% - 8px);
        min-width: 200px;
        padding: 16px;
    }
}

@media (max-width: 600px) {
    /* Header/Hero centering fixes */
    .header-top {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .delivery-info-header {
        justify-content: center;
        width: 100%;
    }

    .pizzeria-brand-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
        width: 100%;
    }

    .pizzeria-logo {
        margin: 0 auto;
    }

    .pizzeria-title {
        text-align: center;
        margin-bottom: 4px;
    }

    .pizzeria-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slogan {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        width: 100%;
    }

    .hero-slogan .tag {
        font-size: 10px; /* Slightly smaller text for tags on mobile */
        padding: 4px 10px;
    }

    /* Categories Bar: Horizontal Scrolling without overflow */
    .nav-tabs-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        gap: 8px;
        padding: 12px 16px;
        scrollbar-width: none; /* Firefox */
    }
    .nav-tabs-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    .nav-tab {
        flex-shrink: 0;
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Subcategory Tabs: Clean wrapping instead of overflow */
    .subcategory-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 24px;
        padding: 0 16px;
    }
    .sub-tab {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Pizza Size Cards: Vertical stack */
    .pizza-size-selector-intro {
        flex-direction: column;
        align-items: center;
    }
    .size-intro-card {
        width: 100%;
        max-width: 320px;
    }

    /* Adjust main layout padding slightly on mobile */
    .container {
        padding: 0 16px;
    }
}




/* ==========================================================================
   ADDED FROM CATALOG.CSS FOR MOBILE APP SHELL LAYOUT
   ========================================================================== */
/* ==========================================================================
   App Shell Mobile Wrapper (Mockup para Desktop)
   ========================================================================== */
.app-container {
    width: 100%;
    max-width: 430px; /* Largura padrão de smartphone */
    height: 100vh;
    height: 100dvh; /* Altura dinâmica para navegadores móveis */
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--bg-main);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Evita rolagem da casca externa no mobile */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

/* Desktop/Tablet Mockup Border */
@media (min-width: 768px) {
    body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background-color: #0b0707; /* Fundo escuro contrastante no computador */
    }

    .app-container {
        height: calc(100vh - 40px);
        max-height: 850px;
        min-height: 600px;
        border-radius: 40px;
        border: 12px solid #222222;
        margin: 20px auto; /* Centraliza horizontalmente no computador */
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 50px rgba(229, 57, 53, 0.15);
    }
}

.app-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari/Edge */
}

/* Main Content Area */
.main-content {
    flex: 1;
    padding-top: 72px; /* Espaço para o Header Fixo */
    padding-bottom: 90px; /* Espaço para a Nav Bar Fixa */
    overflow-y: auto;
}

.main-content::-webkit-scrollbar {
    display: none;
}

/* ==========================================================================
   Header Component (Fixo no Topo)
   ========================================================================== */
.app-header {
    position: absolute; /* Relativo ao app-container */
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition);
}

.app-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-logo {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

/* Address Pill Button */
.address-pill {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
    max-width: 180px;
}

.address-pill:hover {
    background-color: var(--bg-surface-hover);
    border-color: var(--primary);
}

.address-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
}

.address-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.address-label {
    font-size: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.address-value {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-time-badge {
    background-color: var(--primary-glow);
    border: 1px solid rgba(229, 57, 53, 0.3);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-icon-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

/* Estilos do botão add centralizados no bloco principal */

.header-icon-btn:hover {
    color: var(--primary);
}

/* ==========================================================================
   Navigation Bar Component (Fixo no Rodapé)
   ========================================================================== */
.app-navbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 76px;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
}

.navbar-item {
    background: none;
    border: none;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    flex: 1;
    height: 100%;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
}

.navbar-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-item svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: var(--transition);
}

.navbar-item span {
    font-size: 10px;
    font-weight: 600;
    transition: var(--transition);
}

/* Active item indicator */
.navbar-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 15%;
    width: 70%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-item.active {
    color: var(--primary);
}

.navbar-item.active::before {
    transform: scaleX(1);
}

.navbar-item.active svg {
    filter: drop-shadow(0 0 4px var(--primary));
}

/* Cart badge indicator */
.nav-cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--primary);
    color: var(--text-main);
    font-size: 9px;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 1.5px solid var(--bg-surface);
    box-shadow: var(--shadow-active);
    animation: popIn 0.3s ease-out;
}

/* Horizontal scroll utility */
.scroll-x-container {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
    scroll-behavior: smooth;
    margin-right: -16px; /* Expand scrolling area to screen edge */
    padding-right: 16px;
}

.scroll-x-container::-webkit-scrollbar {
    display: none;
}

/* Category Circle Chips Component */
.category-chip {
    flex: 0 0 72px;
    width: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.category-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-premium);
}

.category-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    transition: var(--transition);
    white-space: nowrap;
}

.category-chip.active .category-icon-circle {
    background-color: var(--primary-glow);
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-active);
}

.category-chip.active .category-name {
    color: var(--primary);
    font-weight: 700;
}

/* Hide the old floating cart button when catalog style is active */
.app-container ~ .floating-cart-btn,
body > .floating-cart-btn {
    display: none !important;
}

/* Ensure the cart drawer matches the border radius of the app container on desktop */
@media (min-width: 768px) {
    .app-container .cart-drawer-overlay,
    .app-container .cart-drawer,
    .app-container .modal-overlay {
        position: absolute !important;
    }

    .app-container .cart-drawer-overlay,
    .app-container .modal-overlay {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
    }

    .app-container .cart-drawer {
        border-top-right-radius: 28px;
        border-bottom-right-radius: 28px;
        height: 100% !important;
        max-height: 100% !important;
    }
    
    .app-container .modal-overlay {
        border-radius: 28px;
    }
}

/* Promo Mini-Cards Component */
.promo-mini-card {
    background: linear-gradient(145deg, #241414 0%, #1a1a1a 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: var(--transition);
    overflow: hidden;
}

.promo-mini-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
}

.promo-mini-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.promo-mini-emoji {
    font-size: 22px;
}

.promo-mini-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.promo-mini-desc {
    font-size: 10px;
    color: var(--text-secondary);
    line-height: 1.3;
}

.promo-mini-footer {
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-mini-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
}

.discount-badge {
    background-color: var(--primary);
    color: var(--text-main);
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Single Daily Promo Banner */
.promo-banner-single {
    background: linear-gradient(135deg, #b71c1c 0%, #1a0a0a 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-banner-single:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.promo-banner-single::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.promo-banner-single-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.promo-banner-single-tag {
    background: rgba(229, 57, 53, 0.2);
    color: #ef5350;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.promo-banner-single-discount {
    background-color: var(--primary);
    color: var(--text-main);
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.promo-banner-single-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.promo-banner-single-flavors {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

.promo-banner-single-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 12px;
}

.promo-banner-single-footer span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Daily Promotions Carousel */
.promo-section-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    grid-column: 1 / -1;
}

.promo-section-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.promo-section-slide {
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.promo-section-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.promo-section-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.promo-section-dot.active {
    width: 18px;
    background-color: var(--primary);
    border-radius: 3px;
}

/* Exibe barras de rolagem finas e modernas em computadores (dispositivos com mouse/ponteiro de precisão) */
@media (pointer: fine) {
    .flavors-carousel::-webkit-scrollbar,
    .categories-nav::-webkit-scrollbar,
    .banner-track::-webkit-scrollbar,
    .scroll-x-container::-webkit-scrollbar {
        display: block !important;
        height: 6px !important;
    }
    .flavors-carousel::-webkit-scrollbar-track,
    .categories-nav::-webkit-scrollbar-track,
    .banner-track::-webkit-scrollbar-track,
    .scroll-x-container::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
    }
    .flavors-carousel::-webkit-scrollbar-thumb,
    .categories-nav::-webkit-scrollbar-thumb,
    .banner-track::-webkit-scrollbar-thumb,
    .scroll-x-container::-webkit-scrollbar-thumb {
        background: var(--primary, #ffd600);
        border-radius: 3px;
    }
    .flavors-carousel::-webkit-scrollbar-thumb:hover,
    .categories-nav::-webkit-scrollbar-thumb:hover,
    .banner-track::-webkit-scrollbar-thumb:hover,
    .scroll-x-container::-webkit-scrollbar-thumb:hover {
        background: #e6b800;
    }
}

/* ==========================================================================
   Módulo: Promoção em Tela Cheia (Fullscreen Promo Modal)
   ========================================================================== */
.fullscreen-promo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.fullscreen-promo-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 55, 255, 0.2);
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--border-color);
}

.fullscreen-promo-overlay.active .fullscreen-promo-card {
    transform: scale(1) translateY(0);
}

.fullscreen-promo-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.fullscreen-promo-close-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.fullscreen-promo-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    background: #f1f5f9;
    overflow: hidden;
}

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

.fullscreen-promo-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #ffffff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 55, 255, 0.3);
}

.fullscreen-promo-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.fullscreen-promo-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.fullscreen-promo-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.fullscreen-promo-price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 4px;
}

.fullscreen-promo-price-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.fullscreen-promo-price-val {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
}

.fullscreen-promo-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.btn-promo-order {
    background: var(--primary);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 55, 255, 0.3);
}

.btn-promo-order:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-promo-dismiss {
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.btn-promo-dismiss:hover {
    background: var(--bg-surface-hover);
    color: var(--text-main);
}

/* ==========================================================================
   FASE 6 — Splash Screen Promotional Campaigns
   ========================================================================== */
.splash-screen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.splash-screen-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.splash-screen-overlay.active .splash-screen-container {
    transform: scale(1);
}

.splash-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.splash-close-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: scale(1.08);
}

.splash-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    background: #09090b;
    overflow: hidden;
}

.splash-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.splash-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary, #d73725);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.splash-content-body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    color: #ffffff;
    text-align: center;
}

.splash-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
}

.splash-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary, #e2b13c);
    margin: 0;
}

.splash-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.45;
    margin: 0;
}

.splash-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 14px;
    margin-top: 4px;
}

.splash-price-label {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.splash-price-val {
    font-size: 24px;
    font-weight: 800;
    color: #10b981;
}

.splash-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.btn-splash-primary {
    width: 100%;
    padding: 14px 20px;
    border-radius: 14px;
    border: none;
    background: var(--primary, #d73725);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.btn-splash-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}

.btn-splash-secondary {
    width: 100%;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-splash-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

@media (min-width: 768px) {
    .splash-screen-container {
        max-width: 520px;
    }
    .splash-image-wrapper {
        height: 260px;
    }
    .splash-title {
        font-size: 25px;
    }
}


