/* =========================================================
   ANSELMO MINIS — Page-specific styles
   produto.html · garagem.html · checkout.html
   ========================================================= */

/* Green CTA (shared) */
:root {
    --green-1: #22c55e;
    --green-2: #16a34a;
    --green-3: #15803d;
    --green-glow: rgba(34, 197, 94, 0.55);
}

.btn-buy-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #34e57a 0%, #22c55e 40%, #16a34a 100%);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    box-shadow:
        0 0 0 2px rgba(34, 197, 94, 0.15),
        0 8px 35px var(--green-glow),
        0 0 45px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.15);
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-buy-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s;
}
.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 3px rgba(34, 197, 94, 0.2),
        0 12px 45px var(--green-glow),
        0 0 60px rgba(34, 197, 94, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-buy-now:hover::before { left: 100%; }
.btn-buy-now i {
    font-size: 16px;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}
.btn-buy-now.full-width { width: 100%; padding: 18px 30px; font-size: 16px; }

@keyframes green-pulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.15), 0 8px 35px var(--green-glow), 0 0 45px rgba(34,197,94,0.4), inset 0 1px 0 rgba(255,255,255,0.25); }
    50%      { box-shadow: 0 0 0 4px rgba(34,197,94,0.25), 0 8px 35px var(--green-glow), 0 0 70px rgba(34,197,94,0.6), inset 0 1px 0 rgba(255,255,255,0.25); }
}
.btn-buy-now { animation: green-pulse 2.4s ease-in-out infinite; }

/* ===== Page wrapper ===== */
.page { padding-top: 20px; padding-bottom: 40px; }

/* ===== Breadcrumb ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0 20px;
    font-size: 13px;
    color: var(--text-mut);
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-dim); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red-1); }
.breadcrumb i { font-size: 9px; color: var(--text-mut); }
.breadcrumb span { color: #fff; font-weight: 500; }

/* =========================================================
   PRODUTO
   ========================================================= */
.product-section { margin-top: 10px; }

.product-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.product-gallery { position: sticky; top: 210px; }

.gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
}
.gallery-image.main-img { transform: scale(1.1); }

.gallery-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
}

.gallery-zoom {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 5;
    color: var(--text-dim);
}
.gallery-zoom:hover { color: #fff; }

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.thumb {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s var(--ease);
    position: relative;
}
.thumb.active { border-color: rgba(255, 26, 26, 0.6); box-shadow: 0 0 0 2px rgba(255,26,26,0.25); }
.thumb:hover { transform: translateY(-2px); border-color: rgba(255, 26, 26, 0.4); }
.thumb-img { width: 100%; height: 100%; position: relative; }

/* Product info */
.product-info-col { padding: 0; }

.info-brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.brand-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(255, 26, 26, 0.12);
    border: 1px solid rgba(255, 26, 26, 0.3);
    color: #ff6b6b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.info-sku { font-size: 11px; color: var(--text-mut); }

.product-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}
.product-rating i { color: #ffd23a; font-size: 12px; }
.product-rating span { font-weight: 700; color: #fff; margin-left: 4px; }
.product-rating a { color: var(--text-dim); text-decoration: underline; }

.stock-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--green-1);
}
.stock-indicator i { font-size: 7px; }

.price-block {
    padding: 20px 22px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}
.price-old { font-size: 13px; color: var(--text-mut); margin-bottom: 4px; }
.price-old s { color: var(--text-mut); }
.price-current {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}
.price-currency { font-size: 16px; font-weight: 600; color: var(--text-dim); }
.price-value {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}
.price-save {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--red-1), var(--red-2));
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.price-installments {
    font-size: 13px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.price-installments i { color: var(--text-mut); }
.price-installments strong { color: #fff; }
.price-pix {
    font-size: 13px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-soft);
}
.price-pix i { color: #32bcad; font-size: 14px; }
.price-pix strong { color: var(--green-1); }
.price-pix span { color: var(--green-1); font-weight: 700; }

.variant-group { margin-bottom: 22px; }
.variant-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-opt {
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-soft);
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
}
.variant-opt:hover { border-color: var(--border-med); color: #fff; }
.variant-opt.active {
    background: rgba(255, 26, 26, 0.15);
    border-color: rgba(255, 26, 26, 0.5);
    color: #fff;
}

.qty-buy-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    align-items: stretch;
}

.qty-selector {
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 999px;
    gap: 0;
}
.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s;
}
.qty-btn:hover { color: #fff; background: rgba(255,255,255,0.05); }
.qty-input {
    width: 40px;
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    outline: none;
    -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.buy-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-add-cart {
    flex: 1;
    padding: 13px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red-1), var(--red-2));
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-red);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}
.btn-add-cart:hover { transform: translateY(-1px); }

.btn-icon-lg {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-soft);
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
    cursor: pointer;
}
.btn-icon-lg:hover { color: var(--red-1); border-color: rgba(255,26,26,0.3); }

.shipping-box {
    padding: 18px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}
.shipping-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}
.shipping-head i { color: var(--red-1); }
.shipping-form {
    display: flex;
    gap: 8px;
}
.shipping-input {
    flex: 1;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-soft);
    color: #fff;
    font-size: 13px;
    outline: none;
}
.shipping-input:focus { border-color: rgba(255,26,26,0.3); }
.shipping-btn {
    padding: 11px 22px;
    border-radius: 999px;
    background: rgba(255, 26, 26, 0.15);
    border: 1px solid rgba(255, 26, 26, 0.4);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.shipping-btn:hover { background: rgba(255, 26, 26, 0.25); }
.shipping-help {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--red-1);
    text-decoration: underline;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 10px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-dim);
}
.trust-item i { color: var(--green-1); font-size: 14px; }

/* Tabs */
.product-tabs-section { margin-top: 40px; }

.tabs-nav {
    display: flex;
    gap: 4px;
    padding: 6px;
    border-radius: 999px;
    margin-bottom: 24px;
    overflow-x: auto;
}
.tab-btn {
    padding: 10px 22px;
    border-radius: 999px;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}
.tab-btn:hover { color: #fff; }
.tab-btn.active {
    background: linear-gradient(135deg, var(--red-1), var(--red-2));
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,26,26,0.35);
}

