/* Zatti Sneakers — Stylesheet principal */

@font-face {
    font-family: 'Satoshi';
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Satoshi-Medium.woff2') format('woff2'),
         url('../fonts/Satoshi-Medium.woff') format('woff');
}
@font-face {
    font-family: 'Satoshi';
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Satoshi-Bold.woff2') format('woff2'),
         url('../fonts/Satoshi-Bold.woff') format('woff');
}

:root {
    --primary: #2273F0;
    --primary-hover: #1860d6;
    --primary-tint: #eaf2fe;
    --text: #111;
    --text-soft: #4b5563;
    --text-muted: #6b7280;
    --muted: #9ca3af;
    --bg: #ffffff;
    --bg-soft: #f9fafb;
    --border: #e5e7eb;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius: 6px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow: 0 6px 20px rgba(0,0,0,.10);
    --container: 1222px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
    -webkit-text-size-adjust: 100%;
    scrollbar-gutter: stable both-edges;
    overflow-x: hidden;
}
body {
    font-family: 'Satoshi', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.5;
    background: var(--bg);
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; color: var(--text); }
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }
p { color: var(--text-soft); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* === TOP BAR (rotativa) === */
.top-bar {
    background: var(--primary);
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .02em;
    overflow: hidden;
    height: 38px;
}
.top-bar-rotate {
    animation: top-bar-cycle 12s infinite;
}
.top-bar-msg {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 16px;
}
.top-bar strong { font-weight: 700; }
@keyframes top-bar-cycle {
    0%, 25%   { transform: translateY(0); }
    33%, 58%  { transform: translateY(-38px); }
    66%, 91%  { transform: translateY(-76px); }
    99%, 100% { transform: translateY(-114px); }
}

/* === HEADER === */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}
.header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    max-width: var(--container);
    margin: 0 auto;
    gap: 24px;
    min-height: 80px;
}
.brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1;
}
.brand img {
    height: auto;
    max-height: 64px;
    max-width: 274px;
    width: auto;
    display: block;
}

/* Nav esquerda do logo */
.main-nav {
    display: flex;
    gap: 28px;
    flex: 1;
    justify-content: flex-start;
}
.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    padding: 8px 0;
    position: relative;
    transition: color .15s;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .2s;
    transform-origin: center;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}
.icon-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    border-radius: 50%;
    position: relative;
    transition: background .15s;
}
.icon-btn:hover { background: var(--bg-soft); color: var(--primary); }
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.menu-toggle { display: none; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius);
    transition: all .15s;
    text-align: center;
    gap: 8px;
    cursor: pointer;
    line-height: 1;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); color: #fff; }
.btn-outline { border: 2px solid var(--text); color: var(--text); background: transparent; }
.btn-outline:hover { background: var(--text); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-pill { border-radius: 28px; padding: 14px 32px; }

/* === HERO BANNER (HOME) === */
.hero-fullbleed {
    width: 100%;
    overflow: hidden;
}
.hero-fullbleed img {
    width: 100%;
    height: auto;
    display: block;
}

/* === SECTION === */
.section { padding: 56px 0; }
.section-sm { padding: 40px 0; }
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin: 0 0 6px;
}
.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin: 0 0 32px;
    font-size: 15px;
}

/* === PRODUCTS GRID === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.product-card-img {
    aspect-ratio: 1 / 1;
    background: #ffffff;
    overflow: hidden;
    position: relative;
    display: block;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger);
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: .04em;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(239, 68, 68, .3);
}

/* === Produto ESGOTADO === */
.product-card-sold-out .product-card-img img { opacity: .55; filter: grayscale(.4); }
.product-card-sold-out .product-card-title,
.product-card-sold-out .product-card-prices,
.product-card-sold-out .product-card-rating { opacity: .65; }
.product-card-soldout-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(17, 17, 17, .92);
    color: #fff;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: .12em;
    z-index: 3;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

