:root {
    --primary: #FF5E00;
    --primary-hover: #ff7b00;
    --secondary: #FFD700;
    --bg-body: #111111;
    --bg-card: #1E1E1E;
    --bg-glass: rgba(30, 30, 30, 0.95);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 94, 0, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 215, 0, 0.05), transparent 25%);
    font-family: 'DM Sans', sans-serif;
    color: var(--text-main);
    margin: 0;
    padding: 0;
    padding-bottom: 100px;
    /* Espaço para o FAB */
    overflow-x: hidden;
}

/* --- Search & Filters Section --- */
.search-container {
    padding: 0 20px;
    margin-bottom: 30px;
    margin-top: -20px;
    /* Puxar um pouco pra cima */
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto 20px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2rem;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 15px 15px 45px;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 94, 0, 0.2);
}

.filter-chips {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: center;
    scrollbar-width: none;
    /* Firefox */
}

.filter-chips::-webkit-scrollbar {
    display: none;
}

.chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.chip:hover,
.chip.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* --- Skeleton Loading --- */
.skeleton {
    background: #1a1a1a;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    height: 400px;
}

.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0.05) 20%,
            rgba(255, 255, 255, 0.1) 60%,
            rgba(255, 255, 255, 0));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseCart {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Corrigindo a animação para usar translate (movimento relativo) */
@keyframes flyToCart {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(var(--target-x), var(--target-y)) scale(0.1);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: scale(0.1);
    left: var(--target-x);
    top: var(--target-y);
}


.scroll-reveal {
    opacity: 0;
    /* Começa invisível */
    animation-fill-mode: forwards;
    /* Mantém o estado final */
}

.scroll-reveal.visible {
    animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Atrasos em cascata para itens da grid */
.grid .card:nth-child(1) {
    animation-delay: 0.1s;
}

.grid .card:nth-child(2) {
    animation-delay: 0.2s;
}

.grid .card:nth-child(3) {
    animation-delay: 0.3s;
}

.grid .card:nth-child(4) {
    animation-delay: 0.4s;
}

.grid .card:nth-child(5) {
    animation-delay: 0.5s;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 45vh;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), rgba(17, 17, 17, 1)),
        url('/assets/demo-photo.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Efeito Parallax */
    padding: 20px;
}

.brand-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-main);
    margin: 0;
    text-shadow: 0 4px 20px rgba(255, 94, 0, 0.6);
    border: 4px solid var(--primary);
    padding: 15px 40px;
    transform: skewX(-5deg);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.brand-subtitle {
    margin-top: 20px;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

/* --- Sticky Navigation --- */
.nav-sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition: all 0.3s;
}

.nav-sticky::-webkit-scrollbar {
    display: none;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho no botão */
.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover,
.nav-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 94, 0, 0.4);
    transform: translateY(-2px);
}

/* --- Main Content --- */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px;
}

.menu-section {
    scroll-margin-top: 100px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    margin-top: 40px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    min-height: 400px;
    /* Evita colapso durante filtro */
}

/* --- Card Design --- */
.card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    opacity: 0;
}

/* Hover aprimorado (Sugestão 3.2) */
.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--primary);
    z-index: 2;
}

.card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img {
    transform: scale(1.15);
    /* Zoom suave na imagem */
}

/* Overlay gradiente na imagem */
.card-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(30, 30, 30, 1), transparent);
}

/* --- Badges / Tags --- */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 8px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    animation: pulseCart 2s infinite;
}

.badge-gold {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.badge-red {
    background: linear-gradient(135deg, #ff4b1f, #ff9068);
    color: #fff;
}

.badge-green {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: #fff;
}

.badge-dark {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: 1px solid #444;
}

/* Popular Badge (Sugestão 1.3) */
.popular-badge {
    position: absolute;
    /* Movemos para cima (sobre a imagem) para não cobrir o preço */
    top: 165px;
    bottom: auto;
    /* Remove a fixação antiga do rodapé */
    left: 10px;
    background: rgba(0, 0, 0, 0.85);
    /* Fundo mais escuro para contraste na foto */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    border-left: 3px solid var(--primary);
    /* Borda um pouco mais grossa para destaque */
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    /* Permite clicar na imagem/card através do badge */
}

.popular-badge i {
    color: var(--primary);
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    z-index: 1;
    /* Sobrepor o gradiente */
}

.card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-main);
    line-height: 1.2;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    flex-grow: 1;
    line-height: 1.6;
    margin-top: 10px;
}

.card-desc span.en {
    display: block;
    font-style: italic;
    font-size: 0.85rem;
    margin-top: 6px;
    opacity: 0.6;
}

/* Combo Option Styling */
.combo-option {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.2s;
}

.combo-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.combo-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
}

.combo-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}