.tab-content {
    display: none;
    padding: 20px 0;
    animation: fadeIn 0.3s ease;
}
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.desc-text h2 { font-size: 20px; font-weight: 800; margin-bottom: 14px; color: #fff; }
.desc-text h3 { font-size: 16px; font-weight: 700; margin-top: 22px; margin-bottom: 12px; color: #fff; }
.desc-text p { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 14px; }
.desc-text strong { color: #fff; }

.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dim);
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
}
.feature-list i { color: var(--green-1); font-size: 12px; }

.specs-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 700px;
}
.specs-table tr { border-bottom: 1px solid var(--border-soft); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table th {
    text-align: left;
    padding: 14px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    width: 40%;
}
.specs-table td {
    padding: 14px 0;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

/* Reviews */
.reviews-summary {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    align-items: center;
    padding: 26px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}
.rev-avg { text-align: center; }
.rev-big { font-size: 52px; font-weight: 900; color: #fff; line-height: 1; }
.rev-stars { margin: 10px 0; color: #ffd23a; font-size: 14px; }
.rev-count { font-size: 12px; color: var(--text-dim); }
.rev-bars { display: flex; flex-direction: column; gap: 8px; }
.rev-bar-row {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    gap: 12px;
    align-items: center;
    font-size: 12px;
    color: var(--text-dim);
}
.rev-bar-row span { display: inline-flex; align-items: center; gap: 4px; }
.rev-bar-row i { color: #ffd23a; font-size: 10px; }
.rev-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.rev-bar-fill { height: 100%; background: linear-gradient(90deg, var(--red-1), var(--red-2)); border-radius: 3px; }

.reviews-list { display: flex; flex-direction: column; gap: 14px; }
.review { padding: 22px; border-radius: var(--radius-md); }
.review-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-1), var(--red-2));
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reviewer strong { display: block; font-size: 14px; color: #fff; }
.reviewer-date { font-size: 11px; color: var(--text-mut); }
.review-stars { color: #ffd23a; font-size: 13px; }
.review h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: #fff; }
.review p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }

/* =========================================================
   GARAGEM — door animation + collection
   ========================================================= */

.garage-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: auto;
}
.garage-overlay.hiding {
    animation: garageFadeOut 0.6s ease 0.2s forwards;
    pointer-events: none;
}
@keyframes garageFadeOut {
    to { opacity: 0; visibility: hidden; }
}

.garage-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 30%, #2a0606 0%, #0a0202 60%, #000 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.garage-sign {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 500px;
}
.garage-sign-logo {
    height: 90px;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 30px rgba(255, 26, 26, 0.8));
    animation: logoGlow 2s ease-in-out infinite;
}
@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 26, 26, 0.6)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 26, 26, 1)); }
}

.garage-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 26, 26, 0.5);
}
.garage-subtitle {
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.garage-progress {
    width: 240px;
    height: 4px;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.garage-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red-1), var(--red-2));
    width: 0;
    animation: progressFill 2.8s cubic-bezier(.2,.7,.2,1) forwards;
    box-shadow: 0 0 12px rgba(255, 26, 26, 0.7);
}
@keyframes progressFill {
    0% { width: 0; }
    100% { width: 100%; }
}