/* Botão esgotado (página de produto) */
.btn-soldout {
    background: #e5e7eb;
    color: #6b7280;
    cursor: not-allowed;
    letter-spacing: .12em;
    font-weight: 800;
}
.btn-soldout:hover { background: #e5e7eb; color: #6b7280; }
.soldout-msg {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.5;
    text-align: center;
}
.soldout-msg a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Tamanhos desabilitados quando esgotado */
.variations-disabled .size-grid { opacity: .45; pointer-events: none; }
.variations-disabled label { cursor: not-allowed !important; }
.product-card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.product-card-collection {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary);
    margin-bottom: 2px;
}
.product-card-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}
.product-collection-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary);
    background: var(--primary-tint);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
    transition: background .15s;
}
.product-collection-tag:hover { background: var(--primary); color: #fff; }
.product-card-prices { margin-top: auto; }
.product-card-original {
    font-size: 12px;
    color: var(--muted);
    text-decoration: line-through;
}
.product-card-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}
.product-card-installments {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}
.product-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.product-card-rating .stars {
    color: #fbbf24;
    letter-spacing: 1px;
    font-size: 12px;
}
.product-card-pix {
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
    background: rgba(34, 197, 94, .12);
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 6px;
    display: inline-block;
}

/* === SINGLE PRODUCT === */
.breadcrumbs {
    padding: 16px 0;
    font-size: 13px;
    color: var(--muted);
}
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { margin: 0 6px; }

.product-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 20px 0 60px;
}
.product-gallery { display: flex; flex-direction: column; gap: 12px; }
.product-gallery-main {
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.product-gallery-main img {
    width: 100%; height: 100%; object-fit: contain;
}
.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.product-gallery-thumbs button {
    aspect-ratio: 1 / 1;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #ffffff;
    padding: 0;
    transition: border-color .15s;
}
.product-gallery-thumbs button.active,
.product-gallery-thumbs button:hover { border-color: var(--primary); }
.product-gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }

