/* ==========================================================================
   CSS Premium - Cravo & Canela Cardápio Digital (Estilo Goomer App)
   ========================================================================== */

/* Variables */
:root {
    --primary: #d66f2a; /* Cinnamon Orange */
    --primary-hover: #b85718;
    --bg-dark: #3b2216; /* Clove Deep Brown */
    --bg-card: rgba(30, 24, 20, 0.7); /* Translucent Chocolate */
    --bg-body: #17120e;
    --text-main: #f4ebe1; /* Soft Cream */
    --text-muted: #bda28f;
    --accent: #e76f51;
    --success: #2a9d8f;
    --border-color: rgba(214, 111, 42, 0.15);
    --border-hover: rgba(214, 111, 42, 0.4);
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glass-blur: blur(12px);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.goomer-layout {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 90px; /* Space for bottom cart bar */
}

/* Ambient glow blobs */
.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.glow-1 {
    top: 5%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary);
}

.glow-2 {
    top: 45%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: var(--accent);
}

/* Container */
.container {
    width: 100%;
    max-width: 768px; /* App maximum width for desktop centering */
    margin: 0 auto;
    padding: 0 16px;
}

/* App Header Section */
.app-header {
    position: relative;
    padding: 30px 16px 20px 16px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.app-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
    z-index: -1;
}

.overlay-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
}

.app-brand-info {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.app-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow);
}

.app-brand-text h1 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-main);
    line-height: 1.2;
}

.app-brand-text .tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.app-badges {
    display: flex;
    gap: 8px;
}

.status-badge-goomer {
    background: rgba(42, 157, 143, 0.2);
    border: 1px solid var(--success);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--success);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.delivery-time-badge {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.music-toggle-btn-goomer {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.music-toggle-btn-goomer:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.music-toggle-btn-goomer.playing {
    background: var(--success);
    border-color: var(--success);
    box-shadow: 0 0 10px rgba(42, 157, 143, 0.3);
}

/* Sticky Navigation Container */
.sticky-nav-container {
    position: sticky;
    top: 0;
    background: var(--bg-dark);
    z-index: 10;
    border-bottom: 1px solid var(--border-color);
}

/* Delivery/Pickup Header Toggle */
.header-toggle-container {
    display: flex;
    justify-content: center;
    padding: 14px 16px 4px 16px;
}

.delivery-toggle-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 3px;
    border-radius: 30px;
    width: 100%;
    max-width: 320px;
}

.toggle-switch-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.toggle-switch-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 3px 8px rgba(214, 111, 42, 0.25);
}

/* Search Bar */
.search-bar-container {
    padding: 12px 16px 6px 16px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

#search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 10px 14px 10px 38px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition);
}

#search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

/* Category Slider */
.categories-scroll-wrapper {
    overflow-x: auto;
    padding: 6px 16px 12px 16px;
    -webkit-overflow-scrolling: touch;
}

.categories-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for clean look */
}

.categories-scroll {
    display: flex;
    gap: 8px;
    width: max-content;
}

.category-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.category-pill:hover {
    color: var(--text-main);
}

.category-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(214, 111, 42, 0.25);
}

/* Day selector pill style */
.day-selector-goomer-wrapper {
    padding: 0 16px 12px 16px;
    overflow-x: auto;
}

.day-selector-goomer-wrapper::-webkit-scrollbar {
    display: none;
}

.day-selector-goomer {
    display: flex;
    gap: 6px;
    width: max-content;
}

.day-pill-goomer {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.day-pill-goomer.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(214, 111, 42, 0.05);
}

/* App Main Content */
.app-main-content {
    padding-top: 20px;
}

/* Goomer Item Row */
.goomer-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.goomer-item-row {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.goomer-item-row:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.goomer-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.goomer-item-info h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.goomer-item-info .desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.goomer-item-info .price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.goomer-item-img-box {
    position: relative;
    width: 85px;
    height: 85px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.goomer-item-img-box img,
.goomer-item-img-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.add-btn-row {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: var(--transition);
}

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

/* Empty States */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.empty-state i {
    font-size: 2rem;
    color: rgba(255,255,255,0.05);
}

/* Buffet Section Goomer representation */
.buffet-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 24px;
}

.buffet-icon-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.buffet-icon-header i {
    font-size: 1.4rem;
    color: var(--primary);
}

.buffet-icon-header h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
}

.buffet-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.buffet-item-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    transition: var(--transition);
}

.buffet-item-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.buffet-item-card img {
    width: 65px;
    height: 65px;
    object-fit: cover;
}

.buffet-item-details {
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.buffet-item-details h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
}

.buffet-status {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    background: rgba(214, 111, 42, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    width: fit-content;
}

/* Goomer Detail Modal Overlay */
.detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    display: flex;
    align-items: flex-end; /* Slides up from mobile bottom */
    justify-content: center;
}

.detail-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.detail-modal {
    width: 100%;
    max-width: 500px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 92vh;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.6);
}

.detail-overlay.open .detail-modal {
    transform: translateY(0);
}

.close-detail {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.detail-img-container {
    height: 240px;
    background: #000;
    position: relative;
}

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

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

.detail-body h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.detail-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.modal-options-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    margin-bottom: 20px;
}

.modal-options-section h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.required-tag {
    background: var(--primary);
    color: #fff;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.options-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.option-row input {
    margin-right: 12px;
    accent-color: var(--primary);
}

.option-name {
    font-size: 0.9rem;
    flex-grow: 1;
}

.option-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.option-row.active {
    border-color: var(--primary);
    background: rgba(214, 111, 42, 0.05);
}

.form-control {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

/* Detail Footer Action */
.detail-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 16px;
    align-items: center;
}