/* GARAGE DOOR */
.garage-door {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background:
        linear-gradient(180deg, #181818 0%, #0a0a0a 100%);
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    animation: doorOpen 2.4s cubic-bezier(.6,.05,.2,.95) 1.2s forwards;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
@keyframes doorOpen {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

.garage-door-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 6px;
    gap: 6px;
    background:
        linear-gradient(90deg,
            rgba(0,0,0,0.3) 0%,
            transparent 5%,
            transparent 95%,
            rgba(0,0,0,0.3) 100%);
}
.panel-row {
    flex: 1;
    background:
        linear-gradient(180deg,
            rgba(255,255,255,0.08) 0%,
            rgba(255,255,255,0.02) 30%,
            rgba(0,0,0,0.2) 100%),
        linear-gradient(135deg, #252525, #0f0f0f);
    border-radius: 4px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 2px solid rgba(0,0,0,0.5);
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.panel-row::before,
.panel-row::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, #444, #111);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.panel-row::before { left: 12px; }
.panel-row::after { right: 12px; }

.garage-handle {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 14px;
    background: linear-gradient(180deg, #888 0%, #444 50%, #222 100%);
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Garage interior visible behind door */
.garage-interior {
    position: absolute;
    inset: 0;
    z-index: 5;
    background:
        linear-gradient(180deg, #0a0a0a 0%, #050505 60%, #000 100%);
    overflow: hidden;
}
.garage-light {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 30px;
    background: linear-gradient(180deg, #eee 0%, #aaa 100%);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.8);
}
.garage-light-glow {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 70%;
    background: radial-gradient(ellipse at top, rgba(255, 240, 200, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.garage-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%),
        repeating-linear-gradient(90deg, #1a1a1a 0, #1a1a1a 38px, #101010 38px, #101010 40px),
        repeating-linear-gradient(0deg, #1a1a1a 0, #1a1a1a 38px, #101010 38px, #101010 40px);
    transform: perspective(600px) rotateX(55deg);
    transform-origin: top;
}

/* GARAGE PAGE (after overlay) */
.garage-page { opacity: 0; animation: pageReveal 0.8s ease 3.4s forwards; }
@keyframes pageReveal { to { opacity: 1; } }

.garage-hero {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 40px 40px;
    margin-top: 10px;
    min-height: 160px;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(255, 26, 26, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 50%, rgba(255, 26, 26, 0.12) 0%, transparent 55%),
        linear-gradient(135deg, #1a0505 0%, #0a0303 100%);
    border: 1px solid var(--border-soft);
}
.garage-hero-bg {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent 0, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px),
        repeating-linear-gradient(90deg, transparent 0, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
    pointer-events: none;
}
.garage-hero-content { position: relative; z-index: 2; }
.garage-hero-content .hero-badge { margin-bottom: 12px; }
.garage-hero-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #fff;
}
.garage-hero-sub { font-size: 14px; color: var(--text-dim); max-width: 600px; }

/* Stats */
.garage-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.stat-card {
    padding: 20px 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform 0.25s var(--ease);
}
.stat-card:hover { transform: translateY(-2px); }
.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-soft);
    color: var(--text-dim);
    flex-shrink: 0;
}
.stat-icon.red { background: rgba(255, 26, 26, 0.15); border-color: rgba(255, 26, 26, 0.3); color: #ff6b6b; }
.stat-icon.yellow { background: rgba(255, 210, 58, 0.15); border-color: rgba(255, 210, 58, 0.3); color: #ffd23a; }
.stat-icon.green { background: rgba(34, 197, 94, 0.15); border-color: rgba(34, 197, 94, 0.3); color: var(--green-1); }
.stat-body { display: flex; flex-direction: column; gap: 2px; }
.stat-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-value { font-size: 26px; font-weight: 800; color: #fff; line-height: 1.1; }
.stat-delta { font-size: 11px; color: var(--text-mut); margin-top: 2px; }
.stat-delta.up { color: var(--green-1); }
.stat-delta i { font-size: 9px; }

/* Toolbar */
.garage-toolbar {
    margin-top: 24px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.toolbar-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.toolbar-tab {
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
    transition: all 0.2s;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.toolbar-tab:hover { color: #fff; background: rgba(255,255,255,0.04); }
.toolbar-tab.active {
    background: linear-gradient(135deg, var(--red-1), var(--red-2));
    color: #fff;
    box-shadow: 0 3px 12px rgba(255,26,26,0.3);
}
.toolbar-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.toolbar-search {
    position: relative;
    display: flex;
    align-items: center;
}
.toolbar-search i {
    position: absolute;
    left: 14px;
    color: var(--text-mut);
    font-size: 13px;
}
.toolbar-search input {
    padding: 9px 14px 9px 36px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-soft);
    color: #fff;
    font-size: 13px;
    outline: none;
    width: 200px;
}
.toolbar-select {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-soft);
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    outline: none;
}
.toolbar-view {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-soft);
    color: var(--text-dim);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}
.toolbar-view.active, .toolbar-view:hover { color: #fff; background: rgba(255,26,26,0.12); border-color: rgba(255,26,26,0.3); }

/* Collection grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.coll-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s var(--ease);
}
.coll-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,26,26,0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,26,26,0.12);
}
.coll-card .product-image { height: 160px; }

.coll-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-soft);
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 3;
    cursor: pointer;
    transition: all 0.2s;
}
.coll-fav.active { color: var(--red-1); }
.coll-fav:hover { transform: scale(1.1); }

.coll-info { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.coll-info h3 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.coll-info .product-brand { font-size: 11px; color: var(--text-dim); margin-bottom: 10px; }

.coll-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
}
.coll-date { font-size: 10px; color: var(--text-mut); display: inline-flex; align-items: center; gap: 4px; }
.coll-date i { font-size: 10px; }
.coll-price { font-size: 14px; font-weight: 700; color: #fff; }

.coll-condition {
    font-size: 11px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--border-soft);
}
.cond-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-1);
    box-shadow: 0 0 8px var(--green-1);
}
.cond-dot.opened { background: #ffd23a; box-shadow: 0 0 8px #ffd23a; }

/* Add new card */
.coll-card.add-new {
    border: 2px dashed rgba(255, 26, 26, 0.25);
    background: rgba(255, 26, 26, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    transition: all 0.25s var(--ease);
}
.coll-card.add-new:hover {
    border-color: rgba(255, 26, 26, 0.5);
    background: rgba(255, 26, 26, 0.04);
    transform: translateY(-2px);
}
.add-new-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    width: 100%;
    height: 100%;
}
.add-new-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-1), var(--red-2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(255,26,26,0.4);
}
.add-new-link strong { font-size: 14px; color: #fff; margin-bottom: 4px; }
.add-new-link span { font-size: 12px; color: var(--text-dim); }

.section-sub { font-size: 13px; color: var(--text-dim); margin-top: -15px; margin-bottom: 20px; }

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

.checkout-header {
    position: relative;
    top: auto;
}
.checkout-h {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.btn-back-shop {
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 12px;
    color: var(--text-dim);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-back-shop:hover { color: #fff; }

.checkout-page { padding-top: 30px; }

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    margin-bottom: 30px;
    list-style: none;
    background: rgba(20, 20, 24, 0.4);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-mut);
    font-size: 12px;
    font-weight: 500;
    min-width: 70px;
}
.step.active { color: #fff; }
.step.completed { color: var(--green-1); }
.step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255,255,255,0.05);
    border: 2px solid var(--border-soft);
    color: var(--text-mut);
}
.step.active .step-circle {
    background: linear-gradient(135deg, var(--red-1), var(--red-2));
    color: #fff;
    border-color: rgba(255, 26, 26, 0.5);
    box-shadow: 0 0 0 4px rgba(255,26,26,0.15), 0 4px 15px rgba(255,26,26,0.4);
}
.step.completed .step-circle {
    background: linear-gradient(135deg, var(--green-1), var(--green-2));
    color: #fff;
    border-color: rgba(34, 197, 94, 0.5);
}
.step-line {
    flex: 1;
    height: 2px;
    background: var(--border-soft);
    margin: 0 4px;
    margin-bottom: 24px;
    border-radius: 2px;
    position: relative;
    top: -14px;
}
.step-line.completed {
    background: linear-gradient(90deg, var(--green-1), var(--green-2));
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 28px;
    align-items: flex-start;
}

.checkout-forms { display: flex; flex-direction: column; gap: 20px; }

.form-card {
    padding: 26px 28px;
    border-radius: var(--radius-md);
}

.form-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}
.form-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-1), var(--red-2));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255,26,26,0.3);
}

.form-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-top: 22px;
    margin-bottom: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
}
.form-field input,
.form-field select,
.form-field textarea {
    padding: 11px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-soft);
    color: #fff;
    font-size: 13px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus { border-color: rgba(255,26,26,0.4); box-shadow: 0 0 0 3px rgba(255,26,26,0.08); }
.form-field select { cursor: pointer; }

.cep-wrap { display: flex; align-items: center; gap: 10px; }
.cep-wrap input { flex: 1; }
.cep-link { font-size: 11px; color: var(--red-1); text-decoration: underline; white-space: nowrap; }

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-dim);
    cursor: pointer;
}
.form-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--red-1);
    cursor: pointer;
}

/* Shipping options */
.shipping-options { display: flex; flex-direction: column; gap: 10px; }
.shipping-opt {
    display: grid;
    grid-template-columns: auto 36px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.shipping-opt:hover { background: rgba(255,255,255,0.04); }
.shipping-opt.active { border-color: rgba(255, 26, 26, 0.5); background: rgba(255,26,26,0.06); box-shadow: 0 0 0 3px rgba(255,26,26,0.05); }
.shipping-opt input { accent-color: var(--red-1); }
.ship-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--text-dim);
}
.shipping-opt.active .ship-icon { background: rgba(255,26,26,0.15); color: var(--red-1); }
.ship-info strong { display: block; font-size: 13px; color: #fff; margin-bottom: 2px; }
.ship-info span { font-size: 11px; color: var(--text-dim); }
.ship-price { font-size: 14px; font-weight: 700; color: #fff; }
.free-tag { color: var(--green-1) !important; }

/* Payment tabs */
.payment-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
.pay-tab {
    padding: 16px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-soft);
    color: var(--text-dim);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.pay-tab i { font-size: 22px; margin-bottom: 4px; }
.pay-tab strong { font-size: 13px; font-weight: 700; }
.pay-tab span { font-size: 10px; color: var(--text-mut); }
.pay-tab:hover { background: rgba(255,255,255,0.05); }
.pay-tab.active {
    background: rgba(255, 26, 26, 0.1);
    border-color: rgba(255, 26, 26, 0.5);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(255,26,26,0.08);
}
.pay-tab.active i { color: var(--red-1); }

.pay-content { display: none; }
.pay-content.active { display: block; animation: fadeIn 0.3s ease; }

.pix-info {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    align-items: center;
}
.pix-qr {
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 10px;
    padding: 14px;
}
.pix-qr-placeholder {
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(90deg, #000 0, #000 3px, transparent 3px, transparent 6px),
        repeating-linear-gradient(0deg, #000 0, #000 3px, transparent 3px, transparent 6px);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #32bcad;
    position: relative;
}
.pix-qr-placeholder i {
    background: #fff;
    padding: 8px;
    border-radius: 8px;
}
.pix-text strong { display: block; font-size: 15px; color: #fff; margin-bottom: 8px; }
.pix-text p { font-size: 13px; color: var(--text-dim); line-height: 1.5; margin-bottom: 12px; }
.pix-discount {
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pix-discount span { font-size: 13px; color: var(--text-dim); }
.pix-discount strong { color: var(--green-1); font-size: 18px; margin: 0; }

.boleto-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}
.boleto-info i { font-size: 48px; color: var(--text-dim); margin-bottom: 14px; }
.boleto-info strong { font-size: 16px; color: #fff; margin-bottom: 8px; }
.boleto-info p { font-size: 13px; color: var(--text-dim); max-width: 400px; line-height: 1.6; }

/* Summary */
.checkout-summary { position: sticky; top: 160px; }

.summary-card { padding: 24px; border-radius: var(--radius-md); }

.summary-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-soft);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
    max-height: 280px;
    overflow-y: auto;
}
.summary-items::-webkit-scrollbar { width: 4px; }
.summary-items::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.sum-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    align-items: center;
}
.sum-img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}
.sum-details { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sum-details strong { font-size: 13px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sum-details span { font-size: 11px; color: var(--text-dim); }
.sum-qty { font-size: 11px !important; color: var(--text-mut) !important; }
.sum-price { font-size: 14px; font-weight: 700; color: #fff; }

.coupon-box {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}
.coupon-box input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-soft);
    color: #fff;
    font-size: 13px;
    outline: none;
}
.coupon-btn {
    padding: 10px 18px;
    border-radius: 10px;
    background: rgba(255, 26, 26, 0.15);
    border: 1px solid rgba(255, 26, 26, 0.4);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.sum-totals {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 0;
    margin-bottom: 18px;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.sum-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-dim); }
.sum-row.discount span:last-child { color: var(--green-1); font-weight: 700; }
.sum-row.total {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border-soft);
    font-size: 14px;
    color: #fff;
}
.sum-row.total strong { font-size: 22px; color: #fff; font-weight: 900; }
.sum-installments { font-size: 11px; color: var(--text-mut); text-align: right; margin-top: -2px; }

.btn-buy-now.full-width { margin-top: 4px; margin-bottom: 18px; }

.security-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-soft);
}
.sec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: 10px;
    color: var(--text-dim);
    line-height: 1.2;
}
.sec-item i { font-size: 17px; color: var(--green-1); }

.payment-icons-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    color: var(--text-mut);
}

.checkout-footer { padding: 0; margin-top: 30px; border-top: 1px solid var(--border-soft); }
.checkout-footer .footer-bottom p a { color: var(--text-dim); }
.checkout-footer .footer-bottom p a:hover { color: var(--red-1); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .product-layout { grid-template-columns: 1fr; gap: 30px; }
    .product-gallery { position: static; }
    .gallery-thumbs { grid-template-columns: repeat(5, 1fr); }

    .garage-stats { grid-template-columns: repeat(2, 1fr); }
    .collection-grid { grid-template-columns: repeat(3, 1fr); }

    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
    .checkout-steps { padding: 16px 12px; overflow-x: auto; }
}

@media (max-width: 720px) {
    .product-layout { gap: 24px; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
    .thumb:nth-child(5) { display: none; }
    .product-title { font-size: 22px; }
    .qty-buy-row { flex-direction: column; }
    .qty-selector { align-self: flex-start; }
    .btn-buy-now { width: 100%; }
    .buy-actions { flex-wrap: wrap; }
    .btn-add-cart { flex: 1 1 100%; order: -1; }
    .trust-row { grid-template-columns: 1fr; gap: 6px; }
    .reviews-summary { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .rev-avg { display: flex; flex-direction: column; align-items: center; }

    .garage-hero { padding: 24px 20px; }
    .garage-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-card { padding: 14px; gap: 10px; }
    .stat-value { font-size: 20px; }
    .garage-toolbar { padding: 12px; gap: 10px; }
    .toolbar-actions { width: 100%; }
    .toolbar-search input { flex: 1; width: 100%; }
    .collection-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .coll-card .product-image { height: 130px; }
    .coll-info { padding: 12px; }
    .coll-info h3 { font-size: 13px; }
    .coll-meta { flex-direction: column; align-items: flex-start; gap: 4px; }

    .checkout-steps { padding: 12px 8px; }
    .step { font-size: 10px; min-width: 50px; }
    .step span { display: none; }
    .step.active span { display: inline; }
    .step-circle { width: 28px; height: 28px; font-size: 11px; }
    .checkout-h { display: none; }
    .form-card { padding: 18px; }
    .form-grid { grid-template-columns: 1fr; }
    .payment-tabs { grid-template-columns: 1fr; }
    .pix-info { grid-template-columns: 1fr; text-align: center; }
    .pix-qr { max-width: 180px; margin: 0 auto; }

    .garage-sign-logo { height: 60px; }
    .garage-title { font-size: 26px; letter-spacing: 2px; }
}

@media (max-width: 380px) {
    .collection-grid { grid-template-columns: 1fr; }
    .garage-stats { grid-template-columns: 1fr; }
}

/* =========================================================
   GARAGE IMMERSIVE ENVIRONMENT (v2)
   — page as garage interior with walls, neon, logo on wall
   ========================================================= */

body.body-garagem {
    background: #000;
    background-image: none;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Environment wrapper — fills the viewport and scrolls */
.garage-environment {
    position: relative;
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 50% 20%, #1a0404 0%, #0a0202 35%, #000 70%),
        #000;
    overflow: hidden;
    padding: 32px 60px 60px;
    opacity: 0;
    animation: pageReveal 0.8s ease 3.2s forwards;
}

/* Back wall */
.garage-back-wall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    z-index: 0;
    background:
        linear-gradient(180deg, #0a0a0d 0%, #050507 60%, transparent 100%);
    pointer-events: none;
    overflow: hidden;
}
.garage-back-wall .wall-texture {
    position: absolute;
    inset: 0;
    background:
        /* horizontal concrete lines */
        repeating-linear-gradient(0deg,
            transparent 0,
            transparent 60px,
            rgba(255,255,255,0.02) 60px,
            rgba(255,255,255,0.02) 61px),
        /* vertical concrete seams */
        repeating-linear-gradient(90deg,
            transparent 0,
            transparent 180px,
            rgba(0,0,0,0.25) 180px,
            rgba(0,0,0,0.25) 182px),
        /* grain noise */
        radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 70%);
}
.garage-back-wall .wall-texture::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(255, 26, 26, 0.18) 0%, transparent 50%);
    pointer-events: none;
}

/* Big logo on back wall */
.wall-logo {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(200px, 28vw, 420px);
    opacity: 0.25;
    filter: drop-shadow(0 0 40px rgba(255, 26, 26, 0.6));
    pointer-events: none;
    animation: wallLogoGlow 4s ease-in-out infinite;
}
@keyframes wallLogoGlow {
    0%, 100% { opacity: 0.22; filter: drop-shadow(0 0 30px rgba(255, 26, 26, 0.5)); }
    50% { opacity: 0.32; filter: drop-shadow(0 0 60px rgba(255, 26, 26, 0.9)); }
}

.wall-emblem {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(10px, 1vw, 14px);
    font-weight: 700;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.18);
    white-space: nowrap;
    text-shadow: 0 0 15px rgba(255, 26, 26, 0.3);
    pointer-events: none;
}