.product-info-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}
.product-info-head h1 { margin-bottom: 0; flex: 1; }
.wish-icon-btn {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}
.wish-icon-btn:hover {
    border-color: #ec4899;
    color: #ec4899;
}
.wish-icon-btn.active {
    background: #ec4899;
    border-color: #ec4899;
    color: #fff;
}
.wish-icon-btn.active svg { fill: #fff; }
.product-info h1 { font-size: 1.75rem; margin-bottom: 8px; }

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--text-muted);
}
.product-rating .stars { color: #fbbf24; letter-spacing: 1px; }

.price-block { margin: 20px 0; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-original { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.price-now { font-size: 2rem; font-weight: 700; color: var(--text); margin-top: 4px; line-height: 1; }
.price-discount {
    display: inline-block;
    background: rgba(34, 197, 94, .15);
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    margin-left: 10px;
    border-radius: 4px;
    vertical-align: middle;
}
.price-installments { margin-top: 8px; font-size: 14px; color: var(--text-soft); }

.variations { margin: 20px 0; }
.variation-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text);
    margin-bottom: 10px;
    display: block;
}
.size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(54px, 1fr));
    gap: 8px;
    max-width: 380px;
}
.size-grid input { display: none; }
.size-grid label {
    border: 1px solid var(--border);
    background: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all .15s;
}
.size-grid label:hover { border-color: var(--primary); }
.size-grid input:checked + label {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.product-actions { display: flex; gap: 10px; margin: 20px 0; flex-wrap: wrap; }
.product-actions .btn { flex: 1; min-width: 200px; }

/* Cards de benefício (PIX / Frete / Trocas) — inspirado em LK Sneakers, Maze, YouridStore */
.benefits-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 14px 0 18px;
}
.benefit-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .15s, transform .15s;
}
.benefit-card:hover {
    border-color: var(--text);
    transform: translateY(-1px);
}
.benefit-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.benefit-body {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
}
.benefit-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.benefit-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}
.benefit-tag {
    display: inline-block;
    background: var(--success);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
    vertical-align: middle;
    margin-left: 2px;
    letter-spacing: .04em;
}
.benefit-pix .benefit-icon {
    background: rgba(50, 188, 173, .12);
    color: #32BCAD;
}
.benefit-icon-pix img { width: 26px; height: 26px; display: block; }
.benefit-pix .benefit-title { color: #1a8076; }
.benefit-pix .benefit-tag { background: #32BCAD; }
.benefit-ship .benefit-icon {
    background: var(--primary-tint);
    color: var(--primary);
}
.benefit-trade .benefit-icon {
    background: rgba(245, 158, 11, .12);
    color: var(--warning);
}

@media (max-width: 640px) {
    .benefits-row { grid-template-columns: 1fr; gap: 6px; }
    .benefit-card { padding: 10px 12px; }
}

.product-meta { font-size: 13px; color: var(--text-soft); margin-top: 16px; }
.product-meta strong { color: var(--text); }

.size-guide {
    margin: 20px 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.size-guide summary {
    padding: 14px 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.size-guide summary::-webkit-details-marker { display: none; }
.size-guide summary::after { content: '+'; font-size: 20px; color: var(--primary); }
.size-guide[open] summary::after { content: '−'; }
.size-guide .size-guide-body { padding: 0 18px 18px; font-size: 13px; color: var(--text-soft); }
.size-guide-h { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .04em; margin: 14px 0 8px; }
.size-guide-steps { padding-left: 20px; margin: 0 0 12px; list-style: decimal; }
.size-guide-steps li { margin-bottom: 6px; line-height: 1.5; color: var(--text-soft); }
.size-guide-tip { background: var(--primary-tint); border-left: 3px solid var(--primary); padding: 10px 14px; border-radius: 4px; margin: 8px 0 14px; color: var(--text); }
.size-guide table { width: 100%; border-collapse: collapse; margin-top: 6px; font-size: 13px; }
.size-guide th, .size-guide td {
    padding: 8px; border: 1px solid var(--border); text-align: center;
}
.size-guide th { background: var(--bg-soft); font-weight: 700; color: var(--text); }
.size-guide td:first-child { font-weight: 700; color: var(--text); }

/* === CARROSSEL "Você também pode gostar" === */
.related-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
}
.related-head .section-title { text-align: left; margin: 0; }
.related-controls { display: flex; gap: 8px; }
.related-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}
.related-arrow:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.related-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
    background: #fff;
    color: var(--text);
    border-color: var(--border);
}
.related-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
}
.related-carousel::-webkit-scrollbar { display: none; }
.related-slide {
    flex: 0 0 calc((100% - 16px * 4) / 5);
    scroll-snap-align: start;
    min-width: 0;
}
@media (max-width: 1024px) {
    .related-slide { flex: 0 0 calc((100% - 16px * 2) / 3); }
}
@media (max-width: 640px) {
    .related-slide { flex: 0 0 calc((100% - 14px) / 2); }
    .related-carousel { gap: 14px; }
}

/* === REVIEWS / AVALIAÇÕES (lista de cards com header agregado) === */
.reviews-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 16px;
}
.reviews-title {
    font-size: 1.5rem;
    margin-bottom: 22px;
    color: var(--text);
}
.reviews-head {
    margin-bottom: 28px;
}
.reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: center;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.reviews-avg { text-align: center; }
.reviews-avg strong {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--text);
}
.reviews-avg-stars {
    color: #fbbf24;
    letter-spacing: 2px;
    font-size: 18px;
    margin: 6px 0 4px;
}
.reviews-avg-stars span { opacity: .25; }
.reviews-avg-stars span.on { opacity: 1; }
.reviews-avg small { color: var(--text-muted); font-size: 13px; }

.reviews-breakdown { display: flex; flex-direction: column; gap: 6px; }
.reviews-bar-row {
    display: grid;
    grid-template-columns: 28px 1fr 36px;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}