.qty-selector-goomer {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 4px;
}

.qty-btn-goomer {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}

.qty-btn-goomer:hover {
    background: var(--primary);
    color: #fff;
}

.qty-selector-goomer span {
    font-weight: 700;
    font-size: 1rem;
    width: 30px;
    text-align: center;
}

.detail-footer .btn {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
}

/* Bottom Floating Cart Bar */
.bottom-cart-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 32px);
    max-width: 468px;
    background: var(--primary);
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(214, 111, 42, 0.35);
    z-index: 99;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}

.bottom-cart-bar.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.bottom-cart-bar:hover {
    background: var(--primary-hover);
}

.cart-bar-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-bar-icon-wrapper {
    position: relative;
    font-size: 1.4rem;
}

.cart-bar-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--bg-dark);
    color: #fff;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-bar-text {
    display: flex;
    flex-direction: column;
}

.cart-bar-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-bar-total {
    font-size: 0.75rem;
    opacity: 0.9;
}

.arrow-icon {
    font-size: 0.9rem;
}

/* JUMP ANIMATION ON ADD */
@keyframes jump {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.08); }
    100% { transform: translateX(-50%) scale(1); }
}

.bottom-cart-bar.jump {
    animation: jump 0.3s ease;
}

/* Cart Sidebar (Sacola) */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: absolute;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--bg-dark);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-overlay.open .cart-sidebar {
    right: 0;
}

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

.cart-header h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--primary);
}

.close-cart {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

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

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cart-items-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.empty-cart-message {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.empty-cart-message i {
    font-size: 3rem;
    color: rgba(255,255,255,0.05);
}

/* Cart Item Row */
.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-item-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
}

.cart-item-obs {
    font-size: 0.75rem;
    color: var(--primary);
    font-style: italic;
    margin: 2px 0;
}

.cart-item-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border-hover);
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
}

.cart-item-price {
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}

/* Delivery configuration in Cart */
.cart-delivery-section {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.cart-delivery-section h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.delivery-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.delivery-option-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.delivery-option-card input {
    position: absolute;
    opacity: 0;
}

.delivery-option-card.active {
    border-color: var(--primary);
    background: rgba(214, 111, 42, 0.05);
}

.option-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.option-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

/* Cart Footer billing values */
.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
}

.bill-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.total-row {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 12px;
    margin-bottom: 20px;
}

.total-row span:last-child {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 111, 42, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-hover);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.btn-success {
    background-color: var(--success);
    color: #fff;
    font-size: 1.1rem;
}

.btn-success:hover {
    background-color: #38b000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.4);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Admin Modal & Trigger */
.admin-trigger {
    cursor: pointer;
}

.admin-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.admin-modal {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

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

.admin-header h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--primary);
}

.close-admin {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.close-admin:hover {
    color: var(--text-main);
}

.admin-body {
    padding: 24px;
}

/* Pulse animation */
@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* Responsive constraints */
@media (max-width: 576px) {
    .app-brand-info {
        gap: 12px;
    }
    
    .app-logo {
        width: 60px;
        height: 60px;
    }

    .app-brand-text h1 {
        font-size: 1.5rem;
    }
    
    .sticky-nav-container {
        top: 0;
    }
    
    .bottom-cart-bar {
        width: calc(100% - 24px);
        bottom: 16px;
    }
    
    .cart-sidebar {
        max-width: 100%;
        right: -100%;
    }
}

/* Floating Chef Image on Desktop */
.chef-floating-desktop {
    display: none;
}

@media (min-width: 1200px) {
    .chef-floating-desktop {
        display: block;
        position: fixed;
        bottom: 0;
        right: 2%;
        height: 55vh;
        z-index: 0;
        pointer-events: none;
        animation: slideUpChef 1s ease-out;
    }

    .chef-floating-desktop img {
        height: 100%;
        width: auto;
        object-fit: contain;
        mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        opacity: 0.95;
    }
}

@keyframes slideUpChef {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 0.95;
    }
}

.buffet-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.buffet-header-info i {
    font-size: 1.3rem;
    color: var(--primary);
}

.buffet-header-info h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-main);
}

/* Custom Orders Banner */
.custom-orders-banner {
    background: linear-gradient(135deg, rgba(30, 24, 20, 0.95), rgba(214, 111, 42, 0.08));
    border: 1px dashed var(--primary);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow);
}

.custom-banner-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.custom-orders-banner .banner-icon {
    font-size: 1.8rem;
    color: var(--primary);
    background: rgba(214, 111, 42, 0.1);
    padding: 10px;
    border-radius: 12px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-orders-banner .banner-text h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.custom-orders-banner .banner-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.btn-custom-whatsapp {
    background: var(--success);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 20px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-custom-whatsapp:hover {
    background: #38b000;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
}

@media (min-width: 650px) {
    .custom-orders-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .btn-custom-whatsapp {
        flex-shrink: 0;
        width: auto;
    }
}

/* Banner de Carrossel Promocional (Dia dos Pais) */
.promotional-carousel-banner {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    margin: 15px 0 25px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    border: 1px solid var(--border-hover);
    display: block;
    box-sizing: border-box;
}

.carousel-slides-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: none;
}

.carousel-tag {
    background: var(--primary-color);
    color: var(--background-dark);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carousel-content-overlay h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 0 0 6px 0;
    font-weight: 800;
    text-shadow: 0 3px 6px rgba(0,0,0,0.9);
}

.carousel-content-overlay p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0 0 12px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}

.btn-carousel-order {
    pointer-events: auto;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--background-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    width: fit-content;
    transition: var(--transition);
}

.btn-carousel-order:hover {
    background: transparent;
    color: var(--primary-color);
}

.carousel-dots {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.carousel-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}