/* Side walls with neon bars */
.garage-side-wall {
    position: fixed;
    top: 0;
    width: 32px;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}
.garage-side-wall.left { left: 0; }
.garage-side-wall.right { right: 0; }

.garage-side-wall .wall-texture {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #0a0a0c, #050505);
    box-shadow:
        inset 0 0 30px rgba(0,0,0,0.8);
}
.garage-side-wall.left .wall-texture {
    background: linear-gradient(90deg, #0f0607 0%, #050303 100%);
    box-shadow: inset -8px 0 20px rgba(0,0,0,0.7);
}
.garage-side-wall.right .wall-texture {
    background: linear-gradient(90deg, #050303 0%, #0f0607 100%);
    box-shadow: inset 8px 0 20px rgba(0,0,0,0.7);
}

/* Neon tube */
.neon-bar {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 84%;
}
.neon-tube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        #ff4040 0%,
        #ff1a1a 50%,
        #ff4040 100%);
    border-radius: 4px;
    box-shadow:
        0 0 6px #ff1a1a,
        0 0 15px #ff1a1a,
        0 0 30px rgba(255, 26, 26, 0.8),
        0 0 60px rgba(255, 26, 26, 0.4);
    animation: neonFlicker 6s ease-in-out infinite;
}
.neon-glow {
    position: absolute;
    top: -10px;
    left: -40px;
    width: 80px;
    height: calc(100% + 20px);
    background: radial-gradient(ellipse at center, rgba(255, 26, 26, 0.55) 0%, rgba(255, 26, 26, 0.15) 40%, transparent 70%);
    filter: blur(15px);
    animation: neonFlicker 6s ease-in-out infinite;
}
@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    47% { opacity: 1; }
    48% { opacity: 0.7; }
    49% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.85; }
    94% { opacity: 1; }
}