.reviews-bar-label { font-weight: 600; }
.reviews-bar {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}
.reviews-bar-fill {
    height: 100%;
    background: #fbbf24;
    border-radius: 4px;
    transition: width .3s;
}
.reviews-bar-pct { text-align: right; font-weight: 500; }

.reviews-list { display: flex; flex-direction: column; gap: 14px; }
.review-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.review-hidden { display: none; }
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}
.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--text); }
.review-verified {
    background: rgba(34, 197, 94, .12);
    color: #15803d;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 999px;
}
.review-date { font-size: 12px; color: var(--text-muted); margin-left: auto; }
.review-stars {
    color: #fbbf24;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 6px;
}
.review-stars span { opacity: .25; }
.review-stars span.on { opacity: 1; }
.review-text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.55;
    margin: 0;
}

.reviews-actions { text-align: center; margin-top: 20px; }
.reviews-actions button {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .15s;
}
.reviews-actions button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 640px) {
    .reviews-summary { grid-template-columns: 1fr; gap: 22px; padding: 18px; }
    .review-card { padding: 14px 16px; gap: 12px; grid-template-columns: 38px 1fr; }
    .review-avatar { width: 38px; height: 38px; font-size: 15px; }
    .review-date { margin-left: 0; width: 100%; }
}

/* === FEEDBACKS DOS CLIENTES (adaptado de civano.com.br) === */
.feedbacks-clientes {
    max-width: 600px;
    margin: 60px auto;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.feedbacks-clientes .text-1 {
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 8px;
    font-size: 15px;
    letter-spacing: .04em;
    color: var(--text);
}
.feedbacks-clientes .text-ranking {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-top: 28px;
}
.feedbacks-clientes .text-ranking-sub {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    font-style: normal;
}
.feedbacks-clientes .container-linha {
    margin-top: 22px;
    margin-bottom: 22px;
    position: relative;
}
.feedbacks-clientes .linha1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 4px;
    background-color: var(--border);
    position: relative;
}
.feedbacks-clientes .linha2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4px;
    margin-top: -4px;
    background-color: var(--primary);
    z-index: 9;
    position: relative;
    border-radius: 2px;
}
.feedbacks-clientes .linha2-tamanhos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 1px;
    height: 4px;
    margin-top: -4px;
    z-index: 9;
    position: relative;
}
.feedbacks-clientes .linha3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4px;
    margin-top: -7px;
    position: relative;
}
.feedbacks-clientes .circle {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    background-color: var(--border);
    border-radius: 50%;
}
.feedbacks-clientes .circle-size {
    flex: 0 0 2px;
    height: 16px;
    width: 2px;
    background-color: var(--primary);
}
.feedbacks-clientes .circle2 {
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 2;
}
.feedbacks-clientes .pointcircle {
    margin-left: auto;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    outline: 3px solid var(--primary);
    border-radius: 50%;
}
.feedbacks-clientes .finalcircle {
    width: 10px;
    height: 10px;
    background-color: var(--border);
    border-radius: 50%;
}
.feedbacks-clientes .container-medias {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}
.feedbacks-clientes .classificacoes {
    font-size: 12px;
    color: var(--text-muted);
}
.feedbacks-clientes .container-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    width: 100%;
    background-color: var(--primary);
    margin-top: 32px;
    color: #fff;
    border-radius: var(--radius);
    font-size: 14px;
}
.feedbacks-clientes .container-media strong {
    font-weight: 700;
    font-size: 15px;
    margin-right: 4px;
}

@media (max-width: 540px) {
    .feedbacks-clientes { margin: 40px 16px; padding: 18px; }
    .feedbacks-clientes .text-ranking { font-size: 16px; }
    .feedbacks-clientes .classificacoes { font-size: 10px; }
}

