@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

:root {
    --bs-font-family-titles: 'Roboto', sans-serif;
    --bs-font-family-text: 'Open Sans', sans-serif;
    --bs-primary: #8e0006; /* Vermelho rubro */
    --bs-secondary: #ffc107; /* Amarelo */
    --bs-light: #F8F9FA; /* Branco Off-White */
    --bs-dark: #1B1B1B; /* Preto-Ebony */
}

.label-floating-dark {
    background-color: #212529; /* mesmo tom de bg-dark */
    color: white;
    padding: 0 .25rem;
}

/* Aplicando a fonte Open Sans globalmente no body */
body {
    font-family: var(--bs-font-family-text);
    background-color: #000000;
    color: var(--bs-light);
    margin: 0 auto; /* Centraliza o conteúdo horizontalmente */
    padding: 0px; /* Adiciona um espaçamento nas laterais para telas menores */
    box-sizing: border-box; /* Inclui padding e border dentro da largura total */
    position: fixed;
    width: 100%;
    height: 100%;
}

html, body {
    overflow-x: hidden;
    touch-action: pan-y; /* Impede o scroll horizontal */
}



/* Mantenha os botões em grupos de botões alinhados corretamente */
.btn-group > .btn {
    position: relative;
    flex: 1 1 auto;
}

label {

    color:black
}

p {
    color: var(--bs-light);
}

dt, dl {
    color: var(--bs-light);
}

nav-item {
    color: var(--bs-secondary);
}

/* Limitando o conteúdo */
#conteudoPrincipal {
    max-width: 850px; /* Largura máxima */
    width: 100%; /* Responsividade: usa toda a largura disponível */
    box-sizing: border-box; /* Inclui padding e borda dentro da largura total */
    margin: 0 auto; /* Centraliza horizontalmente */
}

/* Botões */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Linhas divisórias */
hr {
    color: var(--bs-light);
}

.filters-container > .filter {
    margin: 3px;
}

.fab-container {
    position: fixed;
    bottom: 30px; /* distância do rodapé */
    right: 30px; /* distância da lateral direita */
    z-index: 9999; /* garantir que fique acima de outros elementos */
}

.fab-btn {
    background-color: var(--bs-dark); /* fundo preto */
    color: var(--bs-light); /* ícone / texto branco */
    border: none;
    border-radius: 50%; /* arredonda totalmente */
    width: 56px;
    height: 56px; /* define tamanho do botão */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    cursor: pointer;
}

    /* Efeito de hover se quiser */
    .fab-btn:hover {
        background-color: #333;
    }

/* Classe personalizada para sobrescrever o estilo padrão da paginação */
.pagination-transparent .page-link {
    /* Fundo transparente */
    background-color: transparent !important;
    /* Borda no tom do btn-secondary (#6c757d) */
    border-color: #6c757d !important;
    /* Texto também no tom do btn-secondary */
    color: #6c757d !important;
}

    /* Quando o cursor passa sobre o link */
    .pagination-transparent .page-link:hover {
        background-color: #6c757d !important;
        color: #ffffff !important;
    }

/* Estado ativo (página atual) */
.pagination-transparent .page-item.active .page-link {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
}

/* Responsividade */
@media (max-width: 576px) {
    .card {
        width: calc(100% - 16px);
    }
}

/* Aplicando Roboto em todos os h1, h2, h3, h4, h5, h6 */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--bs-font-family-titles);
    color: var(--bs-light); /* Branco Off-White */
}

/* Links */
a {
    font-family: var(--bs-font-family-text);
    color: var(--bs-secondary);
}

    a:hover {
        color: #ff3300;
        text-decoration: underline;
    }

/* Botões */
.btn {
    font-family: var(--bs-font-family-text);
}

/* Esconde até 800px de largura */
@media (max-width: 800px) {
    .show-larger-800 {
        display: none !important;
    }
}

/* Exibe acima de 800px de largura */
@media (min-width: 801px) {
    .show-larger-800 {
        display: flex !important;
    }
}