/* Ceiling with overhead lights */
.garage-ceiling {
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 38px;
    z-index: 2;
    background:
        linear-gradient(180deg, #050507 0%, #0a0a0d 50%, transparent 100%);
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding-top: 14px;
    pointer-events: none;
}
.ceiling-light {
    width: 80px;
    height: 6px;
    background: linear-gradient(180deg, #ccc, #888 50%, #444);
    border-radius: 2px;
    box-shadow:
        0 4px 30px rgba(255, 230, 180, 0.2),
        0 2px 10px rgba(0,0,0,0.6);
    position: relative;
}
.ceiling-light::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -60px;
    width: 200px;
    height: 140px;
    background: radial-gradient(ellipse at top, rgba(255, 240, 210, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

/* Floor with perspective */
.garage-floor-real {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30vh;
    z-index: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 70%, #000 100%),
        repeating-linear-gradient(90deg, #0f0f12 0, #0f0f12 80px, #050507 80px, #050507 82px),
        repeating-linear-gradient(0deg, #0f0f12 0, #0f0f12 80px, #050507 80px, #050507 82px);
    transform: perspective(900px) rotateX(62deg);
    transform-origin: top;
    pointer-events: none;
    opacity: 0.6;
}
.garage-floor-real::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 26, 26, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* VOLTAR PARA O SITE button */
.btn-back-site {
    position: fixed;
    top: 24px;
    left: 54px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%),
                rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 26, 26, 0.35);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow:
        0 4px 20px rgba(0,0,0,0.5),
        0 0 25px rgba(255, 26, 26, 0.2),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.25s var(--ease);
    opacity: 0;
    animation: pageReveal 0.8s ease 3.4s forwards;
}
.btn-back-site:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 26, 26, 0.6);
    box-shadow:
        0 6px 25px rgba(0,0,0,0.6),
        0 0 35px rgba(255, 26, 26, 0.5),
        inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-back-site i {
    font-size: 11px;
    color: var(--red-1);
}

/* User corner (top-right) */
.garage-user {
    position: fixed;
    top: 24px;
    right: 54px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px 8px 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%),
                rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    animation: pageReveal 0.8s ease 3.4s forwards;
}
.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-1), var(--red-2));
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.5);
}
.user-info { display: flex; flex-direction: column; line-height: 1.1; }
.user-greet { font-size: 10px; color: var(--text-dim); }
.user-info strong { font-size: 13px; color: #fff; }

/* Main content inside garage */
.garage-main {
    position: relative;
    z-index: 3;
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.garage-panel.welcome-panel {
    padding: 36px 40px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(ellipse at 0% 50%, rgba(255, 26, 26, 0.18) 0%, transparent 55%),
        linear-gradient(135deg, rgba(20, 8, 8, 0.85) 0%, rgba(10, 4, 4, 0.9) 100%);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid rgba(255, 26, 26, 0.2);
    box-shadow:
        0 15px 50px rgba(0,0,0,0.6),
        0 0 30px rgba(255, 26, 26, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.garage-panel.welcome-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(255, 26, 26, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.welcome-panel .hero-badge { margin-bottom: 14px; }
.welcome-panel .garage-hero-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.1;
}
.welcome-panel .garage-hero-sub { color: var(--text-dim); max-width: 620px; font-size: 14px; }

/* Section wrappers inside garage — remove container padding */
.garage-main > section { padding: 0; margin: 0; }

/* Garage section headers */
.garage-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 16px;
    flex-wrap: wrap;
}
.garage-section-head h2 {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}
.garage-section-head h2 i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,26,26,0.2), rgba(138,0,0,0.15));
    border: 1px solid rgba(255, 26, 26, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--red-1);
}
.garage-section-head .count-pill {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-soft);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
}

/* Section divider rail (neon strip) */
.garage-rail {
    height: 1px;
    margin: 20px 0;
    background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.4), transparent);
    box-shadow: 0 0 12px rgba(255, 26, 26, 0.4);
}

/* Transit card style */
.coll-card.in-transit {
    position: relative;
    border-color: rgba(251, 191, 36, 0.25);
}
.coll-card.in-transit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    z-index: 4;
}
.transit-status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1a0f00;
    z-index: 3;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 3px 12px rgba(251, 191, 36, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.transit-status i { font-size: 10px; }
.transit-status.preparing { background: linear-gradient(135deg, #94a3b8, #64748b); color: #fff; }
.transit-status.shipped { background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff; }
.transit-status.out-for-delivery { background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; }

.transit-tracking {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid var(--border-soft);
    font-size: 11px;
}
.transit-tracking .eta { color: var(--text-dim); display: inline-flex; align-items: center; gap: 6px; }
.transit-tracking .eta i { color: #fbbf24; }
.transit-tracking .track-btn {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}
.transit-tracking .track-btn:hover { background: rgba(251, 191, 36, 0.25); }

/* Progress bar for transit */
.transit-progress {
    padding-top: 10px;
    margin-top: 8px;
    border-top: 1px solid var(--border-soft);
}
.transit-progress-bar {
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}
.transit-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
    position: relative;
}
.transit-progress-fill::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow: 0 0 10px #fbbf24;
}
.transit-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: var(--text-mut);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Suggestions section */
.garage-suggestions { margin-top: 20px; }
.garage-suggestions .section-title { font-size: 14px; margin-bottom: 6px; }

/* Signature on floor */
.garage-signature {
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 26, 26, 0.2);
    position: relative;
}
.garage-signature::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.8), transparent);
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.6);
}
.garage-signature img {
    height: 48px;
    margin: 0 auto 10px;
    opacity: 0.5;
    filter: drop-shadow(0 0 15px rgba(255, 26, 26, 0.3));
}
.garage-signature p { font-size: 11px; color: var(--text-mut); letter-spacing: 0.5px; }

/* Responsive */
@media (max-width: 1024px) {
    .garage-environment { padding: 28px 40px 50px; }
    .btn-back-site { left: 34px; }
    .garage-user { right: 34px; }
}