.product-tabs { margin: 60px 0; }
.tabs-nav { display: flex; gap: 30px; border-bottom: 1px solid var(--border); margin-bottom: 28px; flex-wrap: wrap; }
.tabs-nav button {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 14px 0;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    transition: all .15s;
    margin-bottom: -1px;
}
.tabs-nav button.active, .tabs-nav button:hover { color: var(--text); border-bottom-color: var(--primary); }
.tab-panel { display: none; font-size: 15px; color: var(--text-soft); line-height: 1.7; }
.tab-panel.active { display: block; }
.tab-panel h3 { margin: 16px 0 8px; }
.tab-panel ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }
.tab-panel ul li { margin-bottom: 6px; }

/* === CLIENTES (testimonials) — IGUAL AO ORIGINAL === */
.clientes-section {
    background: var(--bg-soft);
    padding: 56px 0;
}
.clientes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.cliente-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
}
.cliente-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.10);
}
.cliente-img-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e5e7eb;
}
.cliente-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cliente-stars {
    color: #fbbf24;
    font-size: 16px;
    margin: 14px 16px 4px;
    letter-spacing: 2px;
}
.cliente-nome {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0 16px 8px;
}
.cliente-depo {
    color: var(--text-soft);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0 16px 18px;
}

/* === WHY (4 vantagens) — IGUAL AO ORIGINAL === */
.why-section { background: #fff; padding: 56px 0; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.why-card { text-align: center; padding: 20px 14px; }
.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-tint);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.why-icon svg { width: 28px; height: 28px; }
.why-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: .3px;
}
.why-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* === INSTAGRAM (CTA) — IGUAL AO ORIGINAL === */
.insta-section {
    background: linear-gradient(135deg, #f9fafb 0%, #eaf2fe 100%);
    padding: 64px 0;
}
.insta-cta { text-align: center; }
.insta-icon-big {
    display: inline-flex;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(34,115,240,.18);
}
.insta-icon-big svg { width: 42px; height: 42px; }
.insta-cta .section-title { margin-bottom: 8px; }
.insta-cta .section-sub { margin-bottom: 24px; }
.insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 28px;
    font-weight: 600;
    font-size: 15px;
    transition: background .2s, transform .2s;
}
.insta-btn:hover { background: var(--primary-hover); color: #fff; transform: translateY(-2px); }

/* Carrossel Instagram (auto-scroll infinito) — igual ao site original */
.insta-gallery {
    width: 100%;
    max-width: 1400px;
    margin: 32px auto 0;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.insta-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: insta-scroll 45s linear infinite;
}
.insta-gallery:hover .insta-track { animation-play-state: paused; }
.insta-slide {
    flex: 0 0 auto;
    width: calc((1400px - 4 * 28px) / 5);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 4px;
    background: #f3f4f6;
}
.insta-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.insta-slide:hover img { transform: scale(1.04); }

@keyframes insta-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 14px)); }
}

@media (max-width: 768px) {
    .insta-gallery { margin-top: 24px; }
    .insta-track { gap: 12px; animation-duration: 40s; }
    .insta-slide { width: calc((100vw - 40px - 12px) / 2); }
    @keyframes insta-scroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 6px)); }
    }
}

/* === FAQ HOME — IGUAL AO ORIGINAL (sem cards, com bordas) === */
.faq-section { background: var(--bg-soft); padding: 56px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border);
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}
.faq-item summary {
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--primary);
    transition: transform .2s;
}
.faq-item[open] summary::after { content: '+'; transform: rotate(45deg); }
.faq-item .faq-body {
    padding: 0 0 18px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
}

