/* ============================================
   LOJA ONLINE - CSS RESPONSIVO MOBILE-FIRST
   ============================================ */

/* === RESET E BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #16a34a;
    --primary-dark: #15803d;
    --primary-light: #22c55e;
    --secondary: #1e293b;
    --secondary-light: #334155;
    --pix: #32bcad;
    --pix-dark: #2aa89a;
    --danger: #dc2626;
    --warning: #f59e0b;
    --success: #16a34a;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius: 8px;
    --radius-lg: 12px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, select {
    font-family: inherit;
    font-size: 16px; /* Previne zoom no iOS */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}

/* ============================================
   POPUP LEAD - CORRIGIDO
   ============================================ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 360px;
    max-height: 90vh;
    max-height: 90dvh;
    overflow: visible;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.popup-overlay.active .popup-box {
    transform: scale(1) translateY(0);
}

.popup-inner {
    max-height: 90vh;
    max-height: 90dvh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    z-index: 10;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.popup-close:hover,
.popup-close:focus {
    background: #f0f0f0;
    transform: scale(1.1);
}

.popup-close:active {
    transform: scale(0.95);
    background: #e5e5e5;
}

.popup-close i {
    pointer-events: none;
    line-height: 1;
    display: block;
}

.popup-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 32px 20px 24px;
    text-align: center;
    color: var(--white);
}

.popup-header img {
    height: 40px;
    margin: 0 auto 12px;
    filter: brightness(0) invert(1);
}

.popup-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.popup-header p {
    font-size: 14px;
    opacity: 0.9;
}

.popup-form {
    padding: 20px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 16px;
    transition: all 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.btn-submit {
    width: 100%;
    padding: 14px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    cursor: pointer;
    border: none;
    margin-top: 4px;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.btn-submit:active {
    transform: scale(0.98);
}

.popup-skip {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    border: none;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
    cursor: pointer;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.popup-skip:hover {
    color: var(--gray-700);
    background: var(--gray-100);
}

.popup-skip:active {
    background: var(--gray-200);
}

/* ============================================
   TOP BAR - MOBILE FIRST
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, var(--secondary) 0%, #1e3a8a 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
    overflow: hidden;
    position: relative;
}

.top-bar-track {
    overflow: hidden;
    width: 100%;
}

.top-bar-content {
    display: flex;
    gap: 40px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.top-bar-content span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.top-bar-content i {
    color: #86efac;
    font-size: 13px;
}

.top-bar-content i.fa-pix {
    color: var(--pix);
}

.top-bar-content strong {
    color: #86efac;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausar animação no hover */
.top-bar:hover .top-bar-content {
    animation-play-state: paused;
}

/* ============================================
   HEADER - MOBILE FIRST
   ============================================ */
.header {
    background: var(--white);
    padding: 10px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 32px;
    width: auto;
    filter: brightness(0);
}

.search-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
}

.search-box {
    display: flex;
    background: var(--gray-100);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.search-box:focus-within {
    background: var(--white);
    border-color: var(--primary);
}

.search-box input {
    flex: 1;
    min-width: 0;
    padding: 8px 12px;
    border: none;
    background: transparent;
    font-size: 16px; /* Evita zoom automático no iOS */
}

.search-box input:focus {
    outline: none;
}

.search-box input::placeholder {
    color: var(--gray-400);
    font-size: 14px;
}

.search-box button {
    padding: 8px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
}

.search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 200;
}

.search-results.show {
    display: block;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: background 0.2s;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover,
.search-item:active {
    background: var(--gray-50);
}

.search-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: var(--gray-100);
    border-radius: 6px;
    padding: 4px;
    flex-shrink: 0;
}

.search-item-info {
    flex: 1;
    min-width: 0;
}

