/* ============================================
   LOJA UPGRADE - E-COMMERCE PREMIUM
   Override sobre loja.css base
   ============================================ */

/* === VARIÁVEIS ATUALIZADAS === */
:root {
    --primary: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --primary-glow: rgba(5, 150, 105, 0.15);
    --primary-gradient: linear-gradient(135deg, #059669 0%, #047857 100%);
    --accent: #0ea5e9;
    --accent-dark: #0284c7;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 40px -8px rgba(0,0,0,0.1), 0 8px 16px -4px rgba(0,0,0,0.06);
    --card-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 0 1px rgba(0,0,0,0.08);
    --card-hover-shadow: 0 12px 28px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.05);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === TOP BAR UPGRADE === */
.top-bar {
    background: linear-gradient(90deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    padding: 9px 0;
    font-size: 12.5px;
    letter-spacing: 0.01em;
}

.top-bar-content i {
    color: #6ee7b7;
    font-size: 14px;
}

.top-bar-content i.fa-pix {
    color: #5eead4;
}

.top-bar-content strong {
    color: #6ee7b7;
}

/* === HEADER UPGRADE === */
.header {
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.logo img {
    filter: brightness(0);
    transition: opacity var(--transition);
}

.logo img:hover {
    opacity: 0.8;
}

.search-box {
    background: var(--gray-50);
    border-radius: 24px;
    border: 2px solid var(--gray-200);
    transition: all var(--transition);
}

.search-box:focus-within {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.search-box input::placeholder {
    color: var(--gray-400);
    font-size: 13.5px;
}

.search-box button {
    background: var(--primary);
    border-radius: 0 22px 22px 0;
    padding: 9px 14px;
    transition: background var(--transition);
}

.search-box button:hover {
    background: var(--primary-dark);
}

.btn-cliente,
.btn-cart {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    transition: all var(--transition);
}

.btn-cliente:hover,
.btn-cart:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.cart-badge {
    background: #ef4444;
    font-size: 10px;
    min-width: 19px;
    height: 19px;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.btn-whatsapp {
    background: #25d366;
    border-radius: 22px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
    transition: all var(--transition);
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

/* === CATEGORIAS UPGRADE === */
.categories {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 12px 0;
}

.cat-item {
    padding: 8px 16px;
    background: var(--white);
    color: var(--gray-600);
    border: 1.5px solid var(--gray-200);
    border-radius: 22px;
    font-size: 12.5px;
    font-weight: 600;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.cat-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(5, 150, 105, 0.04);
}

.cat-item.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

/* === BANNER/HERO UPGRADE === */
.banner-carousel {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #0f4c3a 100%);
}

.banner-slide:not(.has-image) {
    padding: 48px 20px;
    min-height: 220px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #064e3b 100%);
    position: relative;
    overflow: hidden;
}

.banner-slide:not(.has-image)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(5, 150, 105, 0.15) 0%, transparent 70%),
                radial-gradient(ellipse at 70% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.banner-slide h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.banner-slide p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
    font-weight: 400;
}

.btn-primary {
    background: var(--primary);
    padding: 13px 28px;
    border-radius: 26px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
    transition: all var(--transition);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.banner-nav {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all var(--transition);
}

.banner-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.banner-indicator {
    width: 8px;
    height: 8px;
    transition: all var(--transition);
}

.banner-indicator.active {
    width: 24px;
    border-radius: 4px;
    background: var(--white);
    transform: none;
}

/* === SECTION HEADERS UPGRADE === */
.section {
    padding: 40px 0;
}

.section-header {
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--gray-900);
}

.section-header h2 i {
    color: var(--primary);
    font-size: 0.85em;
}

.section-header select {
    padding: 8px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--white);
    transition: all var(--transition);
}

.section-header select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

/* === PRODUCT CARDS UPGRADE === */
.products-grid {
    gap: 14px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
    position: relative;
}

.product-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-4px);
    border-color: rgba(0,0,0,0.06);
}

.product-image {
    aspect-ratio: 1;
    background: linear-gradient(180deg, #fafafa 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(239, 68, 68, 0.3);
}

.product-info {
    padding: 12px;
}

.product-category {
    font-size: 10px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 5px 0 6px;
    line-height: 1.35;
    height: 35px;
}

.product-price {
    margin-bottom: 4px;
}

.product-price .main-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.product-price .installment {
    font-size: 10.5px;
    color: var(--gray-500);
}

/* PIX Price Badge no Card */
.product-pix {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    color: #0d9488;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 4px 8px;
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    border-radius: 6px;
    width: fit-content;
}

.product-pix i {
    font-size: 12px;
    color: #14b8a6;
}

.product-pix .pix-label {
    font-size: 9px;
    font-weight: 600;
    color: #5eead4;
    background: #0d9488;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Add to Cart Button */
.product-button {
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all var(--transition);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.product-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.product-button:active::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.product-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* Added to Cart Animation */
.product-button.added {
    background: #059669;
    pointer-events: none;
}

.product-button.added i {
    animation: cartBounce 0.4s ease;
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.4) rotate(-10deg); }
    100% { transform: scale(1); }
}

/* === COMBOS UPGRADE === */
.combo-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
}

.combo-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-4px);
}