/* === LOJA (header + tabs) === */
.shop-header {
    padding: 14px 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.shop-header h1 { font-size: 1.75rem; margin-bottom: 4px; }
.shop-header p { color: var(--text-muted); font-size: 14px; margin: 0; }
.shop-sort { display: flex; align-items: center; gap: 10px; }
.shop-sort label { font-size: 13px; font-weight: 600; color: var(--text-soft); }
.shop-sort select {
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font: inherit;
    background: #fff;
    cursor: pointer;
}

.collection-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    padding-bottom: 0;
    scrollbar-width: none;
}
.collection-tabs::-webkit-scrollbar { display: none; }
.collection-tabs a {
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: color .15s, border-color .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.collection-tabs a:hover { color: var(--text); }
.collection-tabs a.active { color: var(--primary); border-bottom-color: var(--primary); }
.collection-tabs a span {
    background: var(--bg-soft);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    line-height: 1.4;
}
.collection-tabs a.active span { background: var(--primary-tint); color: var(--primary); }

/* === STATIC PAGE (políticas, sobre) === */
.static-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}
.static-page h2 { font-size: 1.75rem; margin-bottom: 20px; }
.static-page h3 { font-size: 1.125rem; margin-top: 28px; margin-bottom: 10px; color: var(--text); }
.static-page p { margin-bottom: 14px; line-height: 1.7; color: var(--text-soft); }
.static-page ul, .static-page ol { padding-left: 20px; margin-bottom: 16px; }
.static-page ul { list-style: disc; }
.static-page ol { list-style: decimal; }
.static-page li { margin-bottom: 6px; color: var(--text-soft); line-height: 1.7; }

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px 0 60px;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 16px; }
.contact-info dl { margin-top: 20px; }
.contact-info dt { font-weight: 700; margin-top: 14px; color: var(--text); }
.contact-info dd { color: var(--text-soft); margin-bottom: 6px; }
.contact-form { background: var(--bg-soft); padding: 28px; border-radius: var(--radius-lg); }
.contact-form .form-row { margin-bottom: 14px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font: inherit;
    background: #fff;
    color: var(--text);
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--primary);
}
.contact-form textarea { resize: vertical; min-height: 110px; }

/* === CART / WISHLIST === */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state svg { width: 64px; height: 64px; margin: 0 auto 20px; color: var(--muted); }
.empty-state h2 { margin-bottom: 8px; }
.empty-state p { margin-bottom: 24px; }

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 20px 0 60px;
}
.cart-list { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 14px;
    background: #fff;
}
.cart-item-img {
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-info h3 { font-size: 14px; margin-bottom: 4px; }
.cart-item-info p { font-size: 12px; color: var(--muted); }
.cart-item-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.cart-item-qty button { width: 32px; height: 32px; font-size: 16px; }
.cart-item-qty input { width: 36px; text-align: center; border: none; background: none; }
.cart-item-price { font-weight: 700; font-size: 16px; min-width: 90px; text-align: right; }
.cart-item-remove { color: var(--muted); padding: 6px; }
.cart-item-remove:hover { color: var(--danger); }

.cart-summary {
    background: var(--bg-soft);
    padding: 24px;
    border-radius: var(--radius-lg);
    height: fit-content;
    position: sticky;
    top: 100px;
}
.cart-summary h3 { margin-bottom: 16px; }
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-soft);
}
.cart-summary-row.total {
    border-top: 1px solid var(--border);
    margin-top: 12px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
}

/* === FOOTER === */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 50px 0 0;
    color: var(--text-soft);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 18px;
    color: var(--text);
}
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col a { color: var(--text-soft); }
.footer-col a:hover { color: var(--primary); }
.footer-brand img { max-height: 60px; max-width: 220px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.footer-col h4.payment-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text);
    margin-top: 22px;
    margin-bottom: 12px;
}
.payment-methods {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
}
.payment-methods img {
    height: 24px;
    width: auto;
    display: block;
    transition: transform .15s;
}
.payment-methods img:hover { transform: translateY(-1px); }

/* === Caixa "Formas de Pagamento" — pagina de produto === */
.zt-payment-box {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin: 12px 0;
    text-align: center;
}
.zt-payment-box .zt-payment-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}
.zt-payment-box .zt-payment-title svg { color: var(--text-muted); flex-shrink: 0; }
.zt-payment-box .zt-payment-cards {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.zt-payment-box .zt-payment-cards img {
    height: 24px;
    width: auto;
    display: block;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 18px 0;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}
.footer-bottom strong { color: var(--text-soft); }

/* === SEARCH OVERLAY === */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, .55);
    z-index: 160;
    opacity: 0;
    transition: opacity .2s;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 16px 16px;
    overflow-y: auto;
}
.search-overlay[hidden] { display: none !important; }
.search-overlay.open { opacity: 1; }
body.search-open { overflow: hidden; }