.search-item-info strong {
    display: block;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-item-info span {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
}

.search-empty {
    padding: 20px;
    text-align: center;
    color: var(--gray-500);
    font-size: 13px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-whatsapp {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #25d366;
    color: var(--white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

.btn-cliente {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cliente:hover,
.btn-cliente:active {
    background: var(--primary);
    color: var(--white);
}

.btn-cart {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray-700);
    transition: all 0.2s;
}

.btn-cart:hover,
.btn-cart:active {
    background: var(--primary);
    color: var(--white);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: var(--danger);
    color: var(--white);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.cart-badge.pulse {
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* ============================================
   CATEGORIAS - MOBILE FIRST
   ============================================ */
.categories {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 10px 0;
}

.categories-list {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}

.categories-list::-webkit-scrollbar {
    display: none;
}

.cat-item {
    padding: 7px 14px;
    background: var(--gray-100);
    color: var(--gray-600);
    border-radius: 18px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.cat-item:hover {
    background: var(--gray-200);
}

.cat-item.active {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   BANNER CARROSSEL - RESPONSIVO
   ============================================ */
.banner-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--gray-800) 100%);
}

.banner-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slide com imagem */
.banner-slide.has-image {
    padding: 0;
    aspect-ratio: 16 / 5;
    max-height: 600px;
}

.banner-slide.has-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Slide sem imagem (com texto) */
.banner-slide:not(.has-image) {
    padding: 36px 16px;
    text-align: center;
    color: var(--white);
    min-height: 200px;
}

.banner-slide .banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Navegação */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 16px;
    color: var(--gray-700);
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.banner-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.banner-prev { left: 16px; }
.banner-next { right: 16px; }

/* Indicadores */
.banner-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.banner-indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

.banner-indicator:hover {
    background: rgba(255,255,255,0.8);
}

/* Classe antiga mantida para compatibilidade */
.banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--gray-800) 100%);
    padding: 36px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.banner.with-bg-image {
    padding: 0;
    min-height: auto;
    aspect-ratio: 16 / 5;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Modo banner completo - esconde textos quando a imagem já tem tudo */
.banner.with-bg-image.banner-completo .banner-content {
    display: none;
}

.banner.with-bg-image.banner-completo::before {
    display: none;
}

.banner.with-bg-image:not(.banner-completo)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner.with-bg-image:not(.banner-completo) .container,
.banner.with-bg-image:not(.banner-completo) .banner-content {
    position: relative;
    z-index: 2;
}

.banner.with-bg-image:not(.banner-completo) h1 {
    font-size: 32px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.banner.with-bg-image:not(.banner-completo) p {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.banner h1, .banner-slide h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--white);
}

.banner p, .banner-slide p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS - MOBILE FIRST
   ============================================ */
.section {
    padding: 36px 0;
}

.section-gray {
    background: var(--gray-50);
}

.section-dark {
    background: var(--secondary);
    color: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h2 i {
    color: var(--primary);
}

.section-header p {
    color: var(--gray-500);
    font-size: 13px;
    margin-top: 2px;
}

.section-header select {
    padding: 8px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 13px;
    background: var(--white);
    cursor: pointer;
}

/* ============================================
   COMBOS - MOBILE FIRST
   ============================================ */
.combos-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
}

.combos-container::-webkit-scrollbar {
    display: none;
}

.combo-card {
    flex: 0 0 260px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    scroll-snap-align: start;
}

.combo-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.combo-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.combo-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.combo-badge {
    background: var(--white);
    color: var(--primary-dark);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.combo-products {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.combo-product {
    text-align: center;
}

.combo-product img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: var(--gray-100);
    border-radius: 6px;
    padding: 4px;
    margin-bottom: 4px;
}

.combo-product span {
    display: block;
    font-size: 9px;
    color: var(--gray-600);
    max-width: 60px;
    line-height: 1.2;
}

.combo-plus {
    color: var(--gray-400);
    font-size: 12px;
}

.combo-footer {
    padding: 14px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.combo-prices .old-price {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 12px;
}

.combo-prices .new-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
}

.combo-buy {
    padding: 8px 14px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s;
}

.combo-buy:hover {
    background: var(--primary-dark);
}

/* ============================================
   PRODUTOS - MOBILE FIRST
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--gray-100);
    cursor: pointer;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-tag {
    position: absolute;
    top: 6px;
    left: 6px;
    background: var(--danger);
    color: var(--white);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
}

.product-info {
    padding: 10px;
}

.product-category {
    font-size: 9px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-800);
    margin: 4px 0;
    line-height: 1.3;
    height: 32px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    margin-bottom: 6px;
}

.product-price .main-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

.product-price .installment {
    font-size: 10px;
    color: var(--gray-500);
    display: block;
    margin-top: 1px;
}

.product-pix {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--pix-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-pix i {
    font-size: 12px;
}

.product-button {
    width: 100%;
    padding: 8px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.product-button:hover,
.product-button:active {
    background: var(--primary-dark);
}

/* Loading e Empty */
.loading {
    text-align: center;
    padding: 40px 20px;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading p {
    color: var(--gray-500);
    font-size: 13px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
}

.empty-state i {
    font-size: 40px;
    color: var(--gray-300);
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--gray-500);
    font-size: 13px;
}

/* ============================================
   FRETE CALCULATOR - MOBILE FIRST
   ============================================ */
.frete-calculator {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 24px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.frete-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.frete-icon i {
    font-size: 22px;
    color: var(--white);
}

.frete-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.frete-content > p {
    color: var(--gray-500);
    margin-bottom: 16px;
    font-size: 13px;
}

.frete-form {
    display: flex;
    gap: 10px;
    max-width: 280px;
    margin: 0 auto;
}

.frete-form input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
}

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

.frete-form button {
    padding: 12px 18px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 13px;
    transition: background 0.2s;
    white-space: nowrap;
}

.frete-form button:hover {
    background: var(--primary-dark);
}

#frete-results {
    margin-top: 16px;
    text-align: left;
}

.frete-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.frete-option:last-child {
    margin-bottom: 0;
}

.frete-option:hover,
.frete-option.selected {
    border-color: var(--primary);
}

.frete-option.gratis {
    border-color: var(--success);
    background: rgba(22,163,74,0.05);
}

.frete-option-info strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.frete-option-info span {
    font-size: 11px;
    color: var(--gray-500);
}

.frete-option-price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 14px;
}

.frete-loading {
    padding: 20px;
    text-align: center;
    color: var(--gray-500);
}

/* ============================================
   FEATURES - MOBILE FIRST
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    text-align: center;
    padding: 20px 12px;
}

.feature-item i {
    font-size: 28px;
    color: var(--primary-light);
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 13px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 11px;
    color: var(--gray-400);
}

/* ============================================
   FOOTER - MOBILE FIRST
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 36px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-about p {
    font-size: 12px;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
}

.footer-col li i {
    color: var(--primary);
    width: 14px;
}

.footer-col li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col li a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-col > p {
    font-size: 12px;
    line-height: 1.6;
}

.payment-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.payment-item i {
    color: var(--primary);
    width: 18px;
    font-size: 14px;
}

.payment-item i.fa-pix {
    color: var(--pix);
}

/* Footer mobile compacto */
.footer-info-mobile {
    display: none;
}

@media (max-width: 600px) {
    .footer-col-desktop {
        display: none !important;
    }
    
    .footer-info-mobile {
        display: block;
    }
    
    .footer-info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: rgba(255,255,255,0.1);
    }
    
    .footer-info-item {
        background: #111827;
        padding: 16px 12px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-decoration: none;
        transition: background 0.2s;
    }
    
    .footer-info-item:active {
        background: rgba(22, 163, 74, 0.2);
    }
    
    .footer-info-item i {
        font-size: 20px;
        color: #86efac;
    }
    
    .footer-info-item span {
        font-size: 11px;
        color: var(--gray-300);
        line-height: 1.3;
    }
    
    .footer-payments-mobile {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 14px;
        background: rgba(0,0,0,0.3);
    }
    
    .footer-payments-mobile span {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        color: var(--gray-400);
    }
    
    .footer-payments-mobile i {
        font-size: 14px;
        color: var(--gray-300);
    }
    
    .footer-payments-mobile i.fa-pix {
        color: var(--pix);
    }
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
}

/* ============================================
   CARRINHO SIDEBAR - MOBILE FIRST
   ============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 340px;
    height: 100%;
    height: 100dvh;
    background: var(--white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-sidebar.show {
    transform: translateX(0);
}

.cart-header {
    padding: 14px 16px;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.cart-header h3 {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-header button {
    color: var(--white);
    font-size: 18px;
    padding: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    -webkit-overflow-scrolling: touch;
}

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

.cart-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.cart-item img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    background: var(--white);
    border-radius: 6px;
    padding: 4px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-info .price {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 13px;
}

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

.cart-item-qty button {
    width: 26px;
    height: 26px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-qty span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    font-size: 13px;
}

.cart-item-remove {
    color: var(--gray-400);
    font-size: 14px;
    align-self: flex-start;
    padding: 4px;
}

.cart-item-remove:hover {
    color: var(--danger);
}

.cart-empty {
    text-align: center;
    padding: 40px 16px;
}

.cart-empty i {
    font-size: 40px;
    color: var(--gray-300);
    margin-bottom: 12px;
}

.cart-empty p {
    color: var(--gray-500);
    margin-bottom: 16px;
    font-size: 13px;
}

.cart-empty button {
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 13px;
}

.cart-footer {
    padding: 14px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    flex-shrink: 0;
    display: none;
}

.cart-footer.show {
    display: block;
}

.cart-pix-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    background: rgba(50,188,173,0.1);
    border-radius: 6px;
    color: var(--pix-dark);
    font-size: 12px;
    margin-bottom: 10px;
}

.cart-frete-info {
    padding: 8px;
    background: rgba(22,163,74,0.1);
    border-radius: 6px;
    color: var(--primary-dark);
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
    display: none;
}

.cart-frete-info.show {
    display: block;
}

.cart-totals {
    margin-bottom: 12px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
}

.total-line.total-final {
    border-top: 1px solid var(--gray-300);
    margin-top: 6px;
    padding-top: 10px;
    font-size: 14px;
}

.total-line.total-final strong {
    color: var(--primary-dark);
    font-size: 16px;
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-checkout:hover {
    background: #20bd5a;
}

/* Botões do Carrinho */
.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.btn-checkout.btn-whatsapp {
    background: #25d366;
}

.btn-checkout.btn-whatsapp:hover {
    background: #20bd5a;
}

.btn-checkout.btn-site {
    background: var(--primary);
}

.btn-checkout.btn-site:hover {
    background: var(--primary-dark);
}

/* Cupom de Desconto */
.cart-cupom-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: var(--radius);
    padding: 12px;
    margin-bottom: 12px;
    border: 1px dashed #f59e0b;
}

.cupom-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #92400e;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cupom-header i {
    font-size: 16px;
    color: #f59e0b;
}

