* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    min-height: 100vh;
    color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Principal */
.store-header-main {
    background: rgba(26, 26, 26, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Top Bar */
.header-top-bar {
    background: rgba(15, 15, 15, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.contact-info {
    display: flex;
    gap: 20px;
    color: #b0b0b0;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Instagram - Gradiente oficial */
.social-links a#headerInstagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a#headerInstagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: brightness(1.1);
}

/* Facebook - Azul oficial */
.social-links a#headerFacebook {
    background: #1877f2;
}

.social-links a#headerFacebook:hover {
    background: #0d65d9;
}

/* WhatsApp - Verde oficial */
.social-links a#headerWhatsApp {
    background: #25d366;
}

.social-links a#headerWhatsApp:hover {
    background: #20ba5a;
}

/* Main Header Bar */
.header-main-bar {
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    margin-left: 0;
}

.logo-section h1 {
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 4px;
    text-align: left;
}

.tagline {
    font-size: 13px;
    color: #3498db;
    font-weight: 500;
    text-align: left;
}

.btn-filter {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
}

.btn-filter:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-filter .filter-icon {
    font-size: 24px;
    line-height: 1;
}

.btn-cart {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    position: relative;
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.cart-badge {
    background: #e74c3c;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

/* Botão de Troca de Tema (no Footer) */
.btn-theme-toggle-footer {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    position: relative;
    flex-shrink: 0;
}

.btn-theme-toggle-footer:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-theme-toggle-footer:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Container do botão de tema no footer */
.footer-theme-toggle {
    margin: 5px 0 10px 0;
}

.btn-theme-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-theme-toggle:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(41, 128, 185, 0.1) 100%);
    border-bottom: 1px solid rgba(52, 152, 219, 0.3);
    padding: 30px 0;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    display: block;
    width: 100%;
    text-align: center;
}

.hero-content p {
    font-size: 16px;
    color: #b0b0b0;
    display: block;
    width: 100%;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
    background: rgba(20, 20, 20, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #5dade2;
}

.breadcrumb span {
    color: #666;
}

.breadcrumb .active {
    color: #ffffff;
    font-weight: 600;
}

/* Page Header */
.page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(52, 152, 219, 0.3);
}

.page-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.page-header p {
    font-size: 15px;
    color: #b0b0b0;
}

/* Botão Secundário */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Caixas de Informação */
.payment-info-box,
.phone-info-box {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.05) 100%);
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-info-box .info-icon,
.phone-info-box .info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.payment-info-box .info-text strong,
.phone-info-box .info-text strong {
    display: block;
    color: #3498db;
    font-size: 16px;
    margin-bottom: 5px;
}