.search-modal {
    width: 100%;
    max-width: 720px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 96px);
}
.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.search-input-icon { width: 22px; height: 22px; color: var(--muted); flex-shrink: 0; }
#search-input {
    flex: 1;
    border: none;
    outline: none;
    font: inherit;
    font-size: 17px;
    color: var(--text);
    background: transparent;
    padding: 4px 0;
    min-width: 0;
}
#search-input::placeholder { color: var(--muted); }
.search-close {
    color: var(--text-muted);
    padding: 6px;
    border-radius: 50%;
    display: inline-flex;
    transition: background .15s, color .15s;
}
.search-close:hover { background: var(--bg-soft); color: var(--text); }

.search-results {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}
.search-hint {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    padding: 32px 20px;
}
.search-result {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    transition: background .12s;
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { background: var(--bg-soft); }
.search-result-img {
    width: 56px;
    height: 56px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.search-result-img img { width: 100%; height: 100%; object-fit: contain; }
.search-result-body { flex: 1; min-width: 0; }
.search-result-col {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary);
    margin-bottom: 2px;
}
.search-result-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.search-result-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .search-overlay { padding: 16px; }
    .search-modal { border-radius: 10px; max-height: calc(100vh - 32px); }
    #search-input { font-size: 16px; }
    .search-result-img { width: 48px; height: 48px; }
}

/* === CART DRAWER (lateral) === */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, .55);
    z-index: 150;
    opacity: 0;
    transition: opacity .25s;
    cursor: pointer;
}
.cart-drawer-overlay[hidden] { display: none !important; }
.cart-drawer-overlay.open { opacity: 1; }
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 92vw;
    background: #fff;
    z-index: 151;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 32px rgba(0,0,0,.18);
}
.cart-drawer.open { transform: translateX(0); }
body.cart-open { overflow: hidden; }

.cart-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.cart-drawer-head h2 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.cart-drawer-count {
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    min-width: 22px;
    text-align: center;
}
.cart-drawer-close {
    color: var(--text-muted);
    padding: 4px;
    border-radius: 50%;
    transition: background .15s, color .15s;
    display: inline-flex;
}
.cart-drawer-close:hover { background: var(--bg-soft); color: var(--text); }

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.cart-drawer-empty {
    padding: 60px 24px;
    text-align: center;
}
.cart-drawer-empty svg { width: 56px; height: 56px; color: var(--muted); margin: 0 auto 16px; }
.cart-drawer-empty h3 { font-size: 16px; margin-bottom: 6px; }
.cart-drawer-empty p { font-size: 14px; margin-bottom: 22px; }

/* === Banner de brinde (drawer + página do carrinho) === */
.cart-bonus-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 10px;
    padding: 12px 14px;
    margin: 16px 18px 4px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, .15);
}
.cart-bonus-banner svg { color: #b45309; flex-shrink: 0; }
.cart-bonus-text { flex: 1; min-width: 0; line-height: 1.35; }
.cart-bonus-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 2px;
}
.cart-bonus-text small {
    display: block;
    font-size: 11.5px;
    color: #92400e;
    font-weight: 500;
}
.cart-bonus-tag {
    background: #16a34a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    flex-shrink: 0;
}

/* Versão da página do carrinho (não o drawer) */
.cart-bonus-banner-page {
    margin: 0 0 10px;
    padding: 16px 18px;
}
.cart-bonus-banner-page strong { font-size: 14px; }
.cart-bonus-banner-page small { font-size: 12.5px; }

/* Linha discreta de frete grátis (drawer + página) */
.cart-shipping-note {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px 18px 8px;
    padding: 7px 12px;
    background: rgba(34, 197, 94, .08);
    border: 1px solid rgba(34, 197, 94, .25);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #15803d;
    line-height: 1;
}
.cart-shipping-note svg { color: #16a34a; flex-shrink: 0; }
/* Versão da página do carrinho (sem margin lateral) */
#cart-container .cart-shipping-note {
    margin: 0 0 18px;
    padding: 9px 14px;
    font-size: 12.5px;
}