.cupom-input-group {
    display: flex;
    gap: 8px;
}

.cupom-input-group input {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    transition: border-color 0.2s;
}

.cupom-input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.cupom-input-group input::placeholder {
    text-transform: none;
    font-weight: normal;
}

.cupom-input-group button {
    padding: 10px 16px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: background 0.2s;
}

.cupom-input-group button:hover {
    background: var(--primary-dark);
}

.cupom-input-group button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.cupom-aplicado {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #dcfce7;
    border-radius: var(--radius);
    padding: 10px 12px;
    border: 1px solid #86efac;
}

.cupom-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #166534;
    font-weight: 600;
    font-size: 14px;
}

.cupom-tag i {
    color: #22c55e;
}

#btn-remover-cupom {
    width: 28px;
    height: 28px;
    background: #fef2f2;
    border-radius: 50%;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

#btn-remover-cupom:hover {
    background: #fee2e2;
}

.cupom-erro {
    margin-top: 8px;
    padding: 8px 12px;
    background: #fef2f2;
    border-radius: var(--radius);
    color: #dc2626;
    font-size: 13px;
    border: 1px solid #fecaca;
}

.total-line.desconto-cupom {
    color: #16a34a;
}

.total-line.desconto-cupom strong {
    color: #16a34a;
}

/* Modal Login Inline no Checkout */
.checkout-login-inline {
    background: #f8fafc;
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
}

.checkout-login-inline h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 16px;
}

.checkout-login-inline h4 i {
    color: var(--primary);
}

.login-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.login-tab {
    flex: 1;
    padding: 10px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    font-weight: 600;
    color: #64748b;
    transition: all 0.2s;
}

.login-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.login-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.login-form-inline {
    display: none;
}

.login-form-inline.active {
    display: block;
}

.login-form-inline .form-group {
    margin-bottom: 12px;
}

.login-form-inline .form-group label {
    display: block;
    font-size: 13px;
    color: #475569;
    margin-bottom: 4px;
    font-weight: 500;
}

.login-form-inline .form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 14px;
}

.login-form-inline .form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.login-form-inline .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.login-form-inline .btn-login {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.login-form-inline .btn-login:hover {
    background: var(--primary-dark);
}

.checkout-whatsapp-option {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    border: 2px solid #86efac;
    margin-top: 15px;
}

.checkout-whatsapp-option p {
    color: #166534;
    font-size: 14px;
    margin-bottom: 12px;
}

.checkout-whatsapp-option .btn-whatsapp-checkout {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25d366;
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.checkout-whatsapp-option .btn-whatsapp-checkout:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.checkout-whatsapp-option .btn-whatsapp-checkout i {
    font-size: 20px;
}

.divisor-ou {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    color: #94a3b8;
    font-size: 13px;
}

.divisor-ou::before,
.divisor-ou::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* Resumo Mini do Checkout */
.checkout-resumo-mini {
    background: #f8fafc;
    border-radius: var(--radius);
    padding: 12px 16px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.checkout-resumo-mini p {
    margin: 0;
    color: #475569;
    font-size: 14px;
}

.checkout-resumo-mini strong {
    color: var(--primary);
    font-size: 16px;
}

/* Modal Checkout Login */
#modal-checkout-login {
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#modal-checkout-login.modal-checkout {
    padding-bottom: 20px;
}

@media (max-width: 600px) {
    .login-form-inline .form-row {
        grid-template-columns: 1fr;
    }
    
    #modal-checkout-login {
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none !important;
        width: 100%;
    }
    
    #modal-checkout-login.show {
        transform: none !important;
    }
}

/* ============================================
   MODAL PRODUTO - MOBILE FIRST
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-produto {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.modal-produto.show {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gray-700);
}

.modal-close:hover {
    background: var(--white);
    transform: scale(1.1);
    color: var(--gray-900);
}

.modal-produto-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-produto-img {
    background: #ffffff;
    padding: 50px 20px 20px;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.modal-produto-img img {
    max-height: 180px;
    max-width: 180px;
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.modal-produto-info {
    padding: 20px 16px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modal-categoria {
    display: inline-block;
    font-size: 10px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(22, 163, 74, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    align-self: flex-start;
}

.modal-nome {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
    color: var(--gray-900);
}

.modal-descricao {
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    padding: 12px 14px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    white-space: pre-wrap;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.modal-descricao:empty {
    display: none;
}

.modal-preco-box {
    margin-bottom: 16px;
    padding: 14px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 10px;
    text-align: center;
}

.modal-preco {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
}

.modal-parcela {
    font-size: 12px;
    color: var(--gray-600);
    margin-top: 2px;
    display: block;
}

.modal-parcela strong {
    color: var(--gray-700);
}

.modal-qtd-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: var(--gray-50);
    border-radius: 8px;
}

.modal-qtd-box label {
    font-weight: 600;
    font-size: 13px;
    color: var(--gray-700);
}

.modal-qtd-control {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-qtd-control .qtd-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s;
    color: var(--gray-700);
}

.modal-qtd-control .qtd-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.modal-qtd-control input {
    width: 40px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--gray-900);
}

.modal-acoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.btn-modal-add,
.btn-modal-buy {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-modal-add {
    background: var(--primary);
    color: var(--white);
}

.btn-modal-add:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-modal-buy {
    background: var(--secondary);
    color: var(--white);
}

.btn-modal-buy:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

/* Tablet - Modal centralizado */
@media (min-width: 500px) {
    .modal-produto {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        width: 90%;
        max-width: 420px;
        max-height: 85vh;
        transform: translate(-50%, -50%) scale(0.9);
        border-radius: 16px;
        opacity: 0;
        box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    }
    
    .modal-produto.show {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
    }
    
    .modal-produto-img {
        padding: 30px 20px 20px;
        border-radius: 16px 16px 0 0;
    }
    
    .modal-produto-img img {
        max-height: 160px;
        max-width: 160px;
    }
    
    .modal-produto-info {
        padding: 20px;
        padding-bottom: 20px;
    }
    
    .modal-acoes {
        flex-direction: row;
    }
    
    .btn-modal-add,
    .btn-modal-buy {
        flex: 1;
        padding: 12px 16px;
    }
}