.combo-checkbox:checked {
    background-color: var(--secondary);
}

.combo-checkbox:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #000;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.combo-details {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    margin-left: 30px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 94, 0, 0.3);
}

.btn-add {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-add:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary);
}

.btn-add:active {
    transform: scale(0.9);
}

/* Classe de animação ao clicar */
.btn-add.adding {
    background: #4CAF50 !important;
    transform: rotate(360deg);
}

/* --- Animation Item Flying --- */
.flying-item {
    position: fixed;
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 0 10px var(--primary);
}

/* --- Reviews Section --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.review-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: 0.3s;
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.review-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.05);
    font-size: 2rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #333, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
}

.stars {
    color: var(--secondary);
    font-size: 0.85rem;
    margin-top: 2px;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
}

/* --- Rich Footer --- */
.footer-rich {
    background-color: #080808;
    border-top: 1px solid #222;
    padding: 80px 0 40px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col li {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid #333;
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 94, 0, 0.3);
}

.map-container {
    width: 100%;
    height: 180px;
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid #333;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.5s;
    filter: grayscale(100%);
}

.map-container:hover .map-img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    color: #444;
    font-size: 0.85rem;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

/* --- Cart System Styles --- */
.cart-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.5);
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
}

.cart-fab:hover {
    transform: scale(1.1) rotate(10deg);
}

.cart-fab.pulse {
    animation: pulseCart 0.4s ease-in-out;
}

.cart-counter {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Modal Carrinho (Estilos atualizados para animação suave) */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;

    /* Configuração padrão (fechado) */
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    justify-content: flex-end;

    /* Delay no visibility para garantir transição suave ao fechar */
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;

    /* Otimização de GPU */
    will-change: opacity, visibility;
    -webkit-backface-visibility: hidden;
}

/* Estado Aberto do Modal */
.cart-modal-overlay.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    /* Remove delay ao abrir */
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

/* Sidebar do Carrinho */
.cart-sidebar {
    width: 100%;
    max-width: 450px;
    background: #111;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;

    /* Sombra para profundidade */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid #333;

    /* Estado inicial: fora da tela (Direita) */
    transform: translateX(100%);

    /* Otimização */
    will-change: transform;

    /* Curva de saída (Fechando): Começa devagar e acelera */
    transition: transform 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* Estado Aberto da Sidebar (Entra na tela) */
.cart-modal-overlay.open .cart-sidebar {
    transform: translateX(0);
    /* Curva de entrada (Abrindo): Rápida no início, freia suavemente no fim */
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-header {
    display: flex;
    flex-direction: column;
    /* Allow upsell bar below */
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.cart-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cart-header h2 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    color: var(--primary);
    font-size: 1.8rem;
}

.delivery-estimation {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 5px;
    display: inline-block;
}

/* Upsell Bar no Carrinho (Sugestão 4.1) */
.upsell-bar-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    margin-top: 5px;
}

.upsell-text {
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 5px;
    display: block;
    text-align: center;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    width: 0%;
    transition: width 0.5s ease;
}

.close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-cart:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 10px;
    /* Espaço para scrollbar */
}

/* Custom scrollbar para carrinho */
.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: #222;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

.cart-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUp 0.3s ease forwards;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.cart-item-info h4 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
}

.cart-item-info p {
    margin: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Input de Observação no Carrinho */
.cart-item-obs {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    border-radius: 4px;
    padding: 8px 10px;
    color: #ddd;
    font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
    transition: 0.3s;
    margin-top: 5px;
}

.cart-item-obs:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.5);
}

.remove-item {
    color: #ff4b1f;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    opacity: 0.7;
    transition: 0.2s;
}

.remove-item:hover {
    opacity: 1;
    transform: scale(1.1);
}

.cart-total {
    border-top: 1px solid #333;
    padding-top: 25px;
    margin-bottom: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Oswald', sans-serif;
}

.btn-checkout {
    background: linear-gradient(90deg, var(--primary), #ff4500);
    color: white;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(255, 94, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.5);
}

.btn-checkout::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* --- Notification Toast --- */
.toast {
    position: fixed;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    background: #222;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #333;
}

.toast i {
    color: var(--primary);
    font-size: 1.2rem;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* --- Mobile Tweaks --- */
@media (max-width: 600px) {
    .brand-logo {
        font-size: 2.8rem;
    }

    .hero {
        height: 40vh;
    }

    .nav-container {
        justify-content: flex-start;
        padding: 0 15px;
    }

    .nav-container::after {
        content: '';
        padding-right: 15px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cart-sidebar {
        max-width: 100%;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Melhora chips no mobile */
    .filter-chips {
        justify-content: flex-start;
        padding-left: 20px;
    }

    .filter-chips::after {
        content: '';
        padding-right: 20px;
    }
}