.page-size-chooser {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

    .page-size-chooser select {
        margin: 0 1rem;
        padding: 0.25rem 0.5rem;
    }

/* Muda a cor de fundo e a cor do texto dos botões do paginador */
.grid-paginator .pagination button {
    background-color: #007bff; /* Cor de fundo desejada */
    color: white; /* Cor do texto */
}

/* Se houver links (anchor tags), você também pode estilizar especificamente */
.grid-paginator .pagination a {
    color: #fff; /* Exemplo de cor de link */
}

.breadcrumb {
    background-color: transparent; /* Fundo transparente */
    padding: 0; /* Remove espaçamento extra */
}

.breadcrumb-item {
    color: #f5f5f5; /* Branco fosco para melhor legibilidade */
}

    .breadcrumb-item a {
        color: var(--bs-secondary); /* Dourado para destaque nos links */
        text-decoration: none; /* Remove o sublinhado */
    }

        .breadcrumb-item a:hover {
            text-decoration: underline; /* Adiciona sublinhado ao passar o mouse */
            color: #ffd700; /* Amarelo mais claro no hover */
        }

    .breadcrumb-item::before {
        color: #f5f5f5; /* Branco fosco para o separador ("/") */
        content: ""; /* Define o separador */
    }

    .breadcrumb-item.active {
        color: #aaaaaa; /* Cinza claro para o item ativo */
        font-weight: bold; /* Negrito para destacar o ativo */
    }

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col-title-text {
    color: var(--bs-light);
}

.text-muted {
    color: var(--bs-light) !important;
}

.nav-container a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 0.25rem 0;
    color: #ccc;
    /* cor base para abas não ativas */
    position: relative;
    font-size: 0.875rem;
    /* opcional, texto menor */
}

    /* Linha vertical dividindo as abas (exceto a última) */
    .nav-container a:not(:last-child) {
        border-right: 1px solid #666;
    }

    /* Aba ativa: remove qualquer cor de fundo e aplica cor primária no texto/ícone */
    .nav-container a.active-tab {
        background-color: transparent;
        /* ou 'inherit' para herdar do nav */
        color: var(--bs-secondary) !important;
    }

.category-card {
    /* Torna cada card “clicável” se desejar */
    cursor: pointer;
    border-radius: 8px;
    height: 140px; /* Altura aproximada para exibição em grid */
    background-size: cover; /* Ajuste da imagem */
    background-position: center;
    position: relative;
    overflow: hidden; /* Para recortar o overlay e o texto se ultrapassar */
}

/* Overlay escuro translúcido para destacar o texto */
.category-overlay {
    position: absolute;
    inset: 0; /* top, right, bottom, left: 0 */
    background-color: rgba(0, 0, 0, 0.4);
}

/* Título sobreposto na parte inferior do card, máx. de 2 linhas */
.category-title {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    /* Limita a 2 linhas */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* máximo de 2 linhas */
    overflow: hidden;
    text-overflow: ellipsis;
}

.icon-scroll-container {
    white-space: nowrap; /* habilita scroll horizontal */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.icon-box {
    display: inline-block; /* itens lado a lado */
    width: 80px; /* largura padrão de cada box */
    margin-right: 1rem; /* espaçamento horizontal */
    text-align: center;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 0.5rem auto; /* centraliza e adiciona margem abaixo */
}

    .icon-circle i {
        font-size: 1.2rem; /* Tamanho do ícone */
    }

/* Degradê para o fundo do texto */
.carousel-overlay {
    position: absolute;
    top: 0; /* Começa no topo da imagem */
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)); /* Ajusta o degradê */
    color: #fff;
    z-index: 1;
    text-align: left;
    display: flex; /* Garante que o conteúdo seja posicionado corretamente */
    flex-direction: column; /* Organiza o conteúdo verticalmente */
    justify-content: flex-end; /* Mantém o texto na parte inferior */
    padding: 00px; /* Adiciona espaço ao redor do texto */
}