.combo-header {
    background: linear-gradient(135deg, var(--primary), #047857);
}

/* === FRETE CALCULATOR UPGRADE === */
.frete-calculator {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid rgba(5, 150, 105, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
}

.frete-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.frete-form button {
    background: var(--primary);
    border-radius: 8px;
    font-weight: 700;
    transition: all var(--transition);
}

.frete-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

/* === FEATURES/TRUST UPGRADE === */
.section-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(5, 150, 105, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.features-grid {
    gap: 12px;
    position: relative;
    z-index: 1;
}

.feature-item {
    padding: 24px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all var(--transition);
}

.feature-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.12);
}

.feature-item i {
    font-size: 28px;
    color: #6ee7b7;
    margin-bottom: 12px;
    display: block;
}

.feature-item h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 11.5px;
    color: rgba(255,255,255,0.5);
}

/* === FOOTER UPGRADE === */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    padding: 40px 0 0;
}

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
    font-size: 12px;
    color: var(--gray-500);
}

/* Footer mobile upgrade */
@media (max-width: 600px) {
    .footer-info-item {
        background: rgba(255,255,255,0.03);
        border-radius: 0;
        transition: all var(--transition);
    }

    .footer-info-item:active {
        background: rgba(5, 150, 105, 0.15);
    }

    .footer-info-item i {
        color: #6ee7b7;
    }
}

/* === MODAL PRODUTO UPGRADE === */
.modal-overlay {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-produto-img {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--gray-100);
}

.modal-preco-box {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 1px solid rgba(5, 150, 105, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.modal-preco {
    font-size: 28px;
    font-weight: 800;
    color: #047857;
    letter-spacing: -0.02em;
}

.btn-modal-add {
    background: var(--primary);
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all var(--transition);
}

.btn-modal-add:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.3);
}

.btn-modal-buy {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 12px;
    font-weight: 700;
    transition: all var(--transition);
}

.btn-modal-buy:hover {
    background: linear-gradient(135deg, #334155, #475569);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 41, 59, 0.3);
}

.modal-close {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--white);
    transform: scale(1.1) rotate(90deg);
}

/* === CARRINHO SIDEBAR UPGRADE === */
.cart-header {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.btn-checkout.btn-whatsapp {
    background: #25d366;
    border-radius: 10px;
    font-weight: 700;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.btn-checkout.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-checkout.btn-site {
    background: var(--primary);
    border-radius: 10px;
    font-weight: 700;
    transition: all var(--transition);
}

.btn-checkout.btn-site:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.cart-cupom-box {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1.5px dashed #f59e0b;
    border-radius: 10px;
}

/* === POPUP LEAD UPGRADE === */
.popup-box {
    border-radius: 20px;
    box-shadow: 0 25px 60px -12px rgba(0,0,0,0.3);
}

.popup-header {
    background: linear-gradient(135deg, #059669 0%, #047857 60%, #064e3b 100%);
    padding: 36px 24px 28px;
    position: relative;
    overflow: hidden;
}

.popup-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.popup-header h2 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
}

.popup-header p {
    position: relative;
}

.btn-submit {
    background: var(--primary);
    border-radius: 10px;
    font-weight: 700;
    padding: 14px 24px;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

/* === TOAST UPGRADE === */
.toast {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.toast i {
    color: #6ee7b7;
}

/* === WHATSAPP FLOAT UPGRADE === */
.whatsapp-float {
    width: 56px;
    height: 56px;
    background: #25d366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* Pulse animation for WhatsApp */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #25d366;
    opacity: 0;
    z-index: -1;
    animation: wppPulse 2s ease-in-out infinite;
}

@keyframes wppPulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.15); opacity: 0.15; }
}

/* === BACK TO TOP UPGRADE === */
.btn-back-to-top {
    background: var(--gray-800);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all var(--transition);
}

.btn-back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.3);
}

/* === SEARCH RESULTS UPGRADE === */
.search-results {
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    border: 1px solid var(--gray-100);
}

.search-item {
    transition: all var(--transition);
}

.search-item:hover {
    background: var(--gray-50);
    padding-left: 16px;
}

.search-item img {
    border-radius: 8px;
}

/* === SKELETON UPGRADE === */
.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
}