@media (max-width: 720px) {
    .garage-environment { padding: 24px 18px 40px; }
    .garage-side-wall { width: 14px; }
    .garage-side-wall .wall-texture { box-shadow: inset 0 0 10px rgba(0,0,0,0.7); }
    .neon-bar { width: 3px; }
    .garage-ceiling { left: 14px; right: 14px; height: 26px; padding-top: 8px; }
    .ceiling-light { width: 40px; height: 4px; }

    .btn-back-site {
        top: 16px;
        left: 22px;
        padding: 9px 16px;
        font-size: 10px;
    }
    .btn-back-site span { display: none; }
    .btn-back-site::after {
        content: 'Voltar';
        font-size: 11px;
    }
    .garage-user {
        top: 16px;
        right: 22px;
        padding: 6px 12px 6px 6px;
    }
    .user-info { display: none; }
    .user-avatar { width: 30px; height: 30px; font-size: 12px; }

    .wall-emblem { top: 22%; letter-spacing: 3px; font-size: 9px; }
    .wall-logo { top: 6%; width: 160px; }

    .garage-main { padding-top: 60px; gap: 20px; }
    .welcome-panel { padding: 22px 20px; }
    .welcome-panel .garage-hero-title { font-size: 22px; }
    .welcome-panel .garage-hero-sub { font-size: 13px; }

    .garage-section-head h2 { font-size: 15px; letter-spacing: 1px; }
    .garage-section-head h2 i { width: 32px; height: 32px; font-size: 13px; }
}


/* =========================================================
   APPLE REVEAL — produto & checkout specific
   ========================================================= */