/* Desktop - Modal maior com grid */
@media (min-width: 768px) {
    .modal-produto {
        max-width: 700px;
        max-height: 80vh;
    }
    
    .modal-produto-inner {
        display: grid;
        grid-template-columns: 280px 1fr;
        min-height: auto;
    }
    
    .modal-produto-img {
        padding: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px 0 0 16px;
        min-height: 300px;
        background: #ffffff;
        border-right: 1px solid #f1f5f9;
    }
    
    .modal-produto-img img {
        max-height: 200px;
        max-width: 200px;
    }
    
    .modal-produto-info {
        padding: 24px;
        overflow-y: auto;
    }
    
    .modal-nome {
        font-size: 20px;
    }
    
    .modal-descricao {
        font-size: 14px;
        max-height: 120px;
        overflow-y: auto;
    }
}

/* Estilos de preço antigos - mantidos para compatibilidade */
.preco-parcelas {
    font-size: 13px;
    color: var(--gray-500);
    display: block;
    margin-top: 2px;
}

.preco-pix {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px 10px;
    background: rgba(50,188,173,0.1);
    border-radius: 6px;
    color: var(--pix-dark);
    font-weight: 600;
    font-size: 14px;
}

.preco-pix small {
    font-weight: 400;
    opacity: 0.8;
    font-size: 12px;
}