/* === RESPONSIVE UPGRADES === */
@media (min-width: 640px) {
    .products-grid {
        gap: 16px;
    }

    .banner-slide:not(.has-image) {
        padding: 56px 24px;
        min-height: 260px;
    }

    .banner-slide h1 {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 56px 0;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .products-grid {
        gap: 20px;
    }

    .product-info {
        padding: 14px;
    }

    .product-name {
        font-size: 14px;
        height: 38px;
    }

    .product-price .main-price {
        font-size: 19px;
    }

    .banner-slide:not(.has-image) {
        padding: 72px 32px;
        min-height: 320px;
    }

    .banner-slide h1 {
        font-size: 40px;
    }

    .banner-slide p {
        font-size: 17px;
    }

    .features-grid {
        gap: 16px;
    }

    .feature-item {
        padding: 28px 20px;
    }

    .feature-item i {
        font-size: 32px;
    }

    .feature-item h4 {
        font-size: 15px;
    }

    .feature-item p {
        font-size: 12.5px;
    }
}

@media (min-width: 1280px) {
    .banner-slide h1 {
        font-size: 46px;
    }

    .products-grid {
        gap: 22px;
    }
}

/* === FORM INPUTS UPGRADE === */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* === LOADING UPGRADE === */
.spinner {
    border: 3px solid var(--gray-100);
    border-top-color: var(--primary);
}

/* === EMPTY STATE UPGRADE === */
.empty-state i {
    color: var(--gray-200);
    font-size: 48px;
}

.empty-state p {
    font-size: 14px;
    color: var(--gray-400);
}

/* === SCROLLBAR CUSTOM (desktop) === */
@media (min-width: 1024px) {
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: var(--gray-50);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--gray-300);
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gray-400);
    }
}

/* === SELECTION COLOR === */
::selection {
    background: rgba(5, 150, 105, 0.15);
    color: var(--gray-900);
}

/* === COMBO TAG BADGE === */
.combo-tag-badge {
    position: absolute;
    top: -1px;
    right: 10px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
    padding: 3px 10px 5px;
    border-radius: 0 0 8px 8px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
    z-index: 2;
}

.combo-header {
    position: relative;
}

/* === MOBILE RESPONSIVENESS IMPROVEMENTS === */