/* Ajuste do texto sobreposto */
.carousel-text {
    position: relative;
    z-index: 3;
}

    .carousel-text h3 {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .carousel-text p {
        font-size: 0.9rem;
        margin: 0;
    }

.event-info, .event-location {
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Ajuste para imagens do carousel */
.carousel-inner img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top; /* Mantém a imagem cobrindo o container, posicionada a partir do topo */
}

/* Ajuste para manter o carrossel responsivo */
.carousel-inner {
    position: relative;
}

.offline-container {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    display: none; /* Inicialmente oculto */
}

.offline-icon {
    font-size: 64px;
    margin-bottom: 20px;
    color: #dc3545;
}

/* Estilo para o Paywall */
.paywall-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.5s ease-in-out;
}

.paywall-logo {
    margin-bottom: 20px;
    max-width: 150px;
}

.paywall-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.paywall-description {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
}

.paywall-button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b6b 0%, #d62976 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(214, 41, 118, 0.4);
}

    .paywall-button:hover {
        transform: scale(1.05);
    }

.paywall-login {
    color: #ff6b6b;
    text-decoration: none;
    font-size: 14px;
}

    .paywall-login:hover {
        text-decoration: underline;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.map-header {
    margin-bottom: 20px;
}

.map-title {
    font-family: var(--bs-font-family-titles);
    color: var(--bs-light);
    margin-bottom: 10px;
    font-size: 32px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.map-description {
    color: #cccccc;
    font-size: 16px;
    max-width: 800px;
    line-height: 1.5;
}

.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(26, 26, 26, 0.85);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
}

.legend-count {
    font-size: 13px;
    color: #aaaaaa;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .map-title {
        font-size: 24px;
    }

    .map-description {
        font-size: 14px;
    }

    .map-legend {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
    }
}


.membership-cta-card {
    background: rgba(27, 27, 27, 0.9);
    border-radius: 0;
    padding: 30px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    position: relative;
    border-left: none;
    overflow: hidden;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8e0006 0%, #cb7b1b 100%);
    margin: 0 auto 20px auto;
    box-shadow: none;
}

    .cta-icon i {
        font-size: 32px;
        color: #F8F9FA;
    }

.cta-content {
    text-align: center;
}

    .cta-content h3 {
        font-family: 'Roboto', sans-serif;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #F8F9FA;
    }

    .cta-content p {
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        color: #F8F9FA;
        margin-bottom: 20px;
        line-height: 1.5;
    }

.cta-benefits {
    font-weight: 600;
    margin-bottom: 5px !important;
}

.cta-content ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: center;
}

    .cta-content ul li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 0;
        color: #F8F9FA;
        font-family: 'Open Sans', sans-serif;
        font-size: 15px;
    }

        .cta-content ul li::before {
            content: "✓";
            color: #cb7b1b;
            font-weight: bold;
            margin-right: 8px;
        }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-primary {
    background-color: #8e0006; /* Vermelho rubro */
    border-color: #8e0006;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #7c0005;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(142, 0, 6, 0.3);
    }

.btn-outline-secondary {
    border-color: #ffc107; /* Amarelo */
    color: #ffc107;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

    .btn-outline-secondary:hover {
        background-color: #ffc107;
        color: #F8F9FA;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
    }

/* Removendo o efeito de curva decorativa no card */
.membership-cta-card::after {
    display: none;
}

@media (min-width: 768px) {
    .membership-cta-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 40px;
    }

    .cta-icon {
        margin: 0 30px 0 0;
    }

    .cta-content {
        text-align: left;
    }

        .cta-content ul {
            text-align: left;
        }

    .cta-buttons {
        justify-content: flex-start;
    }
}


le>
.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.map-header {
    margin-bottom: 20px;
}