.payment-info-box .info-text p,
.phone-info-box .info-text p {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.success-message {
    display: block;
    color: #27ae60;
    font-size: 12px;
    margin-top: 5px;
}

/* Main Content */
.store-main {
    padding: 40px 0;
    min-height: 60vh;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    font-size: 48px;
    margin-bottom: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-state p {
    color: #b0b0b0;
    font-size: 16px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h2 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
}

.empty-state p {
    color: #b0b0b0;
    font-size: 16px;
}

/* Section Titles */
.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 40px 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(52, 152, 219, 0.3);
}

.section-title:first-child {
    margin-top: 20px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

/* Grid de Destaques - mais espaçado e destacado */
.products-grid-destaque {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

/* Carousel Destaques */
.carousel-section {
    margin-bottom: 40px;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.carousel-controls {
    display: flex;
    gap: 12px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(10, 10, 10, 0.85);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    background: rgba(52, 152, 219, 0.25);
    border-color: rgba(52, 152, 219, 0.6);
    box-shadow: 0 6px 18px rgba(52, 152, 219, 0.35);
}

.carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    margin-bottom: -12px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    align-items: stretch;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track .product-card,
.carousel-track .product-card.product-card-destaque {
    flex: 0 0 auto;
    width: 160px !important;
    min-width: 160px;
    max-width: 160px;
    scroll-snap-align: start;
    box-sizing: border-box;
}

.carousel-track .product-card .product-image {
    width: 100% !important;
    max-width: 100%;
    height: 120px !important; /* Manter altura original para destaques */
    object-fit: contain !important;
    object-position: center !important;
    padding: 8px !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
}

.carousel-track .product-card .product-info,
.carousel-track .product-card .product-actions {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
}

.carousel-track .product-card.product-card-destaque {
    border-width: 2px;
}

@media (max-width: 768px) {
    .carousel-track .product-card,
    .carousel-track .product-card.product-card-destaque {
        width: 150px !important;
        min-width: 150px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .carousel-track .product-card,
    .carousel-track .product-card.product-card-destaque {
        width: 140px !important;
        min-width: 140px;
        max-width: 140px;
    }
}

.product-card {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(52, 152, 219, 0.5);
}

/* Card de Produto em Destaque */
.product-card-destaque {
    border: 2px solid rgba(241, 196, 15, 0.5);
    background: rgba(241, 196, 15, 0.05);
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.2);
}

.product-card-destaque:hover {
    border-color: rgba(241, 196, 15, 0.8);
    box-shadow: 0 6px 20px rgba(241, 196, 15, 0.4);
    transform: translateY(-3px);
}

/* Seção de Categoria */
.categoria-section {
    margin-bottom: 50px;
}

.categoria-section:last-child {
    margin-bottom: 20px;
}

/* Formulário de Consulta de Pedidos */
.pedidos-consulta-form {
    margin-bottom: 20px;
}

.pedidos-consulta-form .form-group {
    margin-bottom: 0;
}

.pedidos-consulta-form label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pedidos-consulta-form input {
    width: 100%;
    padding: 12px;
    background: #2a2a2a;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
}

.pedidos-consulta-form input:focus {
    outline: none;
    border-color: #3498db;
}

/* Cards de Pedido */
.pedido-card {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.pedido-card:hover {
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pedido-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pedido-info h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.pedido-data {
    color: #b0b0b0;
    font-size: 13px;
    margin: 0;
}

.pedido-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.status-pendente {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.4);
}

.status-producao {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.4);
}

.status-entrega {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
    border: 1px solid rgba(155, 89, 182, 0.4);
}

.status-entregue {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.4);
}

.status-rejeitado {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.4);
}

.status-desconhecido {
    background: rgba(149, 165, 166, 0.2);
    color: #95a5a6;
    border: 1px solid rgba(149, 165, 166, 0.4);
}

.pedido-body {
    margin-top: 10px;
}

.pedido-itens,
.pedido-total {
    color: #b0b0b0;
    font-size: 14px;
    margin: 8px 0;
    line-height: 1.5;
}

.pedido-itens {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pedido-itens > strong {
    color: #ffffff;
}

.pedido-itens-empty {
    margin-top: 4px;
    color: #b0b0b0;
    font-size: 13px;
}

.pedido-total {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pedido-total strong {
    color: #3498db;
}

/* Barra de Progresso do Pedido */
.pedido-progresso-container {
    margin: 20px 0;
    padding: 20px 0;
}

.progresso-etapas {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.progresso-etapa {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.progresso-icone {
    font-size: 32px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.4);
}

.progresso-label {
    font-size: 11px;
    color: #888;
    font-weight: 500;
    max-width: 80px;
    line-height: 1.3;
}

.progresso-etapa.completa .progresso-icone {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.progresso-etapa.completa .progresso-label {
    color: #27ae60;
    font-weight: 600;
}

.progresso-etapa.atual .progresso-icone {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.2);
    animation: pulse 2s infinite;
}

.progresso-etapa.atual .progresso-label {
    color: #3498db;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.3);
    }
}

.progresso-barra-container {
    margin-top: 10px;
    padding: 0 10px;
}

.progresso-barra-fundo {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progresso-barra-preenchimento {
    height: 100%;
    background: linear-gradient(90deg, #27ae60 0%, #3498db 50%, #9b59b6 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.progresso-barra-preenchimento::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsividade para barra de progresso */
@media (max-width: 768px) {
    .pedido-progresso-container {
        margin: 15px 0;
        padding: 15px 0;
    }
    
    .progresso-etapas {
        flex-wrap: nowrap;
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .progresso-etapa {
        flex: 1;
        min-width: 0;
    }
    
    .progresso-icone {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .progresso-label {
        font-size: 8px;
        max-width: 100%;
        line-height: 1.2;
        word-break: break-word;
    }
    
    .progresso-etapa.completa .progresso-icone {
        transform: scale(1.05);
    }
    
    .progresso-etapa.atual .progresso-icone {
        transform: scale(1.1);
    }
    
    .progresso-barra-container {
        margin-top: 8px;
        padding: 0 5px;
    }
    
    .progresso-barra-fundo {
        height: 6px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .progresso-icone {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .progresso-label {
        font-size: 7px;
        line-height: 1.1;
    }
    
    .progresso-etapas {
        gap: 3px;
    }
}

/* Botão Consultar Pedidos no Footer */
.btn-consultar-pedidos {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(52, 152, 219, 0.2);
    border: 2px solid rgba(52, 152, 219, 0.5);
    color: #3498db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-consultar-pedidos:hover {
    background: rgba(52, 152, 219, 0.3);
    border-color: rgba(52, 152, 219, 0.8);
    color: #5dade2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* ========== SEÇÃO CONSULTAR PEDIDOS ========== */
.consultar-pedidos-section {
    background: rgba(20, 20, 20, 0.8);
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
}

.btn-consultar-pedidos-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-consultar-pedidos-large:hover {
    background: linear-gradient(135deg, #2980b9 0%, #21618c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* ========== FOOTER ========== */
.store-footer {
    background: #010101;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0 20px 0;
    margin-top: 60px;
}

/* Footer após seção de consultar pedidos */
.consultar-pedidos-section + .store-footer {
    margin-top: 0;
}

/* Footer Contact Mobile - Escondido por padrão (desktop) */
.footer-contact-mobile {
    display: none;
}

.footer-whatsapp {
    text-align: center;
    margin-bottom: 10px;
    padding-top: 10px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #20b358;
    transform: translateY(-1px);
}

.whatsapp-icon {
    font-size: 18px;
}

.whatsapp-text {
    font-size: 14px;
}

/* Estilos do footer removidos - footer simplificado */

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #888;
}

.footer-bottom p {
    margin-bottom: 8px;
    font-size: 14px;
}

.powered-by {
    font-size: 12px;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.powered-by p {
    margin: 0;
}

.footer-logo-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

/* Responsividade - Consultar Pedidos e Footer */
@media (max-width: 768px) {
    .consultar-pedidos-section {
        padding: 30px 0;
        margin-top: 40px;
    }
    
    .btn-consultar-pedidos-large {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .store-footer {
        padding: 30px 0 15px 0;
        margin-top: 40px;
    }
    
    .consultar-pedidos-section + .store-footer {
        margin-top: 0;
    }
    
    /* Mostrar footer contact mobile */
    .footer-contact-mobile {
        display: block;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .footer-info-item {
        margin-bottom: 8px;
        color: #b0b0b0;
        font-size: 13px;
    }
    
    .footer-social-mobile {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-social-mobile a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .footer-social-mobile a:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    
    /* Instagram - Gradiente oficial */
    .footer-social-mobile a#footerInstagram {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }
    
    .footer-social-mobile a#footerInstagram:hover {
        filter: brightness(1.1);
    }
    
    /* Facebook - Azul oficial */
    .footer-social-mobile a#footerFacebook {
        background: #1877f2;
    }
    
    .footer-social-mobile a#footerFacebook:hover {
        background: #0d65d9;
    }
    
    /* WhatsApp - Verde oficial */
    .footer-social-mobile a#footerWhatsAppMobile {
        background: #25d366;
    }
    
    .footer-social-mobile a#footerWhatsAppMobile:hover {
        background: #20ba5a;
    }
    
    /* Esconder footer whatsapp desktop */
    .footer-whatsapp {
        display: none;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .powered-by {
        font-size: 11px;
    }

    .footer-logo {
        height: 70px;
        max-width: 360px;
    }
}

.product-image {
    width: 100%;
    height: 120px;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    margin-bottom: 0;
    background: #ffffff;
    padding: 8px;
    box-sizing: border-box;
}

/* Imagens maiores apenas nas seções de categorias (não no carrossel) */
.products-grid .product-card .product-image {
    height: 200px;
    padding: 12px;
    background: #ffffff;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
    min-height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-description {
    font-size: 11px;
    color: #888;
    margin-bottom: 8px;
    flex: 1;
    min-height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.product-actions {
    display: flex;
    gap: 8px;
    padding: 0 10px 10px 10px;
    margin-top: 0;
}

.btn-add-cart-small {
    flex: 1;
    background: #3498db;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart-small:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.btn-add-cart-small:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.modal-product {
    max-width: 700px;
}

.modal-pedidos {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    color: #ffffff;
    font-size: 22px;
    margin: 0;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: #b0b0b0;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.modal-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 25px 30px;
}

.product-modal-body {
    padding: 30px;
}

.product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-modal-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
}

.product-modal-image img {
    width: 100%;
    max-width: 100%;
    height: 260px;
    max-height: 260px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.product-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
    color: #888;
    gap: 15px;
}

.product-image-placeholder .placeholder-icon {
    font-size: 64px;
    opacity: 0.5;
}

.product-image-placeholder .placeholder-text {
    font-size: 16px;
    color: #999;
    font-weight: 500;
}

.product-modal-info h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.product-code {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 15px;
}

.product-description {
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Descrição dentro do modal - com mais espaço */
.product-modal-info .product-description {
    min-height: 120px;
    max-height: 200px;
    overflow-y: auto;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.product-modal-info .product-description::-webkit-scrollbar {
    width: 6px;
}

.product-modal-info .product-description::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.product-modal-info .product-description::-webkit-scrollbar-thumb {
    background: rgba(52, 152, 219, 0.5);
    border-radius: 3px;
}

.product-modal-info .product-description::-webkit-scrollbar-thumb:hover {
    background: rgba(52, 152, 219, 0.7);
}

.product-price-section {
    margin-bottom: 20px;
    padding: 10px 15px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.product-price-label {
    display: block;
    color: #b0b0b0;
    font-size: 13px;
    margin-bottom: 3px;
}

.product-price {
    font-size: 26px;
    font-weight: 700;
    color: #3498db;
}

.product-grades,
.combo-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
}

.grade-group {
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px;
}

.grade-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.grade-group-header h4,
.grade-group-header h5 {
    color: #ffffff;
    font-size: 15px;
    margin: 0;
}

.grade-group-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.grade-badge {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(52, 152, 219, 0.15);
    color: #5dade2;
}

.grade-badge.badge-required {
    background: rgba(231, 76, 60, 0.18);
    color: #e74c3c;
}

.grade-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.grade-option-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    color: #e0e0e0;
}

.grade-option-label input {
    display: none;
}

.grade-option-label span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.grade-option-label small {
    font-size: 11px;
    color: #9fb0c0;
}

.grade-option-label:hover {
    border-color: rgba(52, 152, 219, 0.4);
    background: rgba(52, 152, 219, 0.15);
}

/* Estado selecionado - destaque forte */
.grade-option-label:has(input:checked) {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.25) 0%, rgba(41, 128, 185, 0.3) 100%);
    border-color: rgba(52, 152, 219, 0.8);
    border-width: 2px;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3), inset 0 1px 2px rgba(52, 152, 219, 0.2);
}

.grade-option-label input:checked + span {
    color: #ffffff;
    font-weight: 600;
}

/* Adicionar ícone de check antes do texto quando selecionado */
.grade-option-label input:checked + span::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin-right: 4px;
    flex-shrink: 0;
}

.grade-option-label input:checked + span small {
    color: #ffffff;
}

.combo-item-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.combo-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.combo-item-header h4 {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
}

.combo-item-code {
    font-size: 12px;
    color: #9fb0c0;
}

.combo-item-info {
    font-size: 13px;
    color: #b0b0b0;
    margin: 0;
}

.combo-item-warning {
    font-size: 13px;
    color: #f39c12;
    margin: 0;
}

.cart-item-variacoes,
.checkout-item-variacoes,
.pedido-item-variacoes {
    margin: 8px 0 0 0;
    padding-left: 18px;
    list-style: disc;
    color: #d0d0d0;
    font-size: 13px;
}

.cart-item-variacoes li,
.checkout-item-variacoes li,
.pedido-item-variacoes li {
    margin-bottom: 4px;
}

.cart-combo-detalhes,
.checkout-combo-detalhes,
.pedido-item-combo-detalhes {
    margin-top: 10px;
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-combo-item,
.checkout-combo-item,
.pedido-item-combo {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-combo-item-header,
.checkout-combo-item-header,
.pedido-item-combo-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
}

.combo-item-chip,
.checkout-combo-chip,
.pedido-combo-chip {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(52, 152, 219, 0.2);
    color: #5dade2;
    font-size: 11px;
    font-weight: 600;
}

.product-quantity-section {
    margin-bottom: 25px;
}

.product-quantity-section label {
    display: block;
    color: #e0e0e0;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-quantity {
    background: rgba(52, 152, 219, 0.2);
    border: 2px solid #3498db;
    color: #3498db;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-quantity:hover {
    background: rgba(52, 152, 219, 0.3);
}

#productQuantity {
    width: 80px;
    padding: 10px;
    border: 2px solid #404040;
    border-radius: 8px;
    background: #2a2a2a;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
}

.btn-add-cart {
    width: 100%;
    background: #3498db;
    border: none;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-add-cart:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    background: #555;
    transform: none;
}

/* Carrinho */
.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.cart-item {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 100px 2fr 1fr;
    gap: 20px;
    align-items: start;
    position: relative;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: #2a2a2a;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: #2a2a2a;
}

.cart-item-info h3 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
}

.cart-item-code {
    font-size: 12px;
    color: #b0b0b0;
    margin-bottom: 8px;
}

.cart-item-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.cart-item-price {
    font-size: 14px;
    color: #3498db;
    font-weight: 600;
    flex: 1;
}

.cart-item-quantity-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.cart-item-quantity {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-quantity label {
    display: block;
    color: #b0b0b0;
    font-size: 12px;
    margin-bottom: 0;
}

.cart-item-subtotal {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.subtotal-label {
    font-size: 12px;
    color: #b0b0b0;
    margin-bottom: 5px;
}

.subtotal-value {
    font-size: 18px;
    font-weight: 700;
    color: #3498db;
}

.cart-item-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.btn-observacao {
    background: rgba(52, 152, 219, 0.2);
    border: 1px solid #3498db;
    color: #3498db;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-observacao:hover {
    background: rgba(52, 152, 219, 0.3);
}

.btn-remove {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid #e74c3c;
    color: #e74c3c;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background: rgba(231, 76, 60, 0.3);
}

.cart-item-observacao-text {
    display: block;
    font-size: 12px;
    color: #3498db;
    margin-top: 8px;
    font-style: italic;
    padding: 6px 10px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 6px;
    border-left: 3px solid #3498db;
}

/* Resumo do Pedido */
.cart-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-box {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
}

.summary-box h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 14px;
}

.summary-row.summary-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.btn-primary {
    background: #3498db;
    border: none;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-finalizar {
    background: #27ae60;
}

.btn-finalizar:hover {
    background: #229954;
}

/* ========== CHECKOUT - FORMULÁRIOS ========== */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin-top: 30px;
    align-items: start;
}

@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

.checkout-form-section {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    grid-column: 1;
    grid-row: 1 / span 2;
}

@media (max-width: 1024px) {
    .checkout-form-section {
        grid-column: 1;
        grid-row: auto;
    }
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(52, 152, 219, 0.8);
    background: rgba(30, 30, 30, 1);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 15px;
}

.form-group.flex-1 {
    flex: 1;
}

.form-group.flex-2 {
    flex: 2;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    display: none;
}

.error-message.show {
    display: block;
}

.success-message {
    color: #27ae60;
    font-size: 12px;
}

/* Info boxes no checkout */
.phone-info-box,
.payment-info-box {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    color: #3498db;
    font-size: 14px;
    margin-bottom: 6px;
}

.info-text p {
    color: #b0b0b0;
    font-size: 13px;
    line-height: 1.5;
}

/* Checkout Summary */
.checkout-summary {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
}

@media (max-width: 1024px) {
    .checkout-summary {
        grid-column: 1;
        grid-row: auto;
    }
}

.summary-box {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
}

.summary-box h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-info h4 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 4px;
}

.checkout-item-info p {
    color: #888888;
    font-size: 12px;
}

.checkout-item-price {
    color: #3498db;
    font-weight: 600;
    font-size: 14px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #e0e0e0;
    font-size: 14px;
}

.summary-row.summary-total {
    border-top: 2px solid rgba(52, 152, 219, 0.3);
    margin-top: 15px;
    padding-top: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.summary-row.summary-total span:last-child {
    color: #3498db;
}

.checkout-finalize-section {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    grid-column: 2;
    grid-row: 2;
}

@media (max-width: 1024px) {
    .checkout-finalize-section {
        grid-column: 1;
        grid-row: auto;
    }
}

.checkout-finalize-section .btn-finalizar {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
}

/* Responsividade para Carrinho - Mobile */
@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-item {
        grid-template-columns: 70px 1fr;
        gap: 12px;
        padding: 15px;
        margin-bottom: 12px;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .cart-item-image .no-image {
        font-size: 24px;
    }
    
    .cart-item-info h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .cart-item-code {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .cart-item-price {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .cart-item-quantity-subtotal {
        grid-column: 1 / -1;
        margin-top: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .cart-item-quantity {
        flex: 1;
        margin: 0;
    }
    
    .cart-item-quantity label {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .cart-item-subtotal {
        text-align: right;
        margin: 0;
        padding: 0;
        border: none;
    }
    
    .subtotal-label {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .subtotal-value {
        font-size: 16px;
    }
    
    .cart-item-price-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .cart-item-actions {
        position: static;
        gap: 6px;
        flex-direction: row;
        width: 100%;
        justify-content: flex-end;
        margin-top: 8px;
    }
    
    .btn-observacao {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .btn-remove {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .cart-item-observacao-text {
        font-size: 11px;
        margin-top: 6px;
        padding: 4px 8px;
    }
    
    .cart-summary {
        position: static;
    }
    
    .summary-box {
        padding: 18px;
    }
    
    .summary-box h3 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .checkout-item {
        padding: 8px 0;
        font-size: 13px;
    }
    
    .summary-row {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .summary-row.summary-total {
        font-size: 16px;
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .checkout-finalize-section .btn-finalizar {
        padding: 14px;
        font-size: 16px;
    }
    
    .btn-primary {
        padding: 12px;
        font-size: 14px;
    }
    
    .breadcrumb-section {
        padding: 10px 0;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
    
    .form-row-3 {
        grid-template-columns: 1fr !important;
    }
    
    .checkout-form-section {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Manter rua e número na mesma linha no mobile */
    .form-row-rua-numero {
        grid-template-columns: 2fr 1fr !important;
        gap: 10px;
    }
    
    /* Manter complemento e bairro na mesma linha no mobile */
    .form-row-complemento-bairro {
        grid-template-columns: 1fr 2fr !important;
        gap: 10px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="tel"],
    .form-group input[type="email"],
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    .phone-info-box,
    .payment-info-box {
        padding: 14px;
        flex-direction: column;
        gap: 10px;
    }
    
    .info-icon {
        font-size: 24px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    /* Modal de Produto Responsivo */
    .modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .modal-product {
        max-width: 100%;
    }
    
    .modal-header {
        padding: 15px 18px;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-close {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    
    .product-modal-body {
        padding: 18px;
    }
    
    .product-modal-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .product-modal-image {
        height: 250px;
        min-height: 250px;
        max-height: 250px;
        padding: 15px;
    }
    
    .product-image-placeholder {
        height: 250px;
        min-height: 250px;
        max-height: 250px;
    }
    
    .product-image-placeholder .placeholder-icon {
        font-size: 48px;
    }
    
    .product-image-placeholder .placeholder-text {
        font-size: 14px;
    }
    
    .product-modal-image img {
        height: 220px;
        max-height: 220px;
        object-fit: contain;
        object-position: center;
    }
    
    .product-modal-info h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .product-code {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .product-modal-info .product-description {
        min-height: 80px;
        max-height: 120px;
        font-size: 13px;
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .product-price-section {
        margin-bottom: 15px;
        padding: 8px 12px;
    }
    
    .product-price-label {
        font-size: 12px;
    }
    
    .product-price {
        font-size: 20px;
    }
    
    .product-quantity-section {
        margin-bottom: 18px;
    }
    
    .product-quantity-section label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .btn-quantity {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    #productQuantity {
        width: 70px;
        padding: 8px;
        font-size: 14px;
    }
    
    .btn-add-cart {
        padding: 12px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .products-grid-destaque {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .section-title {
        font-size: 20px;
        margin: 30px 0 15px 0;
    }
    
    .categoria-section {
        margin-bottom: 40px;
    }
    
    .product-image {
        height: 140px;
        object-fit: contain;
        padding: 6px;
        background: #ffffff;
    }
    
    .products-grid .product-card .product-image {
        height: 150px;
        padding: 8px;
        background: #ffffff;
    }
    
    .carousel-track .product-card .product-image {
        padding: 6px !important;
        background: #ffffff !important;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    /* Header Responsivo */
    .header-top-bar {
        display: none;
    }
    
    .header-main-bar {
        padding: 15px 0;
    }
    
    .logo-section h1 {
        font-size: 20px;
    }
    
    .tagline {
        font-size: 11px;
    }
    
    .btn-filter {
        min-width: 44px;
        height: 44px;
        padding: 10px 12px;
    }
    
    .btn-filter .filter-icon {
        font-size: 20px;
    }
    
    .filter-sidebar-content {
        width: 280px;
    }
    
    .filter-sidebar-header {
        padding: 16px;
    }
    
    .filter-sidebar-header h2 {
        font-size: 18px;
    }
    
    .filter-sidebar-body {
        padding: 16px;
    }
    
    .filter-option {
        padding: 14px;
        font-size: 14px;
    }
    
    .btn-cart {
        padding: 12px 18px;
        font-size: 14px;
        border-radius: 25px;
        gap: 10px;
        min-width: 60px;
        justify-content: center;
    }
    
    .cart-icon {
        font-size: 28px;
        display: inline-block;
        line-height: 1;
    }
    
    .cart-text {
        display: none;
    }
    
    .cart-badge {
        font-size: 13px;
        padding: 4px 8px;
        min-width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -8px;
        right: -8px;
        border: 2px solid rgba(26, 26, 26, 0.95);
    }
    
    /* Hero Banner Responsivo */
    .hero-banner {
        padding: 20px 0;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    /* Page Header Responsivo */
    .page-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .page-header h2 {
        font-size: 22px;
        margin-bottom: 6px;
    }
    
    .page-header p {
        font-size: 13px;
    }
    
    /* Footer Responsivo */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .social-links-footer {
        justify-content: center;
    }
    
    /* Estilos do carrinho já estão definidos acima na seção "Responsividade para Carrinho - Mobile" */
}

/* Badge Pausado */
.badge-pausado {
    background: #f39c12;
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    margin-left: 5px;
}

.store-status-banner {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(20, 20, 20, 0.88);
    padding: 14px 0;
    display: none;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.store-status-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.store-status-banner span {
    font-size: 15px;
    font-weight: 500;
}

.store-status-banner.is-open {
    background: rgba(39, 174, 96, 0.12);
    border-top: 1px solid rgba(39, 174, 96, 0.35);
    border-bottom: 1px solid rgba(39, 174, 96, 0.35);
    color: #2ecc71;
}

.store-status-banner.is-closed {
    background: rgba(231, 76, 60, 0.12);
    border-top: 1px solid rgba(231, 76, 60, 0.4);
    border-bottom: 1px solid rgba(231, 76, 60, 0.4);
    color: #e74c3c;
}

.store-status-banner.is-loading {
    background: rgba(52, 152, 219, 0.12);
    border-top: 1px solid rgba(52, 152, 219, 0.35);
    border-bottom: 1px solid rgba(52, 152, 219, 0.35);
    color: #5dade2;
}

.install-prompt {
    background: rgba(26, 26, 26, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
    display: none;
}

.install-prompt .container {
    display: flex;
    justify-content: center;
}

.install-prompt-content {
    width: 100%;
    max-width: 640px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 24px;
}

.install-text h3 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 6px;
}

.install-text p {
    font-size: 13px;
    color: #b0b0b0;
    margin: 0;
}

.install-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-install {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border: none;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-install:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4);
}

.btn-link {
    background: transparent;
    border: none;
    color: #b0b0b0;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}

.btn-link:hover {
    color: #ffffff;
}

/* Estilos para produtos em oferta */
.product-card-oferta {
    border: 2px solid #FF6B6B;
    position: relative;
}

.product-card-oferta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent #FF6B6B transparent transparent;
    z-index: 1;
}

.product-price-old {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
    font-weight: normal;
}

.product-price-offer {
    font-size: 20px;
    font-weight: bold;
    color: #FF6B6B;
}

.product-badge-oferta {
    display: inline-block;
    background: #FF6B6B;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-top: 4px;
    align-self: flex-start;
}

/* Menu Lateral de Filtros */
.filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    pointer-events: none;
}

.filter-sidebar.active {
    display: block;
    pointer-events: all;
}

.filter-sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-sidebar.active .filter-sidebar-overlay {
    opacity: 1;
}

.filter-sidebar-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.filter-sidebar.active .filter-sidebar-content {
    transform: translateX(0);
}

.filter-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 15, 15, 0.95);
    position: sticky;
    top: 0;
    z-index: 10;
}

.filter-sidebar-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.filter-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.filter-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.filter-sidebar-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.filter-option {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.filter-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(52, 152, 219, 0.5);
    transform: translateX(4px);
}

.filter-option.active {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2) 0%, rgba(41, 128, 185, 0.15) 100%);
    border-color: #3498db;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.filter-option .filter-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.filter-option span:not(.filter-icon) {
    flex: 1;
}

#filterCategoriesList {
    display: flex;
    flex-direction: column;
    gap: 0;
}