/* Melhorias gerais mobile */
@media (max-width: 600px) {
    /* Header compacto */
    .header .container {
        gap: 8px;
        padding: 0 10px;
    }

    .logo img {
        max-height: 32px;
    }

    .search-box {
        border-radius: 20px;
    }

    .search-box input {
        padding: 8px 12px;
        font-size: 13px;
    }

    .search-box button {
        padding: 8px 12px;
    }

    /* Botões header menores */
    .btn-cliente,
    .btn-cart {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .header-actions {
        gap: 6px;
    }

    /* Categorias scroll suave */
    .categories {
        padding: 8px 0;
    }

    .cat-item {
        padding: 6px 12px;
        font-size: 11.5px;
        white-space: nowrap;
    }

    /* Banner mobile */
    .banner-slide:not(.has-image) {
        padding: 32px 16px;
        min-height: 180px;
    }

    .banner-slide h1 {
        font-size: 22px;
        line-height: 1.2;
    }

    .banner-slide p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .btn-primary {
        padding: 11px 22px;
        font-size: 13px;
    }

    /* Products grid mobile - melhor espaçamento */
    .products-grid {
        gap: 8px;
    }

    .product-info {
        padding: 8px 10px 10px;
    }

    .product-name {
        font-size: 12px;
        height: 32px;
        line-height: 1.3;
        margin: 3px 0 4px;
    }

    .product-category {
        font-size: 9px;
    }

    .product-price .main-price {
        font-size: 15px;
    }

    .product-price .installment {
        font-size: 9.5px;
    }

    .product-pix {
        font-size: 10.5px;
        padding: 3px 6px;
        margin-bottom: 6px;
    }

    .product-pix i {
        font-size: 10px;
    }

    .product-pix .pix-label {
        font-size: 8px;
        padding: 1px 4px;
    }

    .product-button {
        padding: 8px;
        font-size: 11px;
        border-radius: 6px;
    }

    .product-image img {
        padding: 8px;
    }

    /* Section spacing */
    .section {
        padding: 28px 0;
    }

    .section-header {
        margin-bottom: 16px;
    }

    .section-header h2 {
        font-size: 17px;
    }

    .section-header select {
        padding: 6px 10px;
        font-size: 12px;
    }

    /* Combos mobile */
    .combo-card {
        flex: 0 0 230px;
    }

    .combo-header {
        padding: 10px 12px;
    }

    .combo-header h3 {
        font-size: 12.5px;
    }

    .combo-badge {
        font-size: 10px;
        padding: 2px 6px;
    }

    .combo-tag-badge {
        font-size: 8px;
        padding: 2px 8px 4px;
    }

    .combo-products {
        padding: 12px 10px;
    }

    .combo-product img {
        width: 42px;
        height: 42px;
    }

    .combo-product span {
        font-size: 8px;
        max-width: 50px;
    }

    .combo-footer {
        padding: 10px 12px;
    }

    .combo-prices .old-price {
        font-size: 11px;
    }

    .combo-prices .new-price {
        font-size: 15px;
    }

    .combo-buy {
        padding: 6px 10px;
        font-size: 11px;
    }

    /* Frete calculator */
    .frete-calculator {
        padding: 20px 16px;
        flex-direction: column;
        text-align: center;
    }

    .frete-icon {
        width: 48px;
        height: 48px;
    }

    .frete-icon i {
        font-size: 20px;
    }

    /* Features - 2 colunas em mobile */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .feature-item {
        padding: 16px 12px;
        text-align: center;
    }

    .feature-item i {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .feature-item h4 {
        font-size: 12px;
    }

    .feature-item p {
        font-size: 10px;
    }

    /* Modal produto mobile */
    .modal-produto {
        border-radius: 16px 16px 0 0;
        max-height: 92vh;
    }

    .modal-produto-inner {
        flex-direction: column;
    }

    .modal-produto-img {
        max-height: 250px;
    }

    .modal-preco-box {
        padding: 12px;
        border-radius: 10px;
    }

    .modal-preco {
        font-size: 24px;
    }

    .modal-acoes {
        gap: 8px;
    }

    .btn-modal-add,
    .btn-modal-buy {
        padding: 12px;
        font-size: 13px;
        border-radius: 10px;
    }

    /* Footer mobile */
    .footer {
        padding: 28px 0 0;
    }

    .footer-bottom {
        padding: 14px 0;
        font-size: 11px;
    }

    /* Cart sidebar full width mobile */
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .cart-totals {
        font-size: 13px;
    }

    .btn-checkout {
        padding: 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    /* Popup lead mobile */
    .popup-box {
        margin: 10px;
        border-radius: 16px;
    }

    .popup-header {
        padding: 24px 20px 20px;
    }

    .popup-header h2 {
        font-size: 20px;
    }

    /* Toast mobile */
    .toast {
        bottom: 80px;
        left: 16px;
        right: 16px;
        font-size: 13px;
    }

    /* WhatsApp float - não sobrepor conteúdo */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }

    /* Back to top */
    .btn-back-to-top {
        bottom: 16px;
        left: 16px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Extra small - telas bem pequenas (< 360px) */
@media (max-width: 360px) {
    .header .container {
        gap: 6px;
        padding: 0 8px;
    }

    .logo img {
        max-height: 28px;
    }

    .search-box input {
        padding: 7px 10px;
        font-size: 12px;
    }

    .btn-cliente,
    .btn-cart {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .products-grid {
        gap: 6px;
    }

    .product-info {
        padding: 6px 8px 8px;
    }

    .product-name {
        font-size: 11px;
        height: 28px;
    }

    .product-price .main-price {
        font-size: 14px;
    }

    .product-button {
        padding: 7px;
        font-size: 10px;
    }

    .banner-slide h1 {
        font-size: 19px;
    }

    .combo-card {
        flex: 0 0 200px;
    }

    .section-header h2 {
        font-size: 15px;
    }

    .features-grid {
        gap: 6px;
    }

    .feature-item {
        padding: 14px 10px;
    }

    .feature-item i {
        font-size: 20px;
    }

    .feature-item h4 {
        font-size: 11px;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .banner-slide:not(.has-image) {
        padding: 20px 16px;
        min-height: 140px;
    }

    .banner-slide h1 {
        font-size: 20px;
    }

    .modal-produto {
        max-height: 95vh;
    }
}

/* Tablet portrait improvements */
@media (min-width: 601px) and (max-width: 1023px) {
    .combo-card {
        flex: 0 0 280px;
    }

    .combo-product img {
        width: 56px;
        height: 56px;
    }

    .modal-produto {
        max-width: 600px;
        border-radius: 16px;
    }
}

/* Smooth touch scrolling for all horizontal scrollable areas */
.combos-container,
.categories-list {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Prevent tap highlight on mobile */
@media (hover: none) {
    .product-card:hover {
        transform: none;
        box-shadow: var(--card-shadow);
    }

    .product-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .combo-card:hover {
        transform: none;
    }

    .combo-card:active {
        transform: scale(0.98);
    }

    .product-button:hover {
        transform: none;
        box-shadow: none;
    }

    .product-button:active {
        background: var(--primary-dark);
        transform: scale(0.97);
    }
}