.modal-quantidade {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.modal-quantidade button {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-quantidade input {
    width: 56px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
}

.modal-acoes {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    padding: 14px 16px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    z-index: 5;
}

.modal-acoes button {
    flex: 1;
    padding: 14px 10px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-adicionar {
    background: var(--primary);
    color: var(--white);
}

.btn-adicionar:hover {
    background: var(--primary-dark);
}

.btn-comprar {
    background: #25d366;
    color: var(--white);
}

.btn-comprar:hover {
    background: #20bd5a;
}

/* ============================================
   TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gray-800);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s;
    white-space: nowrap;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--primary-light);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 16px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37,211,102,0.4);
    z-index: 900;
    transition: all 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ============================================
   BOTÃO VOLTAR AO TOPO
   ============================================ */
.btn-back-to-top {
    position: fixed;
    bottom: 80px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--secondary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 899;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-back-to-top:active {
    transform: translateY(0);
}

/* ============================================
   SKELETON LOADING PARA PRODUTOS
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.product-card-skeleton {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-card-skeleton .skeleton-image {
    width: 100%;
    height: 160px;
    background: var(--gray-100);
}

.product-card-skeleton .skeleton-content {
    padding: 14px;
}

.product-card-skeleton .skeleton-category {
    width: 60px;
    height: 14px;
    margin-bottom: 8px;
}

.product-card-skeleton .skeleton-title {
    width: 100%;
    height: 18px;
    margin-bottom: 8px;
}

.product-card-skeleton .skeleton-price {
    width: 80px;
    height: 22px;
    margin-bottom: 8px;
}

.product-card-skeleton .skeleton-button {
    width: 100%;
    height: 40px;
}

/* ============================================
   RESPONSIVO - TABLET (640px+)
   ============================================ */
@media (min-width: 640px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .top-bar {
        font-size: 12px;
    }
    
    .top-bar-content {
        gap: 30px;
    }
    
    .header .container {
        gap: 14px;
    }
    
    .logo img {
        height: 36px;
    }
    
    .search-box input {
        padding: 10px 14px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    
    .product-name {
        font-size: 13px;
        height: 34px;
    }
    
    .product-price .main-price {
        font-size: 17px;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cart-sidebar {
        max-width: 380px;
    }
    
    .popup-box {
        max-width: 380px;
    }
    
    .popup-close {
        top: -16px;
        right: -16px;
        width: 40px;
        height: 40px;
        font-size: 18px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.25);
        border: 2px solid #e5e5e5;
    }
}

/* ============================================
   RESPONSIVO - DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .top-bar {
        padding: 10px 0;
    }
    
    .top-bar-content {
        gap: 50px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .header .container {
        gap: 20px;
    }
    
    .logo img {
        height: 44px;
    }
    
    .search-box input {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .search-box button {
        padding: 10px 18px;
    }
    
    .btn-whatsapp {
        display: flex;
    }
    
    .btn-cart {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .categories {
        padding: 12px 0;
    }
    
    .cat-item {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .banner {
        padding: 70px 0;
    }
    
    .banner.with-bg-image {
        padding: 0;
        aspect-ratio: 1900 / 600;
    }
    
    .banner h1 {
        font-size: 38px;
    }
    
    .banner p {
        font-size: 17px;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .section {
        padding: 56px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .combo-card {
        flex: 0 0 300px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
    
    .product-info {
        padding: 14px;
    }
    
    .product-name {
        font-size: 14px;
        height: 38px;
    }
    
    .product-price .main-price {
        font-size: 19px;
    }
    
    .product-button {
        padding: 10px;
        font-size: 12px;
    }
    
    .frete-calculator {
        padding: 32px;
        max-width: 500px;
    }
    
    .footer {
        padding: 48px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .footer-col li,
    .footer-col > p,
    .footer-about p,
    .payment-item {
        font-size: 13px;
    }
    
    .cart-sidebar {
        max-width: 400px;
    }
    
    /* Modal Desktop */
    .modal-produto {
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        width: 90%;
        max-width: 850px;
        max-height: 85vh;
        border-radius: var(--radius-lg);
        transform: translate(-50%, -50%) scale(0.9);
        overflow: hidden;
    }
    
    .modal-produto.show {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .modal-close {
        position: absolute;
        top: 12px;
        right: 12px;
    }
    
    .popup-box {
        max-width: 400px;
    }
    
    .popup-close {
        top: -18px;
        right: -18px;
        width: 44px;
        height: 44px;
        font-size: 20px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        border: 2px solid #e0e0e0;
    }
    
    .popup-close:hover {
        border-color: #bbb;
    }
    
    .popup-header {
        padding: 36px 24px 28px;
    }
    
    .popup-header h2 {
        font-size: 24px;
    }
    
    .popup-form {
        padding: 24px;
    }
}

/* ============================================
   RESPONSIVO - DESKTOP GRANDE (1280px+)
   ============================================ */
@media (min-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
    }
    
    .banner h1 {
        font-size: 42px;
    }
}

/* ============================================
   UTILITÁRIOS E FIXES
   ============================================ */

/* iOS Safari fixes */
@supports (-webkit-touch-callout: none) {
    .cart-sidebar,
    .modal-produto {
        height: -webkit-fill-available;
    }
}

/* Focus visible para acessibilidade */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Prevenir seleção em botões */
button,
.btn-primary,
.cat-item,
.product-button,
.combo-buy {
    user-select: none;
    -webkit-user-select: none;
}

/* Smooth scroll para links internos */
html {
    scroll-padding-top: 80px;
}

/* Esconder elementos quando body tem overflow hidden */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ============================================
   MELHORIAS MOBILE ADICIONAIS
   ============================================ */

/* Safe areas para iPhone X+ */
@supports (padding: max(0px)) {
    .header {
        padding-top: max(12px, env(safe-area-inset-top));
    }
    
    .footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
    
    .cart-sidebar {
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
    
    .whatsapp-float {
        bottom: max(20px, calc(env(safe-area-inset-bottom) + 20px));
    }
    
    .btn-back-to-top {
        bottom: max(80px, calc(env(safe-area-inset-bottom) + 80px));
    }
}

/* Melhorias de toque */
@media (hover: none) and (pointer: coarse) {
    .product-button,
    .combo-buy,
    .btn-primary,
    .btn-wpp,
    .cat-item {
        min-height: 44px;
    }
    
    .product-card:hover {
        transform: none;
    }
    
    .combo-card:hover {
        transform: none;
    }
}

/* Mobile extra pequeno */
@media (max-width: 380px) {
    .top-bar-content {
        gap: 25px;
    }
    
    .top-bar-content span {
        font-size: 11px;
    }
    
    .header {
        padding: 10px 8px;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .popup-box {
        margin: 8px;
        padding: 20px 16px;
    }
    
    .popup-header h2 {
        font-size: 22px;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .product-card {
        padding: 12px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .banner h1 {
        font-size: 20px;
    }
    
    .banner p {
        font-size: 13px;
    }
}

/* Landscape em mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .popup-box {
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .modal-produto {
        max-height: 95vh;
    }
    
    .banner {
        min-height: auto;
        padding: 40px 20px;
    }
    
    .banner.with-bg-image {
        padding: 0;
        aspect-ratio: 1900 / 600;
        min-height: 120px;
    }
}

/* Animações reduzidas */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print */
@media print {
    .header,
    .top-bar,
    .whatsapp-float,
    .cart-btn,
    .popup-overlay,
    .cart-sidebar,
    .footer .social-links {
        display: none !important;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ===== MELHORIAS RESPONSIVAS ADICIONAIS ===== */

/* Mobile Extra */
@media (max-width: 360px) {
    .container { padding: 0 10px; }
    
    .header { padding: 10px 0; }
    .logo img { max-height: 35px; }
    
    .hero { padding: 30px 0; }
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.9rem; }
    
    .products-grid { grid-template-columns: 1fr; gap: 12px; }
    
    .product-card { border-radius: 10px; }
    .product-image { height: 180px; }
    .product-info { padding: 12px; }
    .product-name { font-size: 0.9rem; }
    .product-price { font-size: 1.1rem; }
    
    .footer-grid { gap: 20px; }
    .footer h4 { font-size: 1rem; }
    
    .popup-box { padding: 20px; margin: 10px; max-width: calc(100vw - 20px); }
    .popup-header h2 { font-size: 1.3rem; }
    
    .cart-sidebar { width: 100%; }
}

/* Tablet Portrait */
@media (min-width: 481px) and (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Safe area para iPhone X+ */
@supports (padding: max(0px)) {
    .header { padding-top: max(12px, env(safe-area-inset-top)); }
    .footer { padding-bottom: max(24px, env(safe-area-inset-bottom)); }
    .cart-sidebar { padding-bottom: max(20px, env(safe-area-inset-bottom)); }
    .whatsapp-float { bottom: max(24px, calc(env(safe-area-inset-bottom) + 24px)); }
}

/* Fix iOS Safari 100vh */
@supports (-webkit-touch-callout: none) {
    .cart-sidebar { height: -webkit-fill-available; }
    .popup-overlay { min-height: -webkit-fill-available; }
}

/* Melhorias de toque em mobile */
@media (hover: none) {
    .btn-add-cart:active,
    .btn-submit:active,
    .cat-item:active {
        transform: scale(0.98);
    }
    
    .product-card:active {
        transform: none;
    }
}

/* ============================================
   SISTEMA DE CLIENTE
   ============================================ */

/* Botão cliente no header */
.cliente-logado {
    font-size: 12px;
    color: var(--gray-600);
}
.cliente-logado strong {
    color: var(--primary);
}

/* Modal Cliente */
.modal-cliente {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1001;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.modal-cliente.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-cliente .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.modal-cliente .modal-close:hover {
    background: var(--gray-200);
}

/* Tabs */
.cliente-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-200);
    background: var(--gray-50);
}
.cliente-tab {
    flex: 1;
    padding: 14px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s;
}
.cliente-tab:hover {
    color: var(--gray-700);
}
.cliente-tab.active {
    color: var(--primary);
    background: var(--white);
    border-bottom: 2px solid var(--primary);
}

/* Conteúdo das abas */
.cliente-content {
    display: none;
    padding: 20px;
    overflow-y: auto;
    max-height: calc(90vh - 60px);
}
.cliente-content.active {
    display: block;
}
.cliente-content h3 {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-800);
}
.cliente-content h3 i {
    color: var(--primary);
}
.cliente-content h4 {
    font-size: 14px;
    margin: 16px 0 12px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}
.cliente-content h4 i {
    color: var(--primary);
}
.cliente-content hr {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 16px 0;
}

/* Formulários */
.form-group {
    margin-bottom: 14px;
}
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 14px;
    transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: flex;
    gap: 12px;
}
.form-row .form-group {
    flex: 1;
}
.form-row .form-sm {
    flex: 0 0 100px;
}
.form-row .form-lg {
    flex: 2;
}

/* Botões */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}
.btn-primary:hover {
    background: var(--primary-dark);
}
.btn-outline {
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}
.btn-outline:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
}
.btn-danger {
    background: var(--danger);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}
.btn-danger:hover {
    background: #b91c1c;
}
.btn-full {
    width: 100%;
}
.btn-lg {
    padding: 14px 24px;
    font-size: 16px;
}
.btn-link {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 13px;
    cursor: pointer;
    padding: 4px 0;
}
.btn-link:hover {
    text-decoration: underline;
}
.btn-voltar {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-voltar:hover {
    color: var(--primary);
}

.link-cadastro {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-500);
}
.link-cadastro a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.link-cadastro a:hover {
    text-decoration: underline;
}

/* Menu cliente */
.cliente-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* Card cliente */
.cliente-card {
    background: var(--gray-50);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}
.cliente-card p {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cliente-card p strong {
    color: var(--gray-800);
    font-size: 16px;
}
.cliente-card i {
    color: var(--primary);
    width: 16px;
}

/* Pedidos */
.pedido-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 12px;
}
.pedido-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.pedido-numero {
    font-weight: 700;
    color: var(--gray-800);
}
.pedido-status {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}
.status-pendente { background: #fef3c7; color: #92400e; }
.status-pago { background: #d1fae5; color: #065f46; }
.status-preparando { background: #dbeafe; color: #1e40af; }
.status-enviado { background: #e0e7ff; color: #3730a3; }
.status-entregue { background: #d1fae5; color: #065f46; }
.status-cancelado { background: #fee2e2; color: #991b1b; }
.pedido-data {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 8px;
}
.pedido-itens {
    border-top: 1px solid var(--gray-200);
    padding-top: 8px;
}
.pedido-item {
    font-size: 13px;
    color: var(--gray-600);
    padding: 2px 0;
}
.pedido-total {
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
    text-align: right;
}

.vazio, .erro, .loading {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-400);
}
.vazio i, .loading i {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}
.erro {
    color: var(--danger);
}

/* ============================================
   CHECKOUT
   ============================================ */

.modal-checkout {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 95%;
    max-width: 550px;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1001;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.modal-checkout.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.modal-checkout .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.modal-checkout h2 {
    padding: 20px;
    margin: 0;
    font-size: 18px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
}
.modal-checkout h2 i {
    color: var(--primary);
}

.checkout-resumo,
.checkout-section {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
}
.checkout-resumo {
    max-height: 150px;
    overflow-y: auto;
    background: var(--gray-50);
}
.checkout-resumo h4 {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 10px;
}
.checkout-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
}
.checkout-item-qtd {
    font-weight: 600;
    color: var(--primary);
    min-width: 30px;
}
.checkout-item-nome {
    flex: 1;
    color: var(--gray-700);
}
.checkout-item-preco {
    font-weight: 600;
    color: var(--gray-800);
}

.checkout-section h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.checkout-section h4 i {
    color: var(--primary);
}

#checkout-endereco {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
}
#checkout-endereco small {
    color: var(--gray-500);
}

/* Opções de pagamento */
.pagamento-opcoes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pagamento-opcao {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}
.pagamento-opcao:hover {
    border-color: var(--gray-300);
}
.pagamento-opcao.selected {
    border-color: var(--primary);
    background: rgba(22, 163, 74, 0.05);
}
.pagamento-opcao input {
    display: none;
}
.pagamento-opcao i {
    font-size: 24px;
    width: 36px;
    text-align: center;
}
.pagamento-opcao i.fab.fa-pix {
    color: var(--pix);
}
.pagamento-opcao i.fa-credit-card {
    color: #3b82f6;
}
.pagamento-opcao i.fa-money-bill-wave {
    color: var(--success);
}
.pagamento-opcao div {
    flex: 1;
}
.pagamento-opcao strong {
    display: block;
    font-size: 14px;
    color: var(--gray-800);
}
.pagamento-opcao span {
    font-size: 12px;
    color: var(--gray-500);
}

#checkout-obs {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 13px;
    resize: none;
    height: 60px;
}

/* Totais checkout */
.checkout-totais {
    padding: 16px 20px;
    background: var(--gray-50);
}
.total-linha {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-600);
}
.total-linha.desconto {
    color: var(--success);
}
.total-linha.total-final {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-800);
    border-top: 1px solid var(--gray-200);
    padding-top: 10px;
    margin-top: 6px;
}

.modal-checkout .btn-primary {
    margin: 16px 20px 20px;
}

/* Confirmação de pedido */
.modal-confirmacao {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    z-index: 1002;
}
.confirmacao-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.confirmacao-icon i {
    font-size: 40px;
    color: var(--white);
}
.modal-confirmacao h2 {
    font-size: 24px;
    color: var(--gray-800);
    margin-bottom: 10px;
}
.modal-confirmacao p {
    color: var(--gray-600);
    margin-bottom: 8px;
}
.confirmacao-total {
    font-size: 20px !important;
    margin: 16px 0 !important;
}
.confirmacao-total strong {
    color: var(--primary);
}
.confirmacao-pix {
    background: var(--gray-50);
    padding: 16px;
    border-radius: var(--radius);
    margin: 16px 0;
}
.confirmacao-pix p {
    margin-bottom: 10px;
}
.confirmacao-pix i {
    color: var(--pix);
}
.pix-chave {
    background: var(--white);
    padding: 10px;
    border-radius: var(--radius);
    font-family: monospace;
    word-break: break-all;
    margin-bottom: 10px;
}
.modal-confirmacao .btn-primary {
    margin-top: 16px;
}

/* Mobile */
@media (max-width: 600px) {
    .modal-cliente,
    .modal-checkout {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: translateY(100%);
    }
    .modal-cliente.show,
    .modal-checkout.show {
        transform: translateY(0);
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-row .form-sm,
    .form-row .form-lg {
        flex: 1;
    }
    
    .pagamento-opcoes {
        gap: 8px;
    }
    .pagamento-opcao {
        padding: 12px;
    }
}

/* ============================================
   CORREÇÕES DE RESPONSIVIDADE MOBILE
   ============================================ */

/* Evitar overflow horizontal em todas as telas */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Container seguro */
.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Corrigir área de login/cadastro no mobile */
@media (max-width: 600px) {
    /* Modal cliente - fullscreen no mobile com animação slide-up */
    .modal-cliente {
        position: fixed !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        transform: translateY(100%) !important;
        transition: transform 0.3s ease !important;
    }
    
    .modal-cliente.show {
        transform: translateY(0) !important;
    }
    
    .cliente-tabs {
        position: sticky;
        top: 0;
        z-index: 5;
        background: var(--gray-50);
    }
    
    .cliente-content {
        height: calc(100% - 50px);
        max-height: none !important;
        padding: 16px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0));
    }
    
    .cliente-content h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .cliente-content h4 {
        font-size: 14px;
    }
    
    .cliente-content .form-group {
        margin-bottom: 12px;
    }
    
    .cliente-content .form-group label {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .cliente-content .form-group input,
    .cliente-content .form-group select {
        font-size: 16px !important; /* Evitar zoom no iOS */
        padding: 12px;
    }
    
    .cliente-content .btn-primary,
    .cliente-content .btn-outline,
    .cliente-content .btn-danger {
        padding: 14px;
        font-size: 15px;
    }
    
    .modal-cliente .modal-close {
        position: fixed;
        top: 12px;
        right: 12px;
        z-index: 20;
        background: var(--white);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    /* Modal checkout - fullscreen no mobile */
    .modal-checkout {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
    }
    
    .modal-checkout.show {
        transform: none !important;
    }
    
    /* Carrinho sidebar - largura total no mobile */
    .cart-sidebar {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Cart footer ajustes */
    .cart-footer {
        padding: 12px;
    }
    
    .cart-cupom-box {
        padding: 10px;
    }
    
    .cupom-input-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .cupom-input-group input {
        width: 100%;
    }
    
    .cupom-input-group button {
        width: 100%;
    }
    
    /* Opções de pagamento */
    .pagamento-opcoes {
        gap: 8px;
    }
    
    .pagamento-opcao {
        padding: 10px;
        flex-wrap: wrap;
    }
    
    .pagamento-opcao i {
        font-size: 20px;
        width: 28px;
    }
    
    .pagamento-opcao strong {
        font-size: 13px;
    }
    
    .pagamento-opcao span {
        font-size: 11px;
    }
    
    /* Checkout sections */
    .checkout-section {
        padding: 14px 16px;
    }
    
    .checkout-resumo {
        padding: 12px 16px;
        max-height: 120px;
    }
    
    .checkout-totais {
        padding: 14px 16px;
    }
    
    /* Formulários mobile */
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row .form-group,
    .form-row .form-sm,
    .form-row .form-lg {
        flex: none;
        width: 100%;
    }
    
    .form-group input,
    .form-group select {
        font-size: 16px; /* Evita zoom no iOS */
        padding: 12px;
    }
    
    /* Login inline no checkout */
    .checkout-login-inline {
        padding: 14px;
    }
    
    .login-tabs {
        flex-direction: column;
        gap: 8px;
    }
    
    .login-tab {
        padding: 12px;
        text-align: center;
    }
    
    .login-form-inline .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    /* Botões ajustados */
    .btn-checkout {
        padding: 12px;
        font-size: 14px;
    }
    
    .cart-actions {
        gap: 8px;
    }
    
    /* Checkout whatsapp */
    .checkout-whatsapp-option {
        padding: 14px;
    }
    
    .checkout-whatsapp-option .btn-whatsapp-checkout {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    /* Header mobile */
    .header .container {
        gap: 8px;
        padding: 0 10px;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .btn-cliente,
    .btn-cart {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    /* Search mobile */
    .search-box input {
        padding: 8px 10px;
        font-size: 16px !important; /* Evita zoom no iOS */
    }
    
    .search-box button {
        padding: 8px 10px;
    }
    
    /* Top bar animada */
    .top-bar-content {
        animation-duration: 20s;
    }
}

/* Telas extra pequenas */
@media (max-width: 380px) {
    .header .container {
        padding: 0 8px;
    }
    
    .logo img {
        max-height: 28px;
    }
    
    .btn-cliente,
    .btn-cart {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .search-box input {
        padding: 6px 8px;
    }
    
    .checkout-section,
    .checkout-resumo,
    .checkout-totais {
        padding: 12px;
    }
    
    .pagamento-opcao {
        padding: 8px;
    }
}

/* ============================================
   MELHORIAS NO RODAPÉ MOBILE
   ============================================ */
@media (max-width: 600px) {
    .footer {
        padding: 0;
        background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    }
    
    .footer .container {
        padding: 0;
    }
    
    /* Grid profissional no mobile */
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    /* About - Seção principal */
    .footer-about {
        text-align: center;
        padding: 24px 20px 20px;
        background: linear-gradient(135deg, rgba(22, 163, 74, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .footer-about #footer-logo-container {
        display: flex;
        justify-content: center;
        margin-bottom: 12px;
    }
    
    .footer-about #footer-logo {
        max-height: 50px !important;
        filter: brightness(1.1);
    }
    
    .footer-about p {
        font-size: 12px;
        margin-bottom: 14px;
        color: var(--gray-400);
    }
    
    /* Links sociais */
    .footer-about .social-links {
        display: flex;
        justify-content: center;
        gap: 12px;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 18px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        transition: all 0.2s;
    }
    
    .social-links a:hover {
        background: var(--primary);
        transform: scale(1.1);
    }
    
    /* Grid para colunas de info */
    .footer-grid > .footer-col:not(.footer-about) {
        display: none;
    }
    
    /* Info compacta no mobile */
    .footer-info-compact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: rgba(255,255,255,0.1);
    }
    
    .footer-info-item {
        background: #111827;
        padding: 16px;
        text-align: center;
    }
    
    .footer-info-item i {
        font-size: 20px;
        color: var(--primary-light);
        margin-bottom: 8px;
        display: block;
    }
    
    .footer-info-item span {
        font-size: 11px;
        color: var(--gray-300);
        display: block;
        line-height: 1.4;
    }
    
    .footer-info-item a {
        color: var(--gray-300);
        text-decoration: none;
    }
    
    /* Métodos de pagamento */
    .footer-payments {
        display: flex;
        justify-content: center;
        gap: 16px;
        padding: 16px;
        background: rgba(0,0,0,0.2);
    }
    
    .footer-payments span {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 11px;
        color: var(--gray-400);
    }
    
    .footer-payments i {
        font-size: 16px;
        color: var(--gray-300);
    }
    
    .footer-payments i.fa-pix {
        color: var(--pix);
    }
    
    /* Footer bottom */
    .footer-bottom {
        padding: 14px 16px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom, 0));
        background: rgba(0,0,0,0.3);
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 10px;
        color: var(--gray-500);
        margin: 0;
    }
    
    /* Payment items ocultos (usamos versão compacta) */
    .payment-list {
        display: none;
    }
}
    }
    
    .payment-item {
        font-size: 11px;
        gap: 6px;
    }
    
    .payment-item i {
        font-size: 12px;
        width: 16px;
    }
    
    /* Footer bottom */
    .footer-bottom {
        padding: 12px 0;
        font-size: 10px;
    }
}

/* Telas muito pequenas - footer em coluna única */
@media (max-width: 360px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-about {
        grid-column: 1;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-col li {
        justify-content: center;
    }
    
    .payment-list {
        align-items: center;
    }
}

/* ============================================
   CORREÇÕES DO POPUP MOBILE
   ============================================ */

/* Popup responsivo */
@media (max-width: 600px) {
    .popup-overlay {
        padding: 12px;
        align-items: flex-start;
        padding-top: 5vh;
    }
    
    .popup-box {
        max-width: 100%;
        width: 100%;
        max-height: 85vh;
        max-height: 85dvh;
        margin: 0;
    }
    
    .popup-inner {
        max-height: 85vh;
        max-height: 85dvh;
    }
    
    .popup-close {
        top: 8px;
        right: 8px;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 18px;
        background: rgba(255,255,255,0.95);
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    
    .popup-header {
        padding: 28px 16px 20px;
    }
    
    .popup-header img {
        height: 35px;
    }
    
    .popup-header h2 {
        font-size: 20px;
    }
    
    .popup-header p {
        font-size: 13px;
    }
    
    .popup-form {
        padding: 16px;
    }
    
    .popup-form .form-group {
        margin-bottom: 12px;
    }
    
    .popup-form .form-group label {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .popup-form .form-group input {
        padding: 12px;
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    .popup-form .btn-submit {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .popup-skip {
        padding: 12px;
        font-size: 13px;
    }
}

/* Popup em telas muito pequenas */
@media (max-width: 380px) {
    .popup-overlay {
        padding: 8px;
        padding-top: 3vh;
    }
    
    .popup-box {
        max-height: 90vh;
        max-height: 90dvh;
        border-radius: var(--radius);
    }
    
    .popup-header {
        padding: 24px 14px 18px;
    }
    
    .popup-header h2 {
        font-size: 18px;
    }
    
    .popup-form {
        padding: 14px;
    }
}

/* Popup sucesso mobile */
.popup-sucesso-inner {
    text-align: center;
    padding: 24px 16px;
}

@media (max-width: 600px) {
    .popup-sucesso-inner {
        padding: 20px 14px;
    }
    
    .popup-sucesso-inner h2 {
        font-size: 1.3rem !important;
    }
    
    .popup-sucesso-inner .cupom-box {
        padding: 16px !important;
    }
    
    .popup-sucesso-inner .cupom-box span {
        font-size: 1.5rem !important;
        letter-spacing: 2px !important;
    }
    
    .popup-sucesso-inner button {
        padding: 10px 16px !important;
        font-size: 13px !important;
        margin: 4px !important;
    }
}

/* Landscape em dispositivos pequenos */
@media (max-height: 500px) and (orientation: landscape) {
    .popup-overlay {
        padding: 8px;
        align-items: center;
    }
    
    .popup-box {
        max-height: 95vh;
        max-height: 95dvh;
    }
    
    .popup-header {
        padding: 16px;
    }
    
    .popup-header img {
        height: 28px;
        margin-bottom: 8px;
    }
    
    .popup-header h2 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .popup-header p {
        font-size: 12px;
    }
    
    .popup-form {
        padding: 12px 16px;
    }
    
    .popup-form .form-group {
        margin-bottom: 8px;
    }
    
    .popup-form .form-group input {
        padding: 8px 10px;
    }
    
    .popup-skip {
        padding: 10px;
    }
}

/* ============================================
   CORREÇÕES GLOBAIS - EVITAR ZOOM NO MOBILE
   ============================================ */

/* Todos os inputs e selects devem ter 16px para evitar zoom no iOS */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="number"],
    input[type="search"],
    input[type="url"],
    select,
    textarea {
        font-size: 16px !important;
    }
    
    /* Garantir que placeholder também está correto */
    input::placeholder {
        font-size: 14px;
    }
}

/* ============================================
   MODAL PRODUTO - CORREÇÃO DESCRIÇÃO MOBILE
   ============================================ */
@media (max-width: 600px) {
    .modal-produto {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    
    .modal-produto.show {
        transform: translateY(0);
    }
    
    .modal-produto-inner {
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .modal-produto-img {
        flex-shrink: 0;
        padding: 50px 16px 16px;
        background: #ffffff;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .modal-produto-img img {
        max-height: 150px;
        max-width: 150px;
        margin: 0 auto;
        display: block;
    }
    
    .modal-produto-info {
        flex: 1;
        padding: 16px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 20px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-categoria {
        font-size: 9px;
        padding: 3px 8px;
        margin-bottom: 6px;
    }
    
    .modal-nome {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .modal-descricao {
        font-size: 12px;
        line-height: 1.5;
        padding: 10px 12px;
        margin-bottom: 12px;
        background: #f8fafc;
        border-radius: 6px;
        border-left: 3px solid var(--primary);
        white-space: pre-wrap;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        max-height: 120px;
        overflow-y: auto;
    }
    
    .modal-preco-box {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .modal-preco {
        font-size: 22px;
    }
    
    .modal-parcela {
        font-size: 11px;
    }
    
    .modal-qtd-box {
        padding: 10px 12px;
        margin-bottom: 12px;
    }
    
    .modal-qtd-box label {
        font-size: 12px;
    }
    
    .modal-qtd-control .qtd-btn {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    
    .modal-qtd-control input {
        width: 36px;
        font-size: 14px;
    }
    
    .modal-acoes {
        gap: 8px;
    }
    
    .btn-modal-add,
    .btn-modal-buy {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .modal-close {
        position: fixed;
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        z-index: 100;
    }
}

/* ============================================
   MODAL CLIENTE - CORREÇÃO MOBILE
   ============================================ */
@media (max-width: 600px) {
    .modal-cliente {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        border-radius: 0 !important;
        transform: translateY(100%) !important;
        transition: transform 0.3s ease !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .modal-cliente.show {
        transform: translateY(0) !important;
    }
    
    .modal-cliente .modal-close {
        position: fixed !important;
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        z-index: 100;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }
    
    .cliente-tabs {
        position: sticky;
        top: 0;
        z-index: 10;
        background: var(--gray-50);
    }
    
    .cliente-tab {
        padding: 14px 12px;
        font-size: 13px;
    }
    
    .cliente-content {
        height: calc(100% - 48px);
        max-height: none !important;
        padding: 16px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0));
    }
    
    .cliente-content h3 {
        font-size: 18px;
        margin-bottom: 16px;
        padding-right: 40px;
    }
    
    .cliente-content h4 {
        font-size: 14px;
        margin: 16px 0 12px;
    }
    
    .cliente-content .form-group {
        margin-bottom: 12px;
    }
    
    .cliente-content .form-group label {
        font-size: 12px;
        margin-bottom: 4px;
        display: block;
    }
    
    .cliente-content .form-group input,
    .cliente-content .form-group select {
        font-size: 16px !important;
        padding: 12px;
        border-radius: 8px;
    }
    
    .cliente-content .btn-primary,
    .cliente-content .btn-outline,
    .cliente-content .btn-danger {
        padding: 14px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .cliente-content .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .cliente-content hr {
        margin: 16px 0;
    }
    
    .link-cadastro {
        text-align: center;
        margin-top: 16px;
        font-size: 13px;
    }
    
    .cliente-menu {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-voltar {
        margin-bottom: 16px;
    }
}