.map-title {
    font-family: var(--bs-font-family-orelega);
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 32px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.map-description {
    color: #cccccc;
    font-size: 16px;
    max-width: 800px;
    line-height: 1.5;
}

/* Layout do mapa e lista lateral */
.map-layout {
    display: flex;
    gap: 15px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Estilo da barra lateral */
.map-sidebar {
    width: 300px;
    background-color: rgba(26, 26, 26, 0.9);
    border-radius: 10px 0 0 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-header {
    padding: 15px;
    background-color: rgba(40, 40, 40, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h5 {
    margin: 0;
    color: #ff6b6b;
    font-size: 18px;
}

.locais-lista {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.local-item {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    background-color: rgba(50, 50, 50, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.local-item:hover {
    background-color: rgba(80, 80, 80, 0.7);
    transform: translateY(-2px);
}

.local-nome {
    color: white;
    font-weight: 500;
}

.distancia {
    color: #ff6b6b;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

/* Estilo do mapa */
.map-wrapper {
    flex: 1;
    position: relative;
    border-radius: 0 12px 12px 0;
    overflow: hidden;
}

#map {
    height: 100%;
    width: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
    .map-layout {
        flex-direction: column;
        height: auto;
    }

    .map-sidebar {
        width: 100%;
        border-radius: 10px 10px 0 0;
        max-height: 200px;
    }

    .map-wrapper {
        border-radius: 0 0 10px 10px;
        height: 400px;
    }
}

/* Estilos existentes */
.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(26, 26, 26, 0.85);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
}

.legend-count {
    font-size: 13px;
    color: #aaaaaa;
    margin-top: 2px;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.map-header {
    margin-bottom: 20px;
}

.map-title {
    font-family: var(--bs-font-family-orelega);
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 32px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.map-description {
    color: #cccccc;
    font-size: 16px;
    max-width: 800px;
    line-height: 1.5;
}

.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

#map {
    height: 500px;
    width: 100%;
    border-radius: 10px;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(26, 26, 26, 0.85);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
}

.legend-count {
    font-size: 13px;
    color: #aaaaaa;
    margin-top: 2px;
}

/* Base Styles */
.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.checkout-header {
    margin-bottom: 1.5rem;
}

.checkout-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.checkout-header p {
    margin-bottom: 1rem;
    color: #666;
}

.back-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #007bff;
    font-weight: 500;
    transition: color 0.3s;
}

.back-link:hover {
    color: #0056b3;
}

/* Content Styles */
.checkout-content {
    display: grid;
    grid-gap: 1.5rem;
}

@media (min-width: 992px) {
    .checkout-content {
        grid-template-columns: 3fr 1fr;
    }
}

/* Summary Styles */
.checkout-summary {
    background-color: #212529;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 1.5rem;
    color: #fff;
}

.checkout-summary h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.75rem;
}

/* Product List Styles */
.produto-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.produto-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.produto-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.produto-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-thumb {
    width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    border-radius: 6px;
}

.produto-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.produto-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-details {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-original {
    font-size: 0.875rem;
    text-decoration: line-through;
    color: #adb5bd;
}

.price-promotional {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discount-badge {
    background-color: #28a745;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.action-buttons {
    margin-top: 0.5rem;
}

/* Alert Styles */
.alert-card {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.success-card {
    background-color: #212529;
    color: #fff;
    border-left: 5px solid #28a745;
}

.error-card {
    background-color: #212529;
    color: #fff;
    border-left: 5px solid #dc3545;
}

.alert-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.alert-message {
    background-color: rgba(255,193,7,0.1);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    color: #ffc107;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Empty Cart Styles */
.empty-cart {
    text-align: center;
    padding: 2rem 1rem;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.3);
}

/* Checkout Info Styles */
.checkout-info {
    background-color: #212529;
    border-radius: 12px;
    padding: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.checkout-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.checkout-info ul {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.checkout-info li {
    margin-bottom: 0.5rem;
    color: #adb5bd;
}

.checkout-info a {
    color: #007bff;
    text-decoration: underline;
    transition: color 0.2s;
}

.checkout-info a:hover {
    color: #0056b3;
}

/* Checkout Actions */
.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.total-label {
    font-size: 1.125rem;
    font-weight: 600;
}

.total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

.checkout-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.checkout-actions .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .checkout-header h2 {
        font-size: 1.5rem;
    }

    .checkout-content {
        grid-template-columns: 1fr;
    }

    .produto-card {
        grid-template-columns: 80px 1fr;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .produto-details h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .price-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .total-value {
        font-size: 1.25rem;
    }

    .checkout-actions {
        justify-content: center;
    }

    .checkout-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 0.6s;
}

.animate__fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}