.cart-drawer-item {
    display: grid;
    grid-template-columns: 78px 1fr auto;
    gap: 14px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--border);
    align-items: start;
}
.cart-drawer-item-img {
    width: 78px;
    height: 78px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.cart-drawer-item-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-drawer-item-info { min-width: 0; }
.cart-drawer-item-info h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 4px;
    color: var(--text);
}
.cart-drawer-item-info .meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.cart-drawer-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}
.cart-drawer-qty button {
    width: 26px;
    height: 26px;
    font-size: 14px;
    color: var(--text);
    transition: background .15s;
}
.cart-drawer-qty button:hover { background: var(--bg-soft); }
.cart-drawer-qty input {
    width: 30px;
    height: 26px;
    text-align: center;
    border: none;
    background: none;
    font: inherit;
    font-size: 13px;
    color: var(--text);
    -moz-appearance: textfield;
}
.cart-drawer-qty input::-webkit-outer-spin-button,
.cart-drawer-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cart-drawer-item-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: 10px;
}
.cart-drawer-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}
.cart-drawer-item-rm {
    color: var(--muted);
    padding: 2px;
    transition: color .15s;
    display: inline-flex;
}
.cart-drawer-item-rm:hover { color: var(--danger); }

.cart-drawer-foot {
    border-top: 1px solid var(--border);
    padding: 18px 22px 20px;
    background: #fff;
    flex-shrink: 0;
}
.cart-drawer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 8px;
}
.cart-drawer-row strong { color: var(--text); font-size: 16px; }
.cart-drawer-row.cart-drawer-pix { color: var(--success); margin-bottom: 14px; }
.cart-drawer-row.cart-drawer-pix strong { color: var(--success); }
.cart-drawer-foot .btn { margin-bottom: 10px; }
.cart-drawer-foot .btn:last-child { margin-bottom: 0; }

@media (max-width: 480px) {
    .cart-drawer { width: 380px; max-width: 92vw; }
    .cart-drawer-head { padding: 14px 16px; }
    .cart-drawer-item { padding: 12px 16px; gap: 10px; grid-template-columns: 64px 1fr auto; }
    .cart-drawer-item-img { width: 64px; height: 64px; }
    .cart-drawer-foot { padding: 14px 16px 16px; }
}

/* Toast */
.toast {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--text);
    color: #fff;
    padding: 14px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    z-index: 200;
    transition: transform .25s;
    box-shadow: var(--shadow);
    pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .clientes-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .product-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .header-inner { padding: 12px 16px; min-height: 70px; }
    .brand img { max-height: 56px; }
    .main-nav { gap: 18px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: inline-flex; }
    .header-actions { gap: 4px; }
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 90px 24px;
        gap: 0;
        z-index: 99;
        transform: translateX(-100%);
        transition: transform .25s;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav a {
        font-size: 18px;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }
    .menu-toggle.open { z-index: 100; position: relative; }
    .brand img { max-height: 44px; max-width: 200px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-card-title { font-size: 13px; }
    .product-card-price { font-size: 16px; }
    .clientes-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .section { padding: 40px 0; }
    .clientes-section, .why-section, .faq-section { padding: 40px 0; }
    .insta-section { padding: 48px 0; }
    .section-title { font-size: 22px; }
    h1 { font-size: 1.5rem; }
    .product-info h1 { font-size: 1.4rem; }
    .price-now { font-size: 1.6rem; }
    .product-actions .btn { min-width: unset; flex-basis: 100%; }
    .cart-item { grid-template-columns: 80px 1fr; gap: 12px; }
    .cart-item-qty, .cart-item-price, .cart-item-remove { grid-column: 2 / 3; }
}

@media (max-width: 480px) {
    .clientes-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
}