.product-gallery, .product-info-col {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.9s cubic-bezier(.16, 1, .3, 1),
        transform 0.9s cubic-bezier(.16, 1, .3, 1);
}
.product-layout.in-view .product-gallery {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}
.product-layout.in-view .product-info-col {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.reviews-summary, .review, .specs-table, .desc-text {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s cubic-bezier(.16, 1, .3, 1),
        transform 0.8s cubic-bezier(.16, 1, .3, 1);
}
.product-tabs-section.in-view .reviews-summary,
.product-tabs-section.in-view .review,
.product-tabs-section.in-view .specs-table,
.product-tabs-section.in-view .desc-text {
    opacity: 1;
    transform: translateY(0);
}
.product-tabs-section.in-view .review:nth-child(1) { transition-delay: 0.1s; }
.product-tabs-section.in-view .review:nth-child(2) { transition-delay: 0.2s; }
.product-tabs-section.in-view .review:nth-child(3) { transition-delay: 0.3s; }

/* Checkout - Steps pop + forms stagger */
.checkout-steps .step, .checkout-steps .step-line {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s cubic-bezier(.16, 1, .3, 1),
        transform 0.6s cubic-bezier(.16, 1, .3, 1);
}
.checkout-steps.in-view .step,
.checkout-steps.in-view .step-line {
    opacity: 1;
    transform: translateY(0);
}
.checkout-steps.in-view > *:nth-child(1) { transition-delay: 0s; }
.checkout-steps.in-view > *:nth-child(2) { transition-delay: 0.05s; }
.checkout-steps.in-view > *:nth-child(3) { transition-delay: 0.1s; }
.checkout-steps.in-view > *:nth-child(4) { transition-delay: 0.15s; }
.checkout-steps.in-view > *:nth-child(5) { transition-delay: 0.2s; }
.checkout-steps.in-view > *:nth-child(6) { transition-delay: 0.25s; }
.checkout-steps.in-view > *:nth-child(7) { transition-delay: 0.3s; }
.checkout-steps.in-view > *:nth-child(8) { transition-delay: 0.35s; }
.checkout-steps.in-view > *:nth-child(9) { transition-delay: 0.4s; }

/* Collection cards on garage-like pages */
.collection-grid > *, .mini-cards-grid > * {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s cubic-bezier(.16, 1, .3, 1),
        transform 0.7s cubic-bezier(.16, 1, .3, 1);
}
.collection-grid.in-view > *,
.mini-cards-grid.in-view > * {
    opacity: 1;
    transform: translateY(0);
}
.collection-grid.in-view > *:nth-child(1),
.mini-cards-grid.in-view > *:nth-child(1) { transition-delay: 0s; }
.collection-grid.in-view > *:nth-child(2),
.mini-cards-grid.in-view > *:nth-child(2) { transition-delay: 0.06s; }
.collection-grid.in-view > *:nth-child(3),
.mini-cards-grid.in-view > *:nth-child(3) { transition-delay: 0.12s; }
.collection-grid.in-view > *:nth-child(4),
.mini-cards-grid.in-view > *:nth-child(4) { transition-delay: 0.18s; }
.collection-grid.in-view > *:nth-child(5),
.mini-cards-grid.in-view > *:nth-child(5) { transition-delay: 0.24s; }
.collection-grid.in-view > *:nth-child(6),
.mini-cards-grid.in-view > *:nth-child(6) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
    .product-gallery, .product-info-col, .reviews-summary, .review,
    .specs-table, .desc-text, .checkout-steps .step, .checkout-steps .step-line,
    .collection-grid > *, .mini-cards-grid > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* =========================================================
   LISTING PAGES — miniaturas, marcas, categorias, lançamentos, promoções
   ========================================================= */
.page-main { min-height: 60vh; padding-bottom: 60px; padding-top: 16px; }
/* Cabeçalho das páginas internas: IGUAL INDEX — sem bloco grande.
   O <section class="page-header-section"> é ocultado inteiro;
   conteúdo (catálogo, tiles, form) começa logo após o nav. */
.page-header-section { display: none !important; }
/* Estilos mantidos caso breadcrumb/título sejam usados em outras regiões */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-dim, #b0b0ba); margin-bottom: 4px; letter-spacing: 0.4px; }
.breadcrumb a { color: var(--text-dim, #b0b0ba); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red-1, #ff1a1a); }
.breadcrumb i { font-size: 7px; opacity: 0.6; }
.breadcrumb span { color: #fff; font-weight: 600; }
.page-title-block { margin-bottom: 8px; }
.page-title-main { font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; line-height: 1; margin: 0; color: #fff; }
.page-subtitle { display: none; }

.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: flex-start; }
.catalog-filters { padding: 20px 20px 22px; border-radius: 16px; position: sticky; top: 80px; max-height: calc(100vh - 100px); overflow-y: auto; }
.catalog-filters::-webkit-scrollbar { width: 4px; }
.catalog-filters::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 2px; }
.filter-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; margin-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.filter-head h3 { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; display: flex; align-items: center; gap: 8px; margin: 0; }
.filter-head h3 i { color: var(--red-1, #ff1a1a); }
.filter-clear { font-size: 11px; color: var(--text-dim, #b0b0ba); letter-spacing: 0.4px; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.1); background: transparent; padding: 5px 11px; border-radius: 999px; cursor: pointer; transition: all 0.2s; }
.filter-clear:hover { border-color: rgba(255,26,26,0.5); color: var(--red-1, #ff1a1a); }
.filter-group { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.filter-group:last-child { border-bottom: none; }
.filter-group h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; color: #fff; margin: 0 0 12px; }
.filter-check { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 12.5px; color: var(--text-dim, #b0b0ba); cursor: pointer; transition: color 0.15s; }
.filter-check span { flex: 1; }
.filter-check em { font-style: normal; font-size: 10px; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); padding: 2px 6px; border-radius: 6px; }
.filter-check input[type="checkbox"], .filter-check input[type="radio"] { accent-color: var(--red-1, #ff1a1a); width: 14px; height: 14px; cursor: pointer; }
.filter-check:hover { color: #fff; }
.price-range { margin-bottom: 10px; }
.price-inputs { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.price-inputs input { flex: 1; min-width: 0; padding: 8px 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; color: #fff; font-size: 12px; outline: none; transition: border-color 0.2s; }
.price-inputs input:focus { border-color: rgba(255,26,26,0.5); }
.price-inputs span { color: rgba(255,255,255,0.4); font-size: 11px; }
.filter-apply { width: 100%; padding: 8px; background: linear-gradient(135deg, var(--red-1, #ff1a1a), var(--red-2, #d70000)); border: none; border-radius: 8px; color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; cursor: pointer; transition: all 0.2s; }
.filter-apply:hover { filter: brightness(1.08); transform: translateY(-1px); }

.catalog-topbar { padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-radius: 14px; margin-bottom: 14px; }
.catalog-count { font-size: 13px; color: var(--text-dim, #b0b0ba); }
.catalog-count strong { color: #fff; font-weight: 700; }
.catalog-sort { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-dim, #b0b0ba); }
.catalog-sort select { padding: 7px 28px 7px 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-size: 12px; outline: none; cursor: pointer; appearance: none; -webkit-appearance: none; }
.catalog-view-toggle { display: flex; gap: 4px; background: rgba(255,255,255,0.03); border-radius: 8px; padding: 3px; }
.view-btn { width: 32px; height: 32px; background: transparent; border: none; color: var(--text-dim, #b0b0ba); border-radius: 6px; cursor: pointer; font-size: 12px; transition: all 0.2s; }
.view-btn:hover, .view-btn.active { background: rgba(255,26,26,0.15); color: var(--red-1, #ff1a1a); }

.active-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px 6px 12px; background: rgba(255,26,26,0.12); border: 1px solid rgba(255,26,26,0.3); border-radius: 999px; font-size: 11.5px; color: #fff; cursor: pointer; transition: all 0.2s; }
.chip:hover { background: rgba(255,26,26,0.2); }
.chip i { font-size: 10px; opacity: 0.7; }

.catalog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.catalog-pagination { display: flex; justify-content: center; align-items: center; gap: 6px; padding: 28px 0 10px; }
.page-btn { min-width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: #fff; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.page-btn:hover { border-color: rgba(255,26,26,0.4); }
.page-btn.active { background: linear-gradient(135deg, var(--red-1, #ff1a1a), var(--red-2, #d70000)); border-color: transparent; }
.catalog-pagination span { color: var(--text-dim, #b0b0ba); padding: 0 4px; }

/* CONTATO */
.contato-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.contato-info { padding: 28px; border-radius: 16px; }
.contato-info h2 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.contato-info > p { color: var(--text-dim, #b0b0ba); margin-bottom: 24px; line-height: 1.6; font-size: 14px; }
.contato-channels { display: flex; flex-direction: column; gap: 14px; }
.contato-ch { display: flex; gap: 14px; align-items: center; padding: 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; transition: all 0.2s; }
.contato-ch:hover { border-color: rgba(255,26,26,0.3); transform: translateY(-1px); }
.contato-ch-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(255,26,26,0.2), rgba(255,26,26,0.05)); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--red-1, #ff1a1a); flex-shrink: 0; }
.contato-ch-text strong { display: block; font-size: 13px; margin-bottom: 2px; }
.contato-ch-text span { color: var(--text-dim, #b0b0ba); font-size: 12px; }
.contato-form { padding: 28px; border-radius: 16px; }
.contato-form h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.contato-form > p { color: var(--text-dim, #b0b0ba); margin-bottom: 20px; font-size: 13px; }
.contato-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contato-form .form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.contato-form label { font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-dim, #b0b0ba); }
.contato-form input, .contato-form select, .contato-form textarea { padding: 12px 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; color: #fff; font-size: 13px; font-family: inherit; outline: none; transition: border-color 0.2s; }
.contato-form input:focus, .contato-form select:focus, .contato-form textarea:focus { border-color: rgba(255,26,26,0.5); }
.contato-form textarea { min-height: 140px; resize: vertical; }
.contato-form .form-submit { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--red-1, #ff1a1a), var(--red-2, #d70000)); border: none; border-radius: 10px; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; margin-top: 8px; }
.contato-form .form-submit:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,26,26,0.4); }

/* =========================================================
   INFO PAGES — sobre-nos, privacidade, termos, trocas,
                ajuda, rastreamento, faq
   ========================================================= */
.info-header { padding: 28px 0 20px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px; }
.info-header .breadcrumb { margin-bottom: 14px; }
.info-header h1 { font-size: clamp(26px,4vw,38px); font-weight: 900; color: #fff; margin: 0 0 10px; letter-spacing: -0.5px; }
.info-header p { font-size: 14px; color: var(--text-dim,#b0b0ba); max-width: 600px; line-height: 1.6; margin: 0; }

/* Policy / long text */
.info-body { max-width: 860px; margin: 0 auto 60px; }
.info-body h2 { font-size: 18px; font-weight: 800; color: #fff; margin: 32px 0 10px; display: flex; align-items: center; gap: 10px; }
.info-body h2 i { font-size: 15px; color: var(--red-1,#ff1a1a); }
.info-body p { font-size: 14px; color: var(--text-dim,#b0b0ba); line-height: 1.75; margin-bottom: 14px; }
.info-body ul { padding-left: 18px; margin-bottom: 14px; }
.info-body ul li { font-size: 14px; color: var(--text-dim,#b0b0ba); line-height: 1.7; margin-bottom: 6px; }
.info-body ul li::marker { color: var(--red-1,#ff1a1a); }
.info-date { font-size: 11px; color: var(--text-mut); margin-bottom: 28px; letter-spacing: 0.5px; }
.info-panel { padding: 28px 32px; border-radius: 16px; margin-bottom: 20px; }

/* Sobre nós */
.sobre-hero { position: relative; border-radius: 20px; overflow: hidden; padding: 56px 48px; margin-bottom: 32px;
  background: radial-gradient(ellipse at 20% 60%, rgba(255,26,26,0.22) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 30%, rgba(255,26,26,0.1) 0%, transparent 50%),
              linear-gradient(135deg, #1a0505 0%, #0a0303 100%);
  border: 1px solid rgba(255,255,255,0.06); }
.sobre-hero::before { content:''; position:absolute; inset:0; pointer-events:none;
  background: repeating-linear-gradient(0deg, transparent 0, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px),
              repeating-linear-gradient(90deg, transparent 0, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px); }
.sobre-hero-content { position: relative; z-index: 2; max-width: 700px; }
.sobre-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(255,26,26,0.15); border: 1px solid rgba(255,26,26,0.3); color: #ff6b6b; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.sobre-hero-title { font-size: clamp(28px,4.5vw,52px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 18px; letter-spacing: -1px; }
.sobre-hero-title span { color: var(--red-1,#ff1a1a); }
.sobre-hero-sub { font-size: 15px; color: var(--text-dim,#b0b0ba); line-height: 1.65; max-width: 560px; }
.sobre-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 32px; }
.sobre-stat { padding: 22px; border-radius: 14px; text-align: center; }
.sobre-stat strong { display: block; font-size: 32px; font-weight: 900; color: var(--red-1,#ff1a1a); line-height: 1; margin-bottom: 6px; }
.sobre-stat span { font-size: 12px; color: var(--text-dim,#b0b0ba); line-height: 1.4; }
.sobre-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 40px; }
.value-card { padding: 28px 24px; border-radius: 16px; }
.value-card .vc-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,26,26,0.12); border: 1px solid rgba(255,26,26,0.2); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--red-1,#ff1a1a); margin-bottom: 16px; }
.value-card h3 { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-dim,#b0b0ba); line-height: 1.6; margin: 0; }

/* Help Center */
.help-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 36px; }
.help-card { padding: 26px 22px; border-radius: 16px; display: flex; flex-direction: column; gap: 12px; transition: all 0.25s var(--ease,ease); text-decoration: none; color: inherit; }
.help-card:hover { transform: translateY(-3px); border-color: rgba(255,26,26,0.35) !important; box-shadow: 0 12px 36px rgba(255,26,26,0.12); }
.help-card-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.help-card h3 { font-size: 15px; font-weight: 800; color: #fff; margin: 0; }
.help-card p { font-size: 13px; color: var(--text-dim,#b0b0ba); line-height: 1.55; margin: 0; flex: 1; }
.help-card .help-arrow { font-size: 11px; color: var(--text-mut); align-self: flex-start; margin-top: 4px; }

/* FAQ Accordion */
.faq-section { margin-bottom: 32px; }
.faq-section-title { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim,#b0b0ba); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.faq-section-title::before { content:''; flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.faq-item { border-radius: 12px; margin-bottom: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.02); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; background: none; border: none; color: #fff; font-size: 14px; font-weight: 600; cursor: pointer; text-align: left; transition: background 0.2s; }
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q i { font-size: 12px; color: var(--text-mut); flex-shrink: 0; transition: transform 0.25s; }
.faq-item.open .faq-q { color: var(--red-1,#ff1a1a); }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--red-1,#ff1a1a); }
.faq-a { display: none; padding: 0 18px 16px; font-size: 13px; color: var(--text-dim,#b0b0ba); line-height: 1.7; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 14px; }
.faq-item.open .faq-a { display: block; }

/* Steps (Trocas) */
.steps-process { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 32px; }
.step-item { padding: 24px 18px; border-radius: 16px; text-align: center; position: relative; }
.step-item::after { content:''; position:absolute; top: 36px; right: -8px; width: 16px; height: 2px; background: rgba(255,26,26,0.3); }
.step-item:last-child::after { display: none; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--red-1,#ff1a1a), var(--red-2,#d70000)); color: #fff; font-size: 18px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: 0 4px 16px rgba(255,26,26,0.4); }
.step-item h3 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.step-item p { font-size: 12px; color: var(--text-dim,#b0b0ba); line-height: 1.55; margin: 0; }
.policy-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 13px; }
.policy-table th { padding: 12px 14px; text-align: left; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-dim,#b0b0ba); border-bottom: 1px solid rgba(255,255,255,0.1); }
.policy-table td { padding: 14px 14px; color: var(--text-dim,#b0b0ba); border-bottom: 1px solid rgba(255,255,255,0.05); }
.policy-table td:first-child { color: #fff; font-weight: 600; }
.badge-ok { display: inline-block; padding: 3px 10px; border-radius: 999px; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #22c55e; font-size: 11px; font-weight: 600; }
.badge-no { display: inline-block; padding: 3px 10px; border-radius: 999px; background: rgba(255,26,26,0.12); border: 1px solid rgba(255,26,26,0.25); color: #ff6b6b; font-size: 11px; font-weight: 600; }

/* Order Tracking */
.track-card { max-width: 560px; margin: 0 auto 40px; padding: 36px 32px; border-radius: 20px; }
.track-card h2 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.track-card > p { font-size: 13px; color: var(--text-dim,#b0b0ba); margin-bottom: 24px; }
.track-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.track-field label { font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-dim,#b0b0ba); }
.track-field input { padding: 13px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; color: #fff; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.2s; }
.track-field input:focus { border-color: rgba(255,26,26,0.5); }
.track-btn { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--red-1,#ff1a1a), var(--red-2,#d70000)); border: none; border-radius: 10px; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.track-btn:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,26,26,0.4); }
.track-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 40px; }
.track-info-card { padding: 20px 18px; border-radius: 14px; display: flex; gap: 14px; align-items: flex-start; }
.track-info-icon { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; background: rgba(255,26,26,0.12); border: 1px solid rgba(255,26,26,0.2); color: var(--red-1,#ff1a1a); }
.track-info-card strong { display: block; font-size: 13px; color: #fff; margin-bottom: 4px; }
.track-info-card span { font-size: 12px; color: var(--text-dim,#b0b0ba); line-height: 1.5; }

/* Info page responsive */
@media (max-width: 1024px) {
  .sobre-stats { grid-template-columns: repeat(2,1fr); }
  .sobre-values { grid-template-columns: 1fr 1fr; }
  .help-grid { grid-template-columns: 1fr 1fr; }
  .steps-process { grid-template-columns: 1fr 1fr; }
  .steps-process .step-item::after { display: none; }
  .track-info-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .sobre-hero { padding: 32px 20px; }
  .sobre-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sobre-values { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .steps-process { grid-template-columns: 1fr; }
  .track-info-grid { grid-template-columns: 1fr; }
  .track-card { padding: 24px 18px; }
  .info-panel { padding: 20px 16px; }
  .info-header h1 { font-size: 24px; }
}

/* TILES GRID (marcas/categorias) */
.tiles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 40px; }
.tile-card { position: relative; aspect-ratio: 1.2; border-radius: 16px; padding: 20px; overflow: hidden; background: linear-gradient(135deg, rgba(255,26,26,0.08), rgba(30,30,36,0.9)); border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s cubic-bezier(.16,1,.3,1); display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; text-decoration: none; color: #fff; }
.tile-card:hover { transform: translateY(-4px); border-color: rgba(255,26,26,0.4); box-shadow: 0 12px 40px rgba(255,26,26,0.25); }
.tile-card-icon { font-size: 32px; margin-bottom: auto; color: var(--red-1, #ff1a1a); filter: drop-shadow(0 0 16px rgba(255,26,26,0.6)); }
.tile-card-name { font-size: 17px; font-weight: 800; margin-bottom: 4px; letter-spacing: 0.3px; }
.tile-card-count { font-size: 11px; color: var(--text-dim, #b0b0ba); letter-spacing: 1px; text-transform: uppercase; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .catalog-layout { grid-template-columns: 220px 1fr; gap: 16px; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .contato-layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-filters { position: static; max-height: none; order: 2; }
  .catalog-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .catalog-grid .product-card .product-image { height: 120px; }
  .catalog-grid .product-card h3 { font-size: 13px; }
  .catalog-grid .product-card .product-price { font-size: 14px; }
  .catalog-topbar { padding: 10px 12px; gap: 8px; }
  .catalog-count { font-size: 11px; flex: 1 0 100%; }
  .contato-form .form-row { grid-template-columns: 1fr; }
  .tiles-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tile-card { padding: 14px; }
  .tile-card-icon { font-size: 24px; }
  .tile-card-name { font-size: 14px; }
}
