/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

/* ===========================================================================
   CHECKOUT (cart / checkout / sucesso) — minimal layout, no site nav/footer
   =========================================================================== */
.ck-body { background: #f4f5f7; }
.ck-header {
    background: #fff;
    border-bottom: 1px solid #ececef;
    padding: 14px 0;
}
.ck-header__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
}
.ck-logo img { display: block; height: 36px; width: auto; }

.ck-secure {
    display: inline-flex; align-items: center; gap: 8px;
    color: #6e6e72;
    font-size: 13px;
    font-weight: 600;
}
.ck-secure svg { color: #22c55e; }

/* Progress bar — its own band below the header (gocase pattern) */
.ck-progress-bar {
    background: #f4f5f7;
    padding: 22px 0 0;
}
.ck-progress {
    list-style: none;
    margin: 0 auto;
    padding: 0 24px;
    max-width: 720px;
    display: flex;
    align-items: stretch;
}
.ck-step {
    flex: 1;
    text-align: center;
    color: #c2c4c8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding-bottom: 14px;
    border-bottom: 3px solid #ececef;
    transition: color .2s, border-color .2s;
}
.ck-step.current {
    color: #22c55e;
    border-bottom-color: #22c55e;
}
.ck-step.done {
    color: #424246;
}
@media (max-width: 700px) {
    .ck-header__inner { padding: 0 16px; }
    .ck-secure span { display: none; }
    .ck-step { font-size: 11px; letter-spacing: 1px; }
}

.ck-stage {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px 24px 56px;
}
.ck-shell {
    display: grid;
    grid-template-columns: 370px 1fr 340px;
    gap: 18px;
    align-items: start;
}
.ck-mid { min-height: 1px; }
@media (max-width: 980px) {
    .ck-shell { grid-template-columns: 1fr; }
    .ck-mid { display: none; }
    .ck-side { position: static !important; }
}

/* Left side cards */
.ck-card {
    background: #fff;
    border: 1px solid #ececef;
    border-radius: 6px;
    margin-bottom: 16px;
    overflow: hidden;
}
.ck-card__head {
    background: #f4f5f7;
    padding: 14px 22px;
    text-align: center;
}
.ck-card__head h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0;
}
.ck-card__body { padding: 22px; }
.ck-card__lead {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    color: #424246;
    line-height: 1.4;
}

/* Form fields (checkout-specific to avoid collision with site .field) */
.ck-field { margin-bottom: 14px; }
.ck-field label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #6e6e72;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.ck-field input,
.ck-field select {
    width: 100%;
    background: #f4f5f7;
    border: 1px solid #e0e0e3;
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1a1a1a;
    font-family: inherit;
    outline: none;
    transition: border-color .15s, background .15s;
}
.ck-field input:focus,
.ck-field select:focus { border-color: #22c55e; background: #fff; }
.ck-field input::placeholder { color: #a8a8af; }
.ck-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Floating-label fields (gocase checkout pattern) */
.ck-field--floating {
    position: relative;
    margin-bottom: 12px;
}
.ck-field--floating input,
.ck-field--floating select {
    width: 100%;
    background: #fff;
    border: 1px solid #e0e0e3;
    border-radius: 4px;
    padding: 22px 14px 8px;
    font-size: 14px;
    color: #1a1a1a;
    font-family: inherit;
    outline: none;
    transition: border-color .15s;
    height: 56px;
}
.ck-field--floating select { padding-top: 18px; padding-bottom: 4px; }
.ck-field--floating input:focus,
.ck-field--floating select:focus { border-color: #22c55e; }
.ck-field--floating > label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 14px;
    color: #a8a8af;
    background: transparent;
    transition: top .15s ease, font-size .15s ease, color .15s ease, transform .15s ease;
    margin: 0;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
}
.ck-field--floating input:focus + label,
.ck-field--floating input:not(:placeholder-shown) + label,
.ck-field--floating select:focus + label,
.ck-field--floating select + label {
    top: 16px;
    font-size: 11px;
    color: #6e6e72;
    transform: translateY(-50%);
}
.ck-field--floating select + label { top: 16px; }

/* Buttons */
.ck-btn-green {
    background: #22c55e;
    color: #fff;
    border: 0;
    cursor: pointer;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .5px;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.ck-btn-green:hover { background: #16a34a; }
.ck-btn-dark {
    background: #1a1a1a;
    color: #fff;
    border: 0;
    cursor: pointer;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
}
.ck-btn-dark:hover { background: #000; }
.ck-btn-block { width: 100%; }
.ck-btn-link {
    background: transparent; border: 0;
    color: #6e6e72;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    padding: 12px 10px;
    font-family: inherit;
    text-decoration: none;
    transition: color .15s;
}
.ck-btn-link:hover { color: #1a1a1a; }

.ck-step-nav {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 14px;
}

/* Inline security block (under main CTA in the address card) */
.ck-secure-inline {
    text-align: center;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #ececef;
}
.ck-secure-inline__head {
    display: inline-flex; align-items: center; gap: 8px;
    color: #22c55e;
    margin-bottom: 6px;
}
.ck-secure-inline strong {
    font-size: 15px;
    font-weight: 800;
    color: #22c55e;
}
.ck-secure-inline p {
    margin: 0;
    font-size: 12px;
    color: #6e6e72;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* Step panels — only one visible at a time */
.ck-step-panel { display: none; }
.ck-step-panel.active { display: block; }

/* Shipping options */
.ck-ship-list { display: flex; flex-direction: column; gap: 10px; }
.ck-ship {
    border: 1.5px solid #e0e0e3;
    border-radius: 6px;
    padding: 14px 16px;
    display: flex; align-items: center; gap: 14px;
    cursor: pointer;
    background: #fff;
    transition: border-color .15s, background .15s;
}
.ck-ship:hover { border-color: #22c55e; }
.ck-ship.active { border-color: #22c55e; background: #f0fdf4; }
.ck-ship input { accent-color: #22c55e; transform: scale(1.2); }
.ck-ship__info { flex: 1; display: flex; flex-direction: column; }
.ck-ship__info strong { font-size: 14px; color: #1a1a1a; }
.ck-ship__info span { font-size: 12px; color: #6e6e72; }
.ck-ship__price { font-weight: 800; color: #1a1a1a; font-size: 14px; }
.ck-ship__price--free { color: #22c55e; }

/* Payment method selection (Pix vs Cartão) — radio cards */
.ck-pay-methods {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 18px;
}
.ck-pay-method {
    position: relative;
    display: grid;
    grid-template-columns: 92px 1fr 22px;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1.5px solid #e0e0e3;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    transition: border-color .15s, background .15s, box-shadow .15s;
}
.ck-pay-method:hover { border-color: #c2c4c8; }
.ck-pay-method.active {
    border-color: #22c55e;
    background: #f0fdf4;
    box-shadow: 0 0 0 1px #22c55e inset;
}
.ck-pay-method input[type="radio"] {
    position: absolute; opacity: 0; pointer-events: none;
}
.ck-pay-method__icon {
    width: 92px; height: 52px;
    background: #f4f5f7;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    padding: 6px;
}
.ck-pay-method.active .ck-pay-method__icon { background: #fff; }
.ck-pay-method__icon img {
    max-width: 100%; max-height: 100%;
    object-fit: contain; display: block;
}
.ck-pay-method__icon--pix img { width: auto; height: 28px; max-width: 80px; }
.ck-pay-method__icon--brands {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    padding: 4px;
}
.ck-pay-method__icon--brands img {
    width: 100%;
    height: 16px;
    object-fit: contain;
}
.ck-pay-method__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ck-pay-method__info strong {
    font-size: 14px; font-weight: 800; color: #1a1a1a;
}
.ck-pay-method__info span {
    font-size: 12px; color: #6e6e72; font-weight: 600;
}
.ck-pay-method.active .ck-pay-method__info span { color: #15803d; }
.ck-pay-method__dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid #c2c4c8;
    background: #fff;
    position: relative;
    transition: border-color .15s;
}
.ck-pay-method.active .ck-pay-method__dot { border-color: #22c55e; }
.ck-pay-method.active .ck-pay-method__dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #22c55e;
}

/* Card unavailable state */
.ck-pay-error { text-align: center; padding: 12px 8px 4px; }
.ck-pay-error__icon {
    width: 72px; height: 72px;
    background: #fef3c7;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.ck-pay-error strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.ck-pay-error p {
    font-size: 14px;
    color: #424246;
    line-height: 1.55;
    max-width: 320px;
    margin: 0 auto 22px;
}
.ck-pay-error b { color: #15803d; font-weight: 800; }

/* Pix finalization screen — stack vertically (QR on top, info below) */
.ck-pix {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    text-align: center;
}
.ck-pix__qr {
    background: #fff;
    border: 1.5px solid #ececef;
    border-radius: 10px;
    padding: 10px;
    display: flex; align-items: center; justify-content: center;
}
.ck-pix__qr-img { width: 180px; height: 180px; line-height: 0; }
.ck-pix__qr-img svg { width: 100%; height: 100%; image-rendering: pixelated; }
.ck-pix__info { width: 100%; }
.ck-pix__info h3 {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px;
}
.ck-pix__steps {
    list-style: none;
    counter-reset: pix-step;
    padding: 0;
    margin: 0 auto 14px;
    display: inline-block;
    text-align: left;
}
.ck-pix__steps li {
    counter-increment: pix-step;
    position: relative;
    padding-left: 26px;
    font-size: 13px;
    color: #424246;
    line-height: 1.5;
    margin-bottom: 4px;
}
.ck-pix__steps li::before {
    content: counter(pix-step);
    position: absolute;
    left: 0; top: 1px;
    width: 18px; height: 18px;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    font-size: 11px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.ck-pix__total-row {
    display: flex; align-items: baseline; justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #ececef;
    font-size: 13px; color: #424246;
    margin-top: 12px;
}
.ck-pix__total-row strong { font-size: 18px; color: #1a1a1a; font-weight: 900; }
.ck-pix__expiry {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; color: #6e6e72;
}
.ck-pix__expiry strong { color: #1a1a1a; font-weight: 800; }
.ck-pix__expiry svg { color: #f59e0b; }

.ck-pix__code {
    background: #f4f5f7;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 18px;
}
.ck-pix__code label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #6e6e72;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.ck-pix__code-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: stretch;
}
.ck-pix__code-row input {
    background: #fff;
    border: 1px solid #e0e0e3;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 11px;
    color: #424246;
    font-family: 'SF Mono', Menlo, monospace;
    outline: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.ck-pix__code-row .ck-btn-green {
    padding: 10px 18px;
    font-size: 12px;
    white-space: nowrap;
}


/* Identificação collapsed summary (after Continuar) */
.ck-card__summary {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 22px;
    background: #fff;
}
.ck-card__summary[hidden] { display: none; }
.ck-pay-screen[hidden] { display: none; }

/* Pix amount cap warning (R$600/transaction) */
.ck-pix-cap-warning {
    display: flex; align-items: flex-start; gap: 10px;
    margin: 14px 0 0;
    padding: 12px 14px;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 6px;
    color: #78350f;
    font-size: 12.5px;
    line-height: 1.45;
}
.ck-pix-cap-warning svg { color: #b45309; flex-shrink: 0; margin-top: 1px; }
.ck-pix-cap-warning strong { display: block; color: #78350f; font-weight: 800; margin-bottom: 2px; }
.ck-pix-cap-warning span { display: block; color: #92400e; font-weight: 500; }

.ck-btn--disabled,
.ck-btn-green:disabled,
.ck-btn-green.ck-btn--disabled {
    background: #c2c4c8 !important;
    cursor: not-allowed !important;
    opacity: .7;
}

/* Pix loading + error states inside the QR area */
.ck-pix-loading {
    width: 200px; height: 200px;
    display: flex; align-items: center; justify-content: center;
    color: #6e6e72;
    font-size: 13px;
    font-weight: 700;
    background: #f4f5f7;
    border-radius: 8px;
}
.ck-pix-loading::before {
    content: '';
    width: 18px; height: 18px;
    border: 2px solid #d1d5db;
    border-top-color: #22c55e;
    border-radius: 50%;
    margin-right: 8px;
    animation: ckSpin .8s linear infinite;
}
@keyframes ckSpin { to { transform: rotate(360deg); } }

.ck-pix-error {
    width: 200px;
    padding: 16px;
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
}

/* Inline form errors (CEP/CPF/Telefone/etc.) */
.ck-field--error input,
.ck-field--error select {
    border-color: #ef4444 !important;
    background: #fef2f2 !important;
}
.ck-field--error > label {
    color: #b91c1c !important;
}
.ck-field__error-msg {
    color: #b91c1c;
    font-size: 11px;
    font-weight: 700;
    margin-top: 4px;
    padding-left: 2px;
    display: flex; align-items: center; gap: 4px;
}
.ck-field__error-msg::before {
    content: '⚠';
    font-size: 12px;
}
.ck-card__summary-check {
    width: 22px; height: 22px;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 900;
    flex-shrink: 0;
}
.ck-card__summary-text {
    flex: 1;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.ck-card__summary-edit {
    background: transparent;
    border: 0;
    color: #22c55e;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px 6px;
    font-family: inherit;
}
.ck-card__summary-edit:hover { color: #15803d; }

/* Sidebar (Resumo) */
.ck-side {
    background: #fff;
    border: 1px solid #ececef;
    border-radius: 6px;
    padding: 0;
    position: sticky;
    top: 24px;
}
.ck-side__head {
    padding: 14px 20px;
    border-bottom: 1px solid #ececef;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex; align-items: center; gap: 8px;
}
.ck-side__head span { color: #6e6e72; font-size: 16px; }

.ck-side__items {
    padding: 14px 20px;
    border-bottom: 1px solid #ececef;
    display: flex; flex-direction: column; gap: 12px;
    max-height: 380px;
    overflow-y: auto;
}
.ck-side__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: flex-start;
}
.ck-side__item-img {
    width: 56px; height: 56px;
    background: #f4f5f7;
    border-radius: 6px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.ck-side__item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.ck-side__item-body { font-size: 12.5px; line-height: 1.4; }
.ck-side__item-title {
    display: block;
    font-weight: 800;
    color: #1a1a1a;
    font-size: 12.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
    letter-spacing: .2px;
}
.ck-side__item-meta { color: #6e6e72; font-size: 11px; }
.ck-side__item-prices { display: inline-flex; align-items: baseline; gap: 6px; font-size: 12.5px; margin-top: 2px; }
.ck-side__item-prices del { color: #888; font-size: 11px; }
.ck-side__item-prices b { color: #1a1a1a; font-weight: 900; }
.ck-side__item-prices em {
    font-style: normal;
    color: #22c55e;
    font-size: 10px;
    font-weight: 800;
}

.ck-coupon {
    padding: 12px 20px;
    border-bottom: 1px solid #ececef;
}
.ck-coupon__toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #424246;
    font-weight: 700;
    font-size: 13px;
    font-family: inherit;
    padding: 4px 0;
}
.ck-coupon__panel {
    display: flex; gap: 6px; margin-top: 8px;
}
.ck-coupon__panel[hidden] { display: none; }
.ck-coupon__panel input {
    flex: 1;
    border: 1px solid #e0e0e3;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 13px;
    background: #f4f5f7;
    outline: none;
    font-family: inherit;
}
.ck-coupon__panel button {
    background: #1a1a1a;
    color: #fff;
    border: 0;
    border-radius: 4px;
    padding: 0 14px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    font-family: inherit;
}
.ck-coupon__applied {
    margin-top: 8px;
    padding: 8px 12px;
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 4px;
    color: #166534;
    font-size: 12px;
    font-weight: 700;
}

.ck-side__row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 8px 20px;
    font-size: 14px;
    color: #424246;
}
.ck-side__row strong { color: #1a1a1a; font-weight: 800; }
.ck-side__row--discount { color: #16a34a; font-weight: 700; }
.ck-side__row--discount em { font-style: normal; font-weight: 800; }
.ck-side__row--discount strong { color: #16a34a; }
.ck-side__row--total {
    border-top: 1px solid #ececef;
    margin-top: 4px;
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 15px;
}
.ck-side__row--total strong { font-size: 18px; }
.ck-side__savings {
    background: #f0fdf4;
    color: #166534;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex; align-items: center; gap: 8px;
    border-top: 1px solid #ececef;
}
.ck-side__savings strong { color: #15803d; }

/* Cart page header (above the shell) */
.ck-cart-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 0 4px 18px;
    margin-bottom: 4px;
    border-bottom: 1px solid #ececef;
}
.ck-cart-header[hidden] { display: none; }
.ck-cart-header__title {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.01em;
}
.ck-cart-header__title span {
    font-size: 14px;
    font-weight: 600;
    color: #6e6e72;
    margin-left: 6px;
}
.ck-cart-header__back {
    font-size: 13px;
    color: #424246;
    text-decoration: none;
    font-weight: 600;
    transition: color .15s;
}
.ck-cart-header__back:hover { color: #1a1a1a; text-decoration: underline; }
@media (max-width: 540px) {
    .ck-cart-header { flex-direction: column; align-items: flex-start; gap: 6px; }
    .ck-cart-header__title { font-size: 18px; }
}

/* Cart row (on cart page) */
.ck-cart-row {
    display: grid;
    grid-template-columns: 88px 1fr auto 36px;
    gap: 16px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #ececef;
}
.ck-cart-row:last-child { border-bottom: 0; }
.ck-cart-row__img {
    width: 88px; height: 88px;
    background: #f4f5f7;
    border-radius: 6px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.ck-cart-row__img img { width: 90%; height: 90%; object-fit: contain; }
.ck-cart-row__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ck-cart-row__info strong { font-size: 14px; color: #1a1a1a; line-height: 1.3; font-weight: 700; }
.ck-cart-row__info span { font-size: 12px; color: #6e6e72; }
.ck-cart-row__variant strong { font-weight: 700; color: #424246; }
.ck-cart-row__price-line {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    display: inline-flex; align-items: baseline; gap: 8px;
}
.ck-cart-row__price-line strong { font-size: 14px; font-weight: 800; }
.cart-price-old {
    color: #a1a1aa;
    text-decoration: line-through;
    font-size: 12px;
    font-weight: 500;
}
.cart-price-new {
    color: #15803d;
    font-weight: 800;
    font-size: 14px;
}
.ck-cart-row__qty {
    display: inline-flex; align-items: center;
    border: 1px solid #e0e0e3;
    border-radius: 4px;
    overflow: hidden;
}
.ck-cart-row__qty button {
    background: #fff; border: 0; cursor: pointer;
    width: 30px; height: 32px;
    font-weight: 800; font-size: 16px; color: #424246;
    font-family: inherit;
}
.ck-cart-row__qty button:hover { background: #f4f5f7; }
.ck-cart-row__qty input {
    width: 36px; height: 32px; border: 0; text-align: center;
    font-weight: 700; font-size: 14px; color: #1a1a1a;
    background: #fff; outline: none;
    font-family: inherit;
}
.ck-cart-row__qty input::-webkit-outer-spin-button,
.ck-cart-row__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ck-cart-row__actions {
    display: flex; align-items: center; justify-content: flex-end;
}
.ck-cart-row__rm {
    background: transparent; border: 0; cursor: pointer;
    color: #c2c4c8; font-size: 16px;
    padding: 6px;
    border-radius: 4px;
    transition: color .15s, background .15s;
}
.ck-cart-row__rm:hover { color: #ef4444; background: #fef2f2; }
@media (max-width: 540px) {
    .ck-cart-row { grid-template-columns: 64px 1fr 32px; row-gap: 10px; }
    .ck-cart-row__qty { grid-column: 2 / -1; justify-self: flex-start; }
}

/* Drawer item price (mini-cart) */
.drawer-item-price {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    display: inline-flex; align-items: baseline; gap: 6px;
}
.drawer-item-price strong { font-size: 14px; font-weight: 800; }

/* Empty cart */
.empty-cart-big {
    text-align: center;
    padding: 60px 20px;
}
.empty-cart-big h2 {
    font-size: 16px;
    font-weight: 700;
    color: #424246;
    margin: 0 0 20px;
}

/* Success */
.ck-success {
    max-width: 520px;
    margin: 24px auto;
    background: #fff;
    border: 1px solid #ececef;
    border-radius: 6px;
    padding: 48px 32px;
    text-align: center;
}
.ck-success__icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.ck-success h1 {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 8px;
}
.ck-success > p {
    color: #6e6e72;
    font-size: 14px;
    margin: 0 auto 24px;
    max-width: 380px;
    line-height: 1.5;
}
.ck-success__detail {
    background: #f4f5f7;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}
.ck-success__detail > div {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 6px 0;
    font-size: 13px;
    color: #6e6e72;
}
.ck-success__detail strong { color: #1a1a1a; font-weight: 800; }
.ck-success__actions { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.ck-success__actions .ck-btn-green { width: 100%; max-width: 260px; }

/* Footer (gocase pattern: Segurança badges + Fale Conosco + copyright) */
.ck-footer {
    background: #fff;
    border-top: 1px solid #ececef;
    padding: 36px 0 28px;
    text-align: center;
}
.ck-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.ck-trust h3 {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 18px;
    letter-spacing: .2px;
}
.ck-trust__list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.ck-trust__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    flex-shrink: 0;
}
.ck-trust__badge img {
    height: 100%;
    width: auto;
    max-height: 72px;
    opacity: .85;
    transition: opacity .15s;
}
.ck-trust__badge:hover img { opacity: 1; }
.ck-help {
    color: #424246;
    font-size: 13px;
    font-weight: 400;
}
.ck-help a {
    color: #22c55e;
    text-decoration: underline;
    font-weight: 700;
}
.ck-help a:hover { color: #16a34a; }
.ck-copyright {
    display: block;
    margin-top: 16px;
    font-size: 12px;
    color: #a8a8af;
    font-weight: 400;
}
@media (max-width: 540px) {
    .ck-trust__list { gap: 12px; }
    .ck-trust__badge { min-width: 0; padding: 6px 10px; }
}

/* ===========================================================================
   ROLETA DE PRESENTE (entry popup + spinning wheel)
   =========================================================================== */
.roleta-overlay {
    position: fixed; inset: 0;
    background: rgba(10, 16, 32, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex; flex-direction: column; align-items: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity .3s ease;
    padding: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.roleta-overlay.open { opacity: 1; }
.roleta-modal {
    background: #fff;
    border-radius: 24px;
    max-width: 520px; width: 100%;
    padding: 0;
    position: relative;
    box-shadow: 0 40px 90px rgba(0,0,0,.45), 0 8px 24px rgba(0,0,0,.18);
    transform: scale(.92);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
    text-align: center;
    overflow: hidden;
    margin: auto 0;          /* vertical-center when short, top-align when tall */
    flex-shrink: 0;
}
.roleta-overlay.open .roleta-modal { transform: scale(1); }
@media (max-width: 540px) {
    .roleta-modal { border-radius: 18px; }
}
.roleta-close {
    position: absolute; top: 14px; right: 14px;
    width: 34px; height: 34px;
    background: rgba(255,255,255,.85);
    color: #6e6e72;
    border: 0; border-radius: 999px;
    cursor: pointer;
    font-size: 20px; line-height: 1;
    transition: background .15s, color .15s, transform .12s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.roleta-close:hover { background: #fff; color: #1a1a1a; transform: scale(1.08); }

/* =================== Entry popup =================== */
.roleta-entry {
    text-align: center;
}
.roleta-entry__hero {
    position: relative;
    height: 150px;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.4), transparent 60%),
        linear-gradient(135deg, #1a1a1a 0%, #2a1a4a 45%, #4a1d6a 100%);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.roleta-entry__shine {
    position: absolute; inset: 0;
    background: conic-gradient(from 0deg, transparent, rgba(251,146,60,.18), transparent 60deg, transparent, rgba(168,85,247,.20), transparent 240deg);
    animation: roleta-shine-spin 8s linear infinite;
    opacity: .85;
}
@keyframes roleta-shine-spin {
    to { transform: rotate(360deg); }
}
.roleta-entry__giftbox {
    position: relative;
    width: 96px; height: 96px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 16px 36px rgba(251, 146, 60, .55), inset 0 -6px 16px rgba(0,0,0,.18), inset 0 4px 10px rgba(255,255,255,.3);
    z-index: 2;
    animation: roleta-pop .55s cubic-bezier(.34,1.56,.64,1) both, roleta-giftbox-bob 3.2s ease-in-out infinite 0.6s;
}
.roleta-entry__giftbox-emoji {
    font-size: 50px;
    line-height: 1;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,.25));
}
.roleta-entry__sparkle {
    position: absolute;
    font-size: 22px;
    pointer-events: none;
    animation: roleta-sparkle 2.4s ease-in-out infinite;
}
.roleta-entry__sparkle.s1 { top: -8px; right: -14px; animation-delay: 0s; }
.roleta-entry__sparkle.s2 { bottom: -6px; left: -14px; animation-delay: .8s; }
.roleta-entry__sparkle.s3 { top: 8px; left: -22px; font-size: 18px; animation-delay: 1.4s; }
@keyframes roleta-sparkle {
    0%, 100% { transform: scale(.7) rotate(0); opacity: .5; }
    50%      { transform: scale(1.1) rotate(20deg); opacity: 1; }
}
@keyframes roleta-pop {
    from { transform: scale(0) rotate(-30deg); opacity: 0; }
    to   { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes roleta-giftbox-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.roleta-entry__body {
    padding: 22px 28px 26px;
}
.roleta-entry__tag {
    display: inline-block;
    background: linear-gradient(135deg, #facc15, #fb923c);
    color: #1a1a1a;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 10.5px; font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(251, 146, 60, .3);
}
.roleta-entry h2 {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 8px;
    letter-spacing: -.4px;
    line-height: 1.22;
}
.roleta-entry__grad {
    background: linear-gradient(135deg, #ec4899, #fb923c, #facc15);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}
.roleta-entry__lead {
    color: #6e6e72;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 auto 16px;
    max-width: 380px;
}
.roleta-entry__prizes {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    margin: 0 0 18px;
}
.roleta-entry__prize {
    background: #f4f5f7;
    border-radius: 8px;
    padding: 8px 4px;
    font-size: 9px;
    font-weight: 800;
    color: #6e6e72;
    text-transform: uppercase;
    letter-spacing: .3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    line-height: 1.1;
}
.roleta-entry__prize span {
    font-size: 14px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}
.roleta-entry__prize--free {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #14532d;
}
.roleta-entry__prize--free span { color: #14532d; font-size: 11px; }
.roleta-entry__prize--big {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    color: #6b21a8;
}
.roleta-entry__prize--big span { color: #6b21a8; }
.roleta-entry__perks {
    list-style: none; padding: 0; margin: 0 auto 18px;
    text-align: left;
    max-width: 360px;
    display: flex; flex-direction: column; gap: 7px;
}
.roleta-entry__perks li {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: 13px;
    color: #424246;
    line-height: 1.4;
    padding: 2px 0;
}
.roleta-entry__perks li strong { color: #1a1a1a; font-weight: 800; }
.roleta-entry__check {
    flex-shrink: 0;
    width: 18px; height: 18px;
    background: #22c55e;
    color: #fff;
    border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 900;
    margin-top: 1px;
}
.roleta-entry__actions {
    display: flex; flex-direction: column; gap: 4px;
}
.roleta-btn-primary {
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: #fff;
    border: 0; cursor: pointer;
    padding: 17px 28px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 15.5px;
    letter-spacing: .4px;
    font-family: inherit;
    text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(251, 146, 60, .4), inset 0 -3px 0 rgba(0,0,0,.12);
    transition: transform .12s, box-shadow .15s, filter .15s;
}
.roleta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(251, 146, 60, .5), inset 0 -3px 0 rgba(0,0,0,.12); filter: brightness(1.05); }
.roleta-btn-primary:active { transform: translateY(0); }
.roleta-btn-link {
    background: transparent;
    border: 0;
    color: #9a9aa0;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
    font-family: inherit;
    text-decoration: underline;
    transition: color .15s;
}
.roleta-btn-link:hover { color: #6e6e72; }
@media (max-width: 420px) {
    .roleta-entry__prize { font-size: 8px; padding: 6px 2px; }
    .roleta-entry__prize span { font-size: 12px; }
    .roleta-entry__hero { height: 130px; }
    .roleta-entry__giftbox { width: 84px; height: 84px; }
    .roleta-entry__giftbox-emoji { font-size: 42px; }
    .roleta-entry__body { padding: 18px 18px 22px; }
    .roleta-entry h2 { font-size: 21px; }
}

/* =================== Wheel modal =================== */
.roleta-wheel-modal {
    max-width: 600px;
    padding: 0;
}
.roleta-wheel__head {
    padding: 28px 28px 16px;
    background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}
.roleta-wheel__pill {
    display: inline-block;
    background: linear-gradient(135deg, #facc15, #fb923c);
    color: #1a1a1a;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 10.5px; font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(251, 146, 60, .3);
}
.roleta-wheel__head h2 {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 6px;
    letter-spacing: -.3px;
}
.roleta-wheel__head p {
    color: #6e6e72;
    font-size: 13.5px;
    margin: 0;
    line-height: 1.45;
}
.roleta-wheel__head p strong { color: #1a1a1a; font-weight: 800; }

.roleta-wheel__stage {
    position: relative;
    width: calc(100% - 32px);
    aspect-ratio: 1/1;
    max-width: 480px;
    margin: 0 auto 8px;
}
.roleta-wheel__pointer {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,.35));
    line-height: 0;
}
.roleta-wheel__ring {
    width: 100%; height: 100%;
    border-radius: 999px;
    padding: 8px;
    background:
        conic-gradient(from 0deg, #facc15, #fb923c, #ec4899, #a855f7, #3b82f6, #22c55e, #facc15);
    box-shadow:
        0 24px 60px rgba(20, 30, 50, .25),
        0 0 0 4px rgba(255,255,255,.6),
        inset 0 0 0 2px rgba(255,255,255,.5);
    position: relative;
}
.roleta-wheel__ring::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 999px;
    background: #fff;
    box-shadow: inset 0 0 24px rgba(0,0,0,.08);
}
.roleta-wheel__svg {
    width: 100%; height: 100%;
    display: block;
    border-radius: 999px;
    position: relative;
    z-index: 1;
}
.roleta-wheel__spin {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 96px; height: 96px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #fff;
    border: 5px solid #fff;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
    box-shadow:
        0 8px 22px rgba(0,0,0,.45),
        0 0 0 5px rgba(26, 26, 26, .12),
        inset 0 -3px 0 rgba(0,0,0,.3),
        inset 0 2px 4px rgba(255,255,255,.15);
    transition: transform .15s, background .15s, box-shadow .2s;
    z-index: 3;
    animation: roleta-spin-pulse 1.6s ease-in-out infinite;
}
@keyframes roleta-spin-pulse {
    0%, 100% { box-shadow: 0 8px 22px rgba(0,0,0,.45), 0 0 0 5px rgba(26, 26, 26, .12), inset 0 -3px 0 rgba(0,0,0,.3), inset 0 2px 4px rgba(255,255,255,.15); }
    50%      { box-shadow: 0 8px 22px rgba(0,0,0,.45), 0 0 0 10px rgba(251, 146, 60, .15), inset 0 -3px 0 rgba(0,0,0,.3), inset 0 2px 4px rgba(255,255,255,.15); }
}
.roleta-wheel__spin:hover:not([disabled]) {
    transform: translate(-50%, -50%) scale(1.08);
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}
.roleta-wheel__spin:active:not([disabled]) {
    transform: translate(-50%, -50%) scale(.96);
}
.roleta-wheel__spin[disabled] {
    cursor: wait;
    background: #6e6e72;
    animation: none;
}
.roleta-wheel__spin--stop {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    animation: roleta-stop-pulse 0.7s ease-in-out infinite !important;
}
@keyframes roleta-stop-pulse {
    0%, 100% { box-shadow: 0 8px 22px rgba(220,38,38,.5), 0 0 0 5px rgba(220, 38, 38, .15), inset 0 -3px 0 rgba(0,0,0,.3), inset 0 2px 4px rgba(255,255,255,.2); }
    50%      { box-shadow: 0 8px 22px rgba(220,38,38,.6), 0 0 0 14px rgba(220, 38, 38, .2), inset 0 -3px 0 rgba(0,0,0,.3), inset 0 2px 4px rgba(255,255,255,.2); }
}
.roleta-wheel__spin--stop:hover:not([disabled]) {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
}

/* =================== Wheel result (win screen) =================== */
.roleta-wheel__result { padding: 28px 28px; }
.roleta-prize {
    text-align: center;
    animation: roleta-pop .5s cubic-bezier(.34,1.56,.64,1) both;
}
.roleta-prize__hero {
    position: relative;
    padding: 18px 0 8px;
    display: flex; align-items: center; justify-content: center;
}
.roleta-prize__burst {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.roleta-prize__burst span {
    position: absolute;
    top: 50%; left: 50%;
    width: 4px;
    background: linear-gradient(180deg, #facc15, transparent);
    transform-origin: 50% 100%;
    border-radius: 2px;
    opacity: .65;
    animation: roleta-burst 1.4s ease-out infinite;
}
.roleta-prize__burst span:nth-child(1) { height: 60px; transform: translate(-50%, -100%) rotate(0deg); animation-delay: 0s; }
.roleta-prize__burst span:nth-child(2) { height: 50px; transform: translate(-50%, -100%) rotate(45deg); animation-delay: .15s; }
.roleta-prize__burst span:nth-child(3) { height: 70px; transform: translate(-50%, -100%) rotate(90deg); animation-delay: .3s; }
.roleta-prize__burst span:nth-child(4) { height: 50px; transform: translate(-50%, -100%) rotate(135deg); animation-delay: .45s; background: linear-gradient(180deg, #fb923c, transparent); }
.roleta-prize__burst span:nth-child(5) { height: 60px; transform: translate(-50%, -100%) rotate(180deg); animation-delay: .6s; background: linear-gradient(180deg, #ec4899, transparent); }
.roleta-prize__burst span:nth-child(6) { height: 50px; transform: translate(-50%, -100%) rotate(225deg); animation-delay: .75s; background: linear-gradient(180deg, #a855f7, transparent); }
.roleta-prize__burst span:nth-child(7) { height: 70px; transform: translate(-50%, -100%) rotate(270deg); animation-delay: .9s; background: linear-gradient(180deg, #3b82f6, transparent); }
.roleta-prize__burst span:nth-child(8) { height: 50px; transform: translate(-50%, -100%) rotate(315deg); animation-delay: 1.05s; background: linear-gradient(180deg, #22c55e, transparent); }
@keyframes roleta-burst {
    0%   { opacity: 0; transform: translate(-50%, -100%) rotate(var(--r, 0deg)) scaleY(.2); }
    40%  { opacity: .8; }
    100% { opacity: 0; transform: translate(-50%, -100%) rotate(var(--r, 0deg)) scaleY(1.4); }
}
.roleta-prize__big {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(135deg, #fb923c 0%, #ef4444 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 4px 12px rgba(251, 146, 60, .35));
}
.roleta-prize__big-num { font-size: 84px; }
.roleta-prize__big-off { font-size: 36px; letter-spacing: -1px; }
.roleta-prize__title {
    font-size: 20px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 4px 0 8px;
    letter-spacing: -.3px;
}
.roleta-prize__desc {
    color: #424246;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 auto 16px;
    max-width: 380px;
}
.roleta-prize__desc strong { color: #1a1a1a; font-weight: 800; }
.roleta-prize__coupon {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fef3c7 0%, #fff 100%);
    border: 2px dashed #f97316;
    border-radius: 14px;
    padding: 14px 16px;
    margin: 0 auto 14px;
    max-width: 380px;
    text-align: left;
}
.roleta-prize__coupon-info {
    flex: 1;
    min-width: 0;
}
.roleta-prize__coupon-label {
    display: block;
    font-size: 10px;
    font-weight: 900;
    color: #92400e;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 2px;
}
.roleta-prize__coupon-code {
    display: block;
    font-family: 'Lato', monospace;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #1a1a1a;
    line-height: 1.1;
}
.roleta-prize__copy {
    flex-shrink: 0;
    background: #1a1a1a;
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .3px;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s, transform .12s;
}
.roleta-prize__copy:hover { background: #000; transform: scale(1.04); }
.roleta-prize__copy--done { background: #22c55e !important; }
.roleta-prize__countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fef3c7;
    color: #92400e;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 16px;
}
.roleta-prize__countdown strong {
    font-family: 'Lato', monospace;
    font-size: 13.5px;
    font-weight: 900;
    color: #7c2d12;
    letter-spacing: .5px;
}
.roleta-prize__countdown-ico { font-size: 14px; }
.roleta-prize__cta { width: 100%; max-width: 380px; margin: 0 auto; }
.roleta-prize__fine {
    color: #9a9aa0;
    font-size: 11.5px;
    margin: 10px auto 0;
    max-width: 360px;
}

@media (max-width: 540px) {
    .roleta-wheel__head { padding: 24px 20px 12px; }
    .roleta-wheel__head h2 { font-size: 21px; }
    .roleta-wheel__result { padding: 0 20px 24px; }
    .roleta-wheel__spin { width: 82px; height: 82px; font-size: 12px; }
    .roleta-prize__big-num { font-size: 64px; }
    .roleta-prize__big-off { font-size: 28px; }
    .roleta-prize__coupon-code { font-size: 22px; letter-spacing: 2px; }
}

/* Confetti */
.roleta-confetti {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 100;
}
.roleta-confetti span {
    position: absolute;
    top: -20px;
    width: 10px; height: 14px;
    opacity: 0;
    border-radius: 1px;
    animation: roleta-confetti-fall 3s ease-out forwards;
}
@keyframes roleta-confetti-fall {
    0%   { transform: translateY(-20px) rotate(0); opacity: 1; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* Gold variant of quiz-bar (for ROLETA10) */
.quiz-bar--gold {
    background: linear-gradient(90deg, #92400e 0%, #b45309 50%, #92400e 100%) !important;
}

/* Floating mini-tab to re-open the roleta */
.roleta-tab {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 9000;
    background: #1a1a1a;
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 12px 16px 12px 14px;
    font-family: inherit;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(0,0,0,.35), 0 4px 10px rgba(0,0,0,.18);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(20px) scale(.9);
    transition: opacity .25s ease, transform .3s cubic-bezier(.34,1.56,.64,1), background .15s;
    max-width: calc(100vw - 32px);
}
.roleta-tab.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.roleta-tab:hover {
    background: #000;
}
.roleta-tab__ico {
    width: 26px; height: 26px;
    background: linear-gradient(135deg, #fb923c, #facc15);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    animation: roleta-tab-pulse 2.2s ease-in-out infinite;
}
@keyframes roleta-tab-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 146, 60, .6); }
    50%      { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(251, 146, 60, 0); }
}
.roleta-tab__txt {
    white-space: nowrap;
    letter-spacing: .2px;
}
.roleta-tab__close {
    width: 18px; height: 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.7);
    font-size: 12px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    transition: background .15s, color .15s;
}
.roleta-tab__close:hover {
    background: rgba(255,255,255,.3);
    color: #fff;
}
@media (max-width: 480px) {
    .roleta-tab { padding: 10px 14px; font-size: 12px; }
    .roleta-tab__txt { font-size: 12px; }
}

/* ===== Quiz CTA in top promo bar ===== */
.top-promo-quiz {
    color: #ffd700;
    font-weight: 800;
    text-decoration: none;
    margin-left: 6px;
    transition: color .15s;
}
.top-promo-quiz:hover { color: #fff; text-decoration: underline; }

/* ===== Quiz coupon banner (top of home) ===== */
#quiz-coupon-bar {
    background: linear-gradient(90deg, #0a1a4d 0%, #131d5e 50%, #0a1a4d 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 0;
    position: relative;
    box-shadow: 0 4px 14px rgba(10, 26, 77, .25);
}
.quiz-bar__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    text-align: center;
}
.quiz-bar__emoji { font-size: 22px; line-height: 1; }
.quiz-bar__text { flex: 0 1 auto; }
.quiz-bar__code {
    font-family: 'Lato', monospace;
    letter-spacing: 2px;
    background: rgba(255,255,255,.16);
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 900;
    margin: 0 4px;
}
.quiz-bar__off {
    background: #ff7a2f;
    color: #fff;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 13px;
    margin: 0 4px;
}
.quiz-bar__close {
    background: none;
    border: 0;
    color: rgba(255,255,255,.65);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0 8px;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: color .15s;
}
.quiz-bar__close:hover { color: #fff; }
@media (max-width: 700px) {
    #quiz-coupon-bar { font-size: 12px; padding: 10px 0; }
    .quiz-bar__inner { padding-right: 36px; }
}

/* ===== Topbar (cream strip) ===== */
.topbar {
    background: #fdf7fa;
    color: #626266;
    font-size: 12px;
    padding: 6px 0 7px;
}
.topbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.topbar__message { font-weight: 700; color: #626266; }
.topbar__nav { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.topbar__nav li { position: relative; padding-left: 22px; margin-left: 10px; }
.topbar__nav li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    height: 12px;
    width: 1px;
    background: #cfcfd3;
    transform: translateY(-50%);
}
.topbar__nav li:first-child { margin-left: 0; padding-left: 0; }
.topbar__nav li:first-child::before { display: none; }
.topbar__nav-link {
    color: #005baa;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}
.topbar__nav-link:hover { text-decoration: underline; }

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    /* Garante que o sticky vence mesmo com transforms em ancestrais */
    will-change: transform;
}
/* No mobile, esconde a topbar (logística/info) quando rola pra liberar
   espaço — só o header principal e o megamenu ficam grudados no topo. */
@media (max-width: 900px) {
    .topbar {
        position: relative;   /* sai do flow sticky */
    }
    .site-header {
        /* Compensa: sticky cobre só logo + menu, não a topbar */
    }
}
.header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 12px 16px 8px;
    max-width: 1280px;
    margin: 0 auto;
}
.menu-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: #424246;
}
.mobile-only { display: none; }
.brand {
    display: inline-flex;
    align-items: center;
    color: #005baa;
}
.brand .brand-logo { height: 40px; width: auto; color: inherit; fill: currentColor; }
.brand .brand-logo path { fill: currentColor; }
.header-search {
    display: flex;
    align-items: center;
    background: #f2f2f5;
    border-radius: 999px;
    padding: 0 6px 0 22px;
    height: 44px;
    width: 100%;
    justify-self: stretch;
}
.header-search__input {
    border: 0;
    background: transparent;
    outline: 0;
    flex: 1;
    font-size: 16px;
    color: #424246;
    height: 100%;
}
.header-search__input::placeholder { color: #9a9aa0; font-weight: 400; }
.header-search__btn {
    background: none;
    border: 0;
    cursor: pointer;
    color: #424246;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}
.header-search__btn:hover { background: rgba(0,0,0,.04); }
.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: #424246;
    padding: 8px;
    border-radius: 8px;
    transition: background .15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.icon-btn:hover { background: #f5f5f7; }
.cart-badge {
    position: absolute;
    top: 2px; right: 0;
    background: #ff3b30;
    color: #fff;
    border-radius: 999px;
    font-size: 10px; font-weight: 800;
    min-width: 16px; height: 16px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
}
.cart-badge[hidden] { display: none; }

/* ===== Nav menu (third row) ===== */
.megamenu { background: #fff; border-bottom: 1px solid #f0f0f0; }
.megamenu__container {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    /* IMPORTANTE: pan-x = só responde a swipe horizontal. Sem isso, o
       browser bagunça o scroll vertical da página quando o dedo toca aqui. */
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}
.megamenu__container::-webkit-scrollbar { display: none; }
.megamenu-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #424246;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    padding: 6px 0;
    text-decoration: none;
    transition: color .15s;
}
.megamenu-item:hover { color: #005baa; }
/* Seção atual: underline preto bem visível pra user saber onde está */
.megamenu-item.active {
    color: #1a1a1a;
    font-weight: 700;
    position: relative;
}
.megamenu-item.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
}
.megamenu-item.is-outlet { font-weight: 700; }
.megamenu-item.is-outlet .mm-label { color: #1a1a1a; }
.mm-outlet-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #f2f2f5;
    color: #6e6e72;
    margin-right: 6px;
}

/* ===== Page banner (slim) ===== */
.page-banner {
    --banner-accent: #ff5d2e;
    background: linear-gradient(135deg, #fff 0%, #fff8f3 50%, #fff0e6 100%);
    padding: 32px 0 28px;
    border-bottom: 1px solid #f5f5f7;
}
.promo-band {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.promo-pill {
    background: var(--banner-accent);
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.promo-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
    color: #1a1a1a;
}
.promo-sub {
    font-size: 15px;
    color: #555;
    max-width: 640px;
    line-height: 1.5;
}

/* ===== Product sections ===== */
.product-section {
    padding: 36px 0 28px;
}
.product-section.section-tinted {
    background: #fff7f0;
}
.section-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 800;
    letter-spacing: -.4px;
    margin: 0 0 22px;
    line-height: 1.25;
    text-align: center;
}
.section-scroll {
    position: relative;
}
.scroll-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #eee;
    width: 42px; height: 42px;
    border-radius: 999px;
    font-size: 22px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
    transition: background .2s, transform .2s;
    color: #1a1a1a;
    display: none;
}
.scroll-btn.prev { left: -10px; }
.scroll-btn.next { right: -10px; }
.scroll-btn:hover { background: #1a1a1a; color: #fff; transform: translateY(-50%) scale(1.05); }
@media (min-width: 900px) { .scroll-btn { display: block; } }

.product-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 4 * 18px) / 5);
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}
@media (max-width: 900px) { .product-grid { grid-auto-columns: calc((100% - 18px) / 2.2); } }
@media (max-width: 600px) { .product-grid { grid-auto-columns: calc((100% - 0px) / 1.6); } }
.product-grid::-webkit-scrollbar { height: 6px; }
.product-grid::-webkit-scrollbar-thumb { background: #ddd; border-radius: 999px; }

.section-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.see-more-pill {
    display: inline-block;
    background: #ff5d2e;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 32px;
    border-radius: 999px;
    transition: background .2s, transform .2s, box-shadow .2s;
}
.see-more-pill:hover {
    background: #e64a1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 93, 46, .35);
}

.product-card {
    scroll-snap-align: start;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,.08);
    border-color: #ffd1b8;
}
.card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f8f8f8;
    overflow: hidden;
}
.card-media img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform .35s ease;
}
.product-card:hover .card-media img { transform: scale(1.05); }
.badge-360 {
    position: absolute;
    top: 10px; right: 10px;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 800;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    letter-spacing: -.5px;
}
.card-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;
    padding: 4px 10px;
    border-radius: 999px;
}
.card-badge.sold-out { background: #888; }

.card-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.color-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 2px;
    align-items: center;
}
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
}
.dot-more {
    font-size: 11px;
    color: #888;
    font-weight: 700;
    margin-left: 2px;
}
.card-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}
.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
}
.stars { color: #ffb800; letter-spacing: 1px; font-size: 13px; }
.reviews { font-weight: 600; }
.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.price-old { color: #999; font-size: 13px; text-decoration: line-through; }
.price-new { font-size: 18px; font-weight: 800; color: #1a1a1a; }
.price-discount {
    background: #ffefe6;
    color: #ff5d2e;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
}
.price-installments { font-size: 12px; color: #555; }
.buy-btn {
    margin-top: auto;
    padding: 10px 14px;
    background: #1a1a1a;
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.buy-btn:hover { background: #ff5d2e; transform: translateY(-1px); }

/* ===== Reasons ===== */
.reasons {
    background: #fafafa;
    padding: 56px 0;
    border-top: 1px solid #f0f0f0;
}
.reasons-title {
    font-family: 'Lato', sans-serif;
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 32px;
    letter-spacing: -.5px;
}
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 700px) { .reasons-grid { grid-template-columns: repeat(2, 1fr); } }
.reason {
    text-align: center;
    padding: 22px 18px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: transform .2s, box-shadow .2s;
}
.reason:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.05); }
.reason-icon { font-size: 34px; margin-bottom: 8px; }
.reason img { width: 64px; height: 64px; margin: 0 auto 12px; object-fit: contain; }
.reason p { margin: 0; font-weight: 700; color: #1a1a1a; line-height: 1.4; font-size: 14px; }

/* ===== Footer (estilo Gocase original: cinza claro) ===== */
.site-footer {
    background: #f5f5f7;
    color: #1a1a1a;
    padding-top: 56px;
    border-top: 1px solid #e5e5e8;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin: 0 0 18px;
}
.footer-col h4 { color: #1a1a1a; }
.footer-col a {
    display: block;
    color: #666;
    font-size: 14px;
    padding: 5px 0;
    transition: color .2s;
}
.footer-col a:hover { color: #005baa; }
.footer-brand .brand { color: #005baa; margin-bottom: 14px; display: inline-block; }
.footer-brand .brand .brand-logo { color: #005baa; height: 36px; }
.footer-brand .brand .brand-logo path { fill: #005baa; }
.footer-tag { color: #666; font-size: 14px; max-width: 280px; margin: 0 0 18px; line-height: 1.5; }
.socials { display: flex; gap: 10px; }
.socials a {
    width: 36px; height: 36px;
    border-radius: 999px;
    background: #fff;
    color: #1a1a1a;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800;
    padding: 0;
    transition: background .2s, color .2s, transform .2s;
    border: 1px solid #e0e0e0;
}
.socials a:hover { background: #005baa; color: #fff; border-color: #005baa; transform: translateY(-2px); }
.payments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 220px; }
.pay {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}
.pay img { max-width: 48px; max-height: 28px; object-fit: contain; display: block; }
.footer-legal { border-top: 1px solid #e0e0e0; padding: 22px 0; font-size: 12px; color: #888; background: #ededf0; }
.footer-legal p { margin: 4px 0; }
.legal-tiny { font-size: 11px; line-height: 1.5; }

/* responsive header */
@media (max-width: 900px) {
    .menu-btn { display: inline-flex; }
    .mobile-only { display: inline-flex; }
    .header-row { grid-template-columns: auto auto 1fr auto; gap: 12px; }
    .header-search { display: none; }
    .topbar__message { display: none; }
    .topbar__nav { width: 100%; justify-content: space-between; gap: 0; }
    .topbar__nav li { padding-left: 12px; margin-left: 6px; }
    .topbar__nav-link { font-size: 12px; }
    .megamenu__container { padding: 10px 16px; gap: 16px; }
    .megamenu-item { font-size: 14px; }
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a1a;
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
    opacity: 0;
    pointer-events: none;
    z-index: 200;
    transition: opacity .25s, transform .25s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== Cart Drawer ===== */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    visibility: hidden;
}
.cart-drawer.open { pointer-events: auto; visibility: visible; }
.cart-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    transition: opacity .3s ease;
}
.cart-drawer.open .cart-drawer-overlay { opacity: 1; }
.cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 420px;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,.2,.2,1);
    box-shadow: -8px 0 30px rgba(0,0,0,.12);
}
.cart-drawer.open .cart-drawer-panel { transform: translateX(0); }
.cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}
.cart-drawer-head h3 {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 800;
}
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}
.empty-cart {
    color: #888;
    text-align: center;
    padding: 60px 0;
    font-size: 14px;
}
.drawer-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f7;
    align-items: center;
}
.drawer-item img { width: 70px; height: 70px; object-fit: contain; background: #f8f8f8; border-radius: 10px; padding: 4px; }
.drawer-item-info h4 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.drawer-item-color { font-size: 11px; color: #888; }
.drawer-item-qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; }
.drawer-item-qty button { width: 24px; height: 24px; border-radius: 999px; border: 1px solid #ddd; background: #fff; cursor: pointer; font-weight: 700; }
.drawer-item-qty span { font-weight: 700; font-size: 13px; min-width: 14px; text-align: center; }
.drawer-item-info strong { display: block; margin-top: 6px; font-size: 14px; }
.drawer-item-remove {
    background: none;
    border: none;
    color: #888;
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
    border-radius: 999px;
    transition: background .2s;
}
.drawer-item-remove:hover { background: #fee; color: #ff3b30; }
.cart-drawer-foot {
    padding: 18px 20px;
    border-top: 1px solid #eee;
    display: grid;
    gap: 10px;
}
.cart-subtotal { display: flex; justify-content: space-between; font-weight: 700; }
.cart-subtotal strong { font-size: 18px; }
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: 0;
    transition: transform .2s, background .2s, box-shadow .2s;
    text-align: center;
}
.btn-primary { background: #1a1a1a; color: #fff; }
.btn-primary:hover { background: #ff5d2e; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,93,46,.3); }
.btn-secondary { background: #fff; color: #1a1a1a; border: 2px solid #1a1a1a; }
.btn-secondary:hover { background: #1a1a1a; color: #fff; }
.btn-primary.block, .btn-secondary.block { display: block; width: 100%; }

/* ===== PDP ===== */
.pdp-main { padding: 20px 0 60px; }
.pdp-grid {
    display: grid;
    grid-template-columns: 86px 1fr 460px;
    grid-template-areas:
        "crumb crumb crumb"
        "thumbs main info";
    gap: 20px 24px;
    align-items: start;
}
/* When the gallery is single-image we collapse the (now-empty) thumb column. */
.pdp-grid:has(.pdp-gallery--single) {
    grid-template-columns: 1fr 460px;
    grid-template-areas:
        "crumb crumb"
        "main info";
    gap: 20px 40px;
}
@media (max-width: 900px) {
    /* Mobile: thumbs verticais à esquerda + foto principal grande à direita
       (layout estilo site oficial Gocase). Depois info embaixo. */
    .pdp-grid {
        grid-template-columns: 72px 1fr;
        grid-template-areas:
            "crumb crumb"
            "thumbs main"
            "info info";
        gap: 10px;
    }
    /* Single-image fallback: sem thumbs, foto ocupa tudo */
    .pdp-grid:has(.pdp-gallery--single) {
        grid-template-columns: 1fr;
        grid-template-areas: "crumb" "main" "info";
        gap: 16px;
    }
}

.pdp-breadcrumb { grid-area: crumb; font-size: 13px; color: #666; margin: 4px 0 8px; }
.pdp-breadcrumb a { color: #666; }
.pdp-breadcrumb a:hover { color: #005baa; }

.pdp-gallery { display: contents; }
.pdp-main-image {
    grid-area: main;
    background: #fff;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    max-width: 620px;
    max-height: 620px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
    justify-self: center;
}
@media (max-width: 900px) {
    .pdp-main-image { max-width: 100%; max-height: none; }
}

/* Single-image hero (fallback when no real gallery scraped) */
.pdp-hero {
    position: absolute; inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #fff;
}
.pdp-hero img {
    max-width: 100%;
    max-height: 100%;
    width: auto; height: auto;
    object-fit: contain;
    transition: opacity .2s;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .08));
}

/* Multi-slide carousel — uses real scraped gocase.com.br PDP photos */
.pdp-carousel {
    position: absolute; inset: 0;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.pdp-carousel.is-dragging { cursor: grabbing; }
.pdp-track {
    display: flex;
    height: 100%;
    width: 100%;
    will-change: transform;
}
.pdp-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 24px;
}
.pdp-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto; height: auto;
    object-fit: contain;
    pointer-events: none;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .08));
}

/* Nav arrows — appear on hover (desktop) */
.pdp-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid rgba(0, 0, 0, .08);
    color: #1a1a1a;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 4;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
    transition: transform .15s, opacity .15s, background .15s;
    opacity: 0;
}
.pdp-main-image:hover .pdp-nav { opacity: 1; }
.pdp-nav:hover { transform: translateY(-50%) scale(1.08); background: #fff; }
.pdp-nav:disabled { opacity: 0 !important; pointer-events: none; }
.pdp-nav--prev { left: 12px; }
.pdp-nav--next { right: 12px; }
@media (max-width: 900px) { .pdp-nav { display: none; } }

/* Dots — mobile pagination */
.pdp-dots {
    position: absolute;
    bottom: 12px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
    padding: 6px 10px;
    background: rgba(255, 255, 255, .85);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.pdp-dot {
    width: 7px; height: 7px;
    border-radius: 999px;
    background: rgba(26, 26, 26, .28);
    cursor: pointer;
    transition: background .2s, width .2s;
}
.pdp-dot.active { background: #1a1a1a; width: 18px; }
@media (min-width: 901px) { .pdp-dots { display: none; } }

/* Thumb column — desktop only */
.pdp-thumbs {
    grid-area: thumbs;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: start;
}
/* Mobile: mantém thumbs verticais à esquerda, menores */
@media (max-width: 900px) {
    .pdp-thumbs {
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-self: start;
        max-height: 400px;
        overflow-y: auto;
        scrollbar-width: none;
    }
    .pdp-thumbs::-webkit-scrollbar { display: none; }
    .pdp-thumb { width: 64px; height: 64px; }
}
.pdp-thumb {
    width: 70px; height: 70px;
    border-radius: 8px;
    border: 2px solid transparent;
    background: #fff;
    cursor: pointer;
    padding: 4px;
    overflow: hidden;
    transition: border-color .15s, transform .15s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}
.pdp-thumb img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.pdp-thumb:hover { border-color: #d4d4d4; transform: translateY(-1px); }
.pdp-thumb.active { border-color: #1a1a1a; }

.pdp-info { grid-area: info; }
.pdp-title {
    font-family: 'Lato', sans-serif;
    font-size: 22px;          /* era 30 — clean igual oficial */
    font-weight: 500;         /* era 800 — sem pretão */
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0 0 10px;
    letter-spacing: 0;
}
@media (max-width: 900px) {
    .pdp-title { font-size: 18px; font-weight: 500; }
}
.pdp-rating { display: flex; gap: 8px; align-items: center; color: #888; font-size: 13px; margin-bottom: 22px; }
.pdp-price { display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; }
.pdp-price .price-new { font-size: 26px; font-weight: 600; color: #1a1a1a; }   /* era 32px/900 */
.pdp-price .price-old { font-size: 15px; color: #999; }
.pdp-price .price-discount { font-size: 13px; padding: 3px 8px; background: #f0fdf4; color: #16a34a; border: 0; }

/* Esconde o banner "🎁 Ofertas 6.6" — não tem no site oficial */
.pdp-promo-banner { display: none !important; }

/* Esconde ícones sociais do footer — clicar manda pro Instagram/TikTok
   oficial da Gocase, leakando user pra fora da nossa oferta. */
.footer-brand .socials { display: none !important; }
.pdp-installments { font-size: 14px; color: #555; margin-top: 4px; }
.pdp-pix { font-size: 13px; color: #ff5d2e; font-weight: 700; margin-top: 4px; }
.pdp-section { margin-top: 28px; }
.pdp-section h3 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; margin: 0 0 12px; color: #555; }
.color-swatches { display: flex; flex-wrap: wrap; gap: 12px; }
.color-swatch {
    background: none;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px;
}
.color-swatch > span:first-child {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #ddd;
    transition: box-shadow .2s;
}
.color-swatch.active > span:first-child { box-shadow: 0 0 0 2px #1a1a1a; }
.swatch-label { font-size: 11px; color: #555; font-weight: 600; }

.qty-control { display: inline-flex; align-items: center; border: 1px solid #ddd; border-radius: 999px; overflow: hidden; }
.qty-btn { width: 40px; height: 40px; background: #fff; border: 0; font-size: 18px; font-weight: 700; cursor: pointer; transition: background .2s; }
.qty-btn:hover { background: #f5f5f7; }
.qty-control input { width: 50px; height: 40px; text-align: center; border: 0; outline: 0; font-weight: 700; font-size: 15px; }
.qty-control input::-webkit-outer-spin-button, .qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pdp-add, .pdp-buy-now { display: block; width: 100%; margin-top: 14px; padding: 16px; font-size: 16px; }

/* Title + meta row */
.pdp-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin: 4px 0 18px;
}
.pdp-meta-row .pdp-price { flex: 1; }
.pdp-meta-row .pdp-rating {
    margin: 0;
    flex-shrink: 0;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}
.pdp-meta-row .stars { color: #ffb800; font-size: 16px; }
.pdp-meta-row .reviews { color: #888; font-size: 13px; }

/* Promo banner pill */
.pdp-promo-banner {
    background: #fef4f0;
    border-left: 3px solid #22c55e;
    padding: 12px 14px;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    color: #424246;
    margin: 18px 0;
}
.pdp-promo-banner strong { color: #1a1a1a; }

/* Variant cards (replaces color swatches) */
.variant-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
@media (max-width: 600px) {
    .variant-grid { grid-template-columns: repeat(3, 1fr); }
}
.variant-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    transition: border-color .15s, box-shadow .15s;
    cursor: pointer;
}
.variant-card:hover { border-color: #424246; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.variant-card.active { border: 2px solid #1a1a1a; }
.variant-card__thumb {
    background: #f8f8f8;
    aspect-ratio: 1 / 1;
    padding: 4px;
}
.variant-card__thumb img { width: 100%; height: 100%; object-fit: contain; }
.variant-card__label {
    font-size: 12px;
    font-weight: 700;
    color: #424246;
    padding: 6px 4px 2px;
    text-align: center;
}
.variant-card__price {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: #424246;
    padding: 4px 0;
    text-align: center;
}

/* CTA row: ADD CART + wishlist heart */
.pdp-cta-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 22px;
}
.pdp-cta-row .pdp-add {
    flex: 1;
    margin: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 18px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    transition: background .15s;
}
.pdp-cta-row .pdp-add:hover { background: #000; }
.btn-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid #e6e6e6;
    background: #f5f5f7;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #424246;
    transition: background .15s, color .15s;
    flex-shrink: 0;
}
.btn-icon-circle:hover { background: #ff3b30; color: #fff; border-color: #ff3b30; }

/* Field group (TAMANHOS / personalization label rows) */
.pdp-field-group { margin: 18px 0; }
.pdp-field-label {
    font-size: 12px;
    font-weight: 700;
    color: #6e6e72;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 8px;
}
.pdp-field-label strong { color: #1a1a1a; }

/* Size selector buttons (TAMANHOS) */
.pdp-size-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-size {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #424246;
    cursor: pointer;
    transition: border-color .15s, color .15s, background .15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 1.2;
    font-family: inherit;
    min-width: 92px;
}
.pdp-size:hover { border-color: #424246; }
.pdp-size.active {
    border-color: #1a1a1a;
    border-width: 2px;
    color: #1a1a1a;
    padding: 7px 13px;
    background: #f8f8f8;
}
.pdp-size-name { font-weight: 800; }
.pdp-size-delta {
    font-size: 10.5px;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: .2px;
}
.pdp-size.active .pdp-size-delta { color: #16a34a; }

/* Color swatch row (CORES) — square product thumbnails with the variant's
   name below, matching the gocase.com.br PDP picker. */
.pdp-color-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pdp-color-swatch {
    width: 84px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    transition: transform .12s;
}
.pdp-color-swatch:hover { transform: translateY(-1px); }
.pdp-color-thumb {
    width: 84px;
    height: 84px;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: border-color .15s, box-shadow .15s;
}
.pdp-color-swatch:hover .pdp-color-thumb {
    border-color: #999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}
.pdp-color-swatch.active .pdp-color-thumb {
    border-color: #1a1a1a;
    border-width: 2px;
    padding: 3px;
}
.pdp-color-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    display: block;
}
.pdp-color-name {
    font-size: 11px;
    font-weight: 600;
    color: #6e6e72;
    text-align: center;
    line-height: 1.2;
    letter-spacing: .1px;
    max-width: 84px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pdp-color-swatch.active .pdp-color-name {
    color: #1a1a1a;
    font-weight: 700;
}

/* Personalization inline inputs */
.pdp-pers-field { border-bottom: 1px solid #e6e6e6; padding-bottom: 14px; margin-bottom: 14px; }
.pdp-pers-input {
    width: 100%;
    border: 1px solid #d0d0d4;
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color .15s;
}
.pdp-pers-input:focus { border-color: #424246; }
.pdp-pers-input::placeholder { color: #9a9aa0; }
.pdp-pers-file {
    width: 100%;
    padding: 8px 0;
    font-size: 13px;
}
.pdp-pers-hint { color: #888; font-size: 11px; }
.pdp-pers-skip {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 18px;
    background: #fff;
    border: 1px solid #d0d0d4;
    border-radius: 4px;
    color: #6e6e72;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
    cursor: pointer;
    transition: background .15s, border-color .15s;
}
.pdp-pers-skip:hover { background: #f5f5f7; border-color: #424246; }
.pdp-pers-field.skipped .pdp-pers-input,
.pdp-pers-field.skipped .pdp-pers-file { opacity: .4; pointer-events: none; }
.pdp-pers-field.skipped .pdp-pers-skip { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* Accordion */
.pdp-accordion {
    border-bottom: 1px solid #e6e6e6;
    padding: 0;
    margin: 0;
}
.pdp-accordion > summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pdp-accordion > summary::-webkit-details-marker { display: none; }
.pdp-accordion > summary::after {
    content: '▾';
    color: #888;
    transition: transform .2s;
}
.pdp-accordion[open] > summary::after { transform: rotate(180deg); }
.pdp-accordion__body {
    padding: 0 0 22px;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    max-width: 900px;
}
.pdp-accordion__body p + p { margin-top: 12px; }
.pdp-perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}
.perk { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #444; font-weight: 600; }

.pdp-description { padding: 60px 0 40px; border-top: 1px solid #f0f0f0; margin-top: 32px; }
.pdp-description h2 { font-family: 'Lato', sans-serif; font-size: 22px; font-weight: 800; margin: 0 0 14px; }
.pdp-description p { font-size: 15px; color: #444; line-height: 1.7; max-width: 720px; }
.pdp-features { padding-left: 20px; max-width: 720px; font-size: 14px; color: #555; line-height: 1.8; }

/* ===== Cart page ===== */
.cart-page { padding: 40px 0 80px; }
.cart-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
@media (max-width: 900px) { .cart-grid { grid-template-columns: 1fr; } }

.empty-cart-big {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #f0f0f0;
}
.empty-cart-big span { font-size: 64px; }
.empty-cart-big h2 { font-family: 'Lato', sans-serif; font-size: 22px; margin: 12px 0 6px; }
.empty-cart-big p { color: #777; margin: 0 0 22px; }

.cart-row {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 20px;
    padding: 18px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    margin-bottom: 12px;
    align-items: center;
}
.cart-row img { width: 100px; height: 100px; object-fit: contain; background: #f8f8f8; border-radius: 12px; padding: 6px; }
.cart-row-info h3 { font-size: 15px; font-weight: 700; margin: 0 0 4px; line-height: 1.35; }
.cart-row-color { font-size: 12px; color: #888; }
.cart-row-remove { background: none; border: 0; color: #888; font-size: 13px; cursor: pointer; padding: 6px 0; margin-top: 4px; text-decoration: underline; }
.cart-row-remove:hover { color: #ff3b30; }
.cart-row-qty { display: inline-flex; align-items: center; gap: 6px; border: 1px solid #ddd; border-radius: 999px; padding: 4px; }
.cart-row-qty button { width: 28px; height: 28px; border-radius: 999px; border: 0; background: #fff; cursor: pointer; font-weight: 700; }
.cart-row-qty input { width: 36px; height: 28px; text-align: center; border: 0; outline: 0; font-weight: 700; }
.cart-row-qty input::-webkit-outer-spin-button, .cart-row-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-row-price strong { font-size: 17px; font-weight: 800; }

.cart-summary {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    padding: 24px;
    position: sticky;
    top: 100px;
    height: fit-content;
    display: grid;
    gap: 12px;
}
.cart-summary h3 { font-family: 'Lato', sans-serif; font-size: 18px; margin: 0 0 6px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: #444; }
.summary-row strong { color: #1a1a1a; }
.summary-row.total { font-size: 17px; padding-top: 10px; border-top: 1px dashed #eee; margin-top: 6px; }
.summary-row.total strong { font-size: 22px; font-weight: 900; }
.summary-pix { font-size: 13px; color: #ff5d2e; font-weight: 700; }

/* ===== Checkout ===== */
.checkout-page { padding: 40px 0 80px; }
.checkout-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; }
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }

.step-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.step-tab {
    flex: 1;
    background: #f5f5f7;
    color: #888;
    border: 0;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: background .2s, color .2s;
}
.step-tab span {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #ddd;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}
.step-tab.active { background: #1a1a1a; color: #fff; }
.step-tab.active span { background: #ff5d2e; color: #fff; }

.step-panel { display: none; }
.step-panel.active { display: block; }
.step-panel h2 { font-family: 'Lato', sans-serif; font-size: 22px; margin: 0 0 18px; }

.field { display: block; margin-bottom: 14px; }
.field label { display: block; font-size: 12px; font-weight: 700; color: #555; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.field input, .field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    outline: 0;
    transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus { border-color: #ff5d2e; box-shadow: 0 0 0 3px rgba(255,93,46,.15); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.pay-methods { display: grid; gap: 10px; margin-bottom: 22px; }
.pay-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #eee;
    border-radius: 14px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.pay-method.active { border-color: #ff5d2e; background: #fff8f5; }
.pay-method input[type=radio] { accent-color: #ff5d2e; transform: scale(1.2); }
.pay-method strong { display: block; font-size: 15px; }
.pay-method span { font-size: 12px; color: #666; }

.step-panel button.btn-primary, .step-panel button.btn-secondary { margin-top: 12px; margin-right: 10px; }

.checkout-summary {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    padding: 24px;
    position: sticky;
    top: 100px;
    height: fit-content;
}
.checkout-summary h3 { font-family: 'Lato', sans-serif; font-size: 18px; margin: 0 0 14px; }
.ck-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f7;
}
.ck-item img { width: 56px; height: 56px; object-fit: contain; background: #f8f8f8; border-radius: 8px; padding: 4px; }
.ck-item-title { display: block; font-size: 13px; font-weight: 700; line-height: 1.3; }
.ck-item-meta { display: block; font-size: 12px; color: #888; margin-top: 4px; }
.checkout-summary .summary-row { padding: 8px 0; }
.checkout-summary .summary-row.total { border-top: 1px dashed #eee; margin-top: 6px; }

/* ===== Success page ===== */
.success-page { padding: 80px 0 100px; }
.success-card {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    padding: 56px 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,.05);
}
.success-icon { font-size: 64px; margin-bottom: 16px; }
.success-card h1 { font-family: 'Lato', sans-serif; font-size: 30px; margin: 0 0 8px; letter-spacing: -.5px; }
.success-card > p { color: #666; margin: 0 0 28px; }
.success-detail {
    background: #fafafa;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 28px;
    text-align: left;
    display: grid;
    gap: 12px;
}
.success-detail > div { display: flex; justify-content: space-between; font-size: 14px; }
.success-detail span { color: #777; }
.success-detail strong { color: #1a1a1a; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* product-card needs add btn now outside link */
.product-card .buy-btn.add-to-cart-btn {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
}

/* ===== Personalize badge on card ===== */
.card-badge.personalize {
    background: #ff5d2e;
    text-transform: none;
    font-size: 10px;
    padding: 4px 8px;
}

/* ===== Phone model selector ===== */
.pdp-select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
}
.pdp-select:focus {
    outline: 0;
    border-color: #ff5d2e;
    box-shadow: 0 0 0 3px rgba(255,93,46,.15);
}

/* ===== Personalize section ===== */
.pdp-personalize {
    background: linear-gradient(135deg, #fff7f0 0%, #fff0e6 100%);
    border: 2px dashed #ff8a3d;
    border-radius: 18px;
    padding: 20px 22px;
    margin-top: 28px;
}
.personalize-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.personalize-header h3 {
    margin: 0;
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0;
    color: #1a1a1a;
    font-weight: 800;
    font-family: 'Lato', sans-serif;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ccc;
    border-radius: 999px;
    transition: background .25s;
}
.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform .25s;
}
.toggle-switch input:checked + .toggle-slider { background: #ff5d2e; }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }

.personalize-fields {
    display: grid;
    gap: 14px;
    transition: opacity .2s;
}
.personalize-fields .field { margin-bottom: 0; }
.personalize-fields .field label {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.personalize-fields .field input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #ffd1b8;
    background: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    outline: 0;
    transition: border-color .2s, box-shadow .2s;
}
.personalize-fields .field input:focus {
    border-color: #ff5d2e;
    box-shadow: 0 0 0 3px rgba(255,93,46,.15);
}
.personalize-fields .field input[type=file] {
    padding: 8px;
    cursor: pointer;
}
.field-hint {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: #888;
}
.personalize-preview-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-top: 8px;
}
.preview-label {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 6px;
    font-weight: 700;
}
.preview-name {
    font-family: 'Lato', sans-serif;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-transform: uppercase;
}

/* ===== PDP image overlay (name preview on product) ===== */
.pdp-image-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, 30%);
    text-align: center;
    color: #1a1a1a;
    font-family: 'Lato', sans-serif;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
    z-index: 4;
}
.pdp-image-overlay.active { opacity: 0.85; }
.overlay-name {
    display: block;
    font-size: clamp(20px, 3vw, 38px);
    font-weight: 900;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(255,255,255,.7);
    color: #1a1a1a;
    background: rgba(255,255,255,.5);
    padding: 4px 12px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}
.overlay-number {
    display: block;
    margin-top: 6px;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    color: #1a1a1a;
    text-shadow: 0 2px 8px rgba(255,255,255,.7);
}
.pdp-photo-overlay {
    position: absolute;
    inset: 25% 25%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    pointer-events: none;
    z-index: 3;
}
.pdp-photo-overlay img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* ===== Cart / drawer / checkout personalization metadata ===== */
.drawer-item-meta, .cart-row-meta {
    display: block;
    font-size: 11px;
    color: #888;
    line-height: 1.4;
}
.personalization-meta {
    color: #ff5d2e !important;
    font-weight: 700;
}
.ck-item-meta.personalization-meta {
    margin-top: 2px;
}

/* ===== Hero carousel (rotating banners) ===== */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    aspect-ratio: 1440 / 360;
    overflow: hidden;
    background: #fafafa;
}
@media (max-width: 768px) {
    /* No mobile, os slides são 600x720 (mais altos). Sem isso, fica achatado. */
    .hero-carousel { aspect-ratio: 5 / 6; }
    .hero-arrow { display: none; }   /* dots já dão a navegação no mobile */
}
.hero-slides {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.hero-slide a {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,.85);
    border: 0;
    font-size: 26px;
    cursor: pointer;
    z-index: 5;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    color: #1a1a1a;
}
.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }
.hero-arrow:hover { background: #1a1a1a; color: #fff; transform: translateY(-50%) scale(1.05); }
.hero-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.6);
    border: 2px solid #fff;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.hero-dot.active {
    background: #1a1a1a;
    transform: scale(1.2);
}

/* ===== Logo: footer keeps white ===== */
.footer-brand .brand { color: #fff; }
.footer-brand .brand .brand-logo { height: 40px; color: #fff; }
.footer-brand .brand .brand-logo path { fill: #fff; }

/* ===== Capinhas PDP — Original Gocase style ===== */
.pdp-capinhas .pdp-main-image {
    aspect-ratio: 4 / 3;
    background: #f8f8f8;
    position: relative;
    border-radius: 16px;
}
.pdp-price-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}
.pdp-price-rating-row .pdp-price { flex: 1; }

.pdp-promo-banner {
    background: #d4f4dd;
    border-left: 4px solid #22c55e;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
    margin: 22px 0;
    color: #166534;
}
.pdp-promo-banner strong { color: #14532d; }

.brand-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.brand-pill {
    padding: 12px 22px;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
    color: #1a1a1a;
}
.brand-pill:hover { border-color: #1a1a1a; }
.brand-pill.active {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.model-select-button {
    width: 100%;
    padding: 16px 22px;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    transition: border-color .2s;
}
.model-select-button:hover:not(:disabled) { border-color: #1a1a1a; }
.model-select-button:disabled {
    opacity: .5;
    cursor: not-allowed;
}
.model-select-button .chevron {
    font-size: 22px;
    color: #999;
    transform: rotate(90deg);
}

.pdp-customize-btn {
    width: 100%;
    padding: 18px 24px;
    background: #1a1a1a;
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    transition: background .2s, transform .2s;
}
.pdp-customize-btn:hover:not(:disabled) {
    background: #ff5d2e;
    transform: translateY(-2px);
}
.pdp-customize-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.customize-icon { font-size: 18px; }

/* ===== Model modal ===== */
.model-modal {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
}
.model-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
}
.model-modal-panel {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 18px;
    width: 90%;
    max-width: 440px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}
.model-modal-back {
    background: none;
    border: 0;
    color: #888;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    padding: 0 0 12px;
}
.model-modal-back:hover { color: #1a1a1a; }
.model-modal-panel h3 {
    margin: 0 0 14px;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 800;
}
.model-modal-search {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    outline: 0;
    margin-bottom: 14px;
    font-family: inherit;
}
.model-modal-search:focus { border-color: #ff5d2e; }
.model-modal-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px 6px 4px 0;
    margin-bottom: 14px;
}
.model-brand-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.model-option {
    width: 100%;
    padding: 14px 18px;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: border-color .2s, color .2s;
}
.model-option:hover {
    border-color: #ff5d2e;
    color: #ff5d2e;
}
.model-modal-close {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

/* ===== Customize modal (editor) ===== */
.customize-modal {
    position: fixed;
    inset: 0;
    z-index: 160;
    display: flex;
    align-items: center;
    justify-content: center;
}
.customize-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.7);
}
.customize-modal-panel {
    position: relative;
    background: #fff;
    border-radius: 24px;
    width: 95%;
    max-width: 1100px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.customize-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid #f0f0f0;
}
.customize-modal-head h3 {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 800;
}
.customize-modal-close {
    background: none;
    border: 0;
    font-size: 22px;
    cursor: pointer;
    color: #888;
    padding: 8px 12px;
    border-radius: 999px;
    transition: background .2s, color .2s;
}
.customize-modal-close:hover {
    background: #f5f5f7;
    color: #1a1a1a;
}
.customize-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 28px;
    overflow-y: auto;
    flex: 1;
}
@media (max-width: 800px) {
    .customize-modal-body { grid-template-columns: 1fr; }
}
.customize-canvas-wrap {
    background: linear-gradient(135deg, #f4f4f7 0%, #ebebef 100%);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}
.customize-canvas {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 9 / 16;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    overflow: hidden;
}
.customize-base-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.customize-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    pointer-events: none;
    z-index: 3;
}
.customize-overlay .ov-text {
    font-family: 'Lato', sans-serif;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-shadow: 0 2px 6px rgba(255,255,255,.6);
    background: rgba(255,255,255,.4);
    padding: 6px 14px;
    border-radius: 6px;
    backdrop-filter: blur(2px);
}
.customize-overlay .ov-number {
    font-family: 'Lato', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #1a1a1a;
    margin-top: 8px;
    text-shadow: 0 2px 6px rgba(255,255,255,.6);
}
.customize-overlay .ov-photo {
    width: 60%;
    height: 60%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.customize-overlay .ov-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customize-controls h4 {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    margin: 0 0 16px;
}
.customize-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}
.customize-tab {
    flex: 1;
    background: none;
    border: 0;
    border-bottom: 3px solid transparent;
    padding: 12px;
    font-weight: 700;
    font-size: 14px;
    color: #888;
    cursor: pointer;
    transition: color .2s, border-color .2s;
    font-family: inherit;
}
.customize-tab.active {
    color: #1a1a1a;
    border-bottom-color: #ff5d2e;
}
.customize-tab-panel { display: none; }
.customize-tab-panel.active { display: block; }
.customize-tab-panel .field { margin-bottom: 18px; }
.customize-tab-panel .field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.customize-tab-panel .field input[type=text],
.customize-tab-panel .field input[type=number] {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    outline: 0;
    font-family: inherit;
    transition: border-color .2s;
}
.customize-tab-panel .field input:focus { border-color: #ff5d2e; }

.font-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.font-option {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #1a1a1a;
    transition: border-color .2s;
}
.font-option.active { border-color: #ff5d2e; background: #fff8f5; }

.text-colors { display: flex; gap: 8px; flex-wrap: wrap; }
.text-color {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1.5px #ddd;
    cursor: pointer;
    padding: 0;
}
.text-color.active { box-shadow: 0 0 0 2.5px #ff5d2e; transform: scale(1.1); }

.customize-foot {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #f0f0f0;
}
.customize-foot .btn-secondary { flex: 0 0 auto; padding: 14px 22px; }
.customize-foot .btn-primary { flex: 1; padding: 14px; }


/* ===== Fix: hidden attribute should hide modals ===== */
.customize-modal[hidden], .model-modal[hidden] { display: none !important; }

/* ===== Mini banners (categoria showcase) ===== */
.mini-banners-section {
    padding: 48px 0 32px;
    background: #fff;
}
.mini-banners-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}
.mini-banners-row:last-child { margin-bottom: 0; }
.mini-banner {
    display: block;
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    aspect-ratio: 400 / 220;
    background: #f5f5f7;
}
.mini-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.mini-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,.12);
}
.mini-banner:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
    .mini-banners-section { padding: 32px 0 20px; }
    .mini-banners-row { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 12px; }
    .mini-banner { aspect-ratio: 4 / 3; border-radius: 14px; }   /* mais quadrado pra ficar visível */
}
@media (max-width: 480px) {
    /* Mantém 2 colunas mesmo em telas muito pequenas — empilhar 1 fica gigante */
    .mini-banners-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .mini-banner { aspect-ratio: 1 / 1; border-radius: 12px; }
}

/* ===== Featured reviews ===== */
.featured-reviews-section {
    padding: 64px 0;
    background: linear-gradient(135deg, #fff8f3 0%, #fff0e6 100%);
}
.featured-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 900px) {
    .featured-reviews-grid { grid-template-columns: 1fr; }
}
.featured-reviews-text {
    max-width: 380px;
}
.reviews-eyebrow {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    border: 1px solid #ffd1b8;
}
.featured-reviews-text h2 {
    font-family: 'Lato', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -1px;
}
.featured-reviews-text .text-orange { color: #ff5d2e; }
.featured-reviews-text p {
    color: #555;
    margin: 0 0 22px;
    line-height: 1.5;
}
.featured-reviews-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
@media (max-width: 700px) {
    .featured-reviews-list { grid-template-columns: repeat(2, 1fr); }
}
.review-item {
    background: #fff;
    border-radius: 18px;
    padding: 18px 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
    transition: transform .2s, box-shadow .2s;
}
.review-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(0,0,0,.08);
}
.review-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #ff5d2e;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name {
    font-weight: 800;
    font-size: 13px;
    color: #1a1a1a;
}
.review-handle {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

/* ===== Section "Mais Vendidos - Envio Imediato" light teal bg ===== */
.product-section.section-tinted {
    background: linear-gradient(135deg, #effbf8 0%, #e0f5ef 100%);
}


/* ===== Top promo bar (Cupons / Frete) ===== */
.top-promo-bar {
    background: linear-gradient(90deg, #e6f3ee 0%, #d4ebe0 50%, #e6f3ee 100%);
    border-bottom: 1px solid rgba(0,0,0,.05);
    padding: 10px 0;
    text-align: center;
}
.top-promo-msg {
    font-size: 14px;
    font-weight: 600;
    color: #1a5d3e;
    letter-spacing: .2px;
}
.top-promo-msg strong { color: #006633; font-weight: 800; }

/* Topbar utility "Seja Revendedor" blue link */
/* (legacy) .util-link-blue replaced by .topbar__nav-link */

/* ===== Category circles (Tote Bags, Garrafas, Capinhas, etc.) ===== */
.category-circles {
    padding: 40px 0 28px;
    background: #fff;
}
.cat-circles-row {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 4px 16px;
    justify-content: center;
    scrollbar-width: none;
}
.cat-circles-row::-webkit-scrollbar { display: none; }
@media (max-width: 900px) {
    .cat-circles-row { justify-content: flex-start; }
}
.cat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: transform .2s ease;
    flex: 0 0 auto;
}
.cat-circle:hover { transform: translateY(-4px); }
.cat-circle-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #d6f0e6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transition: box-shadow .2s ease;
}
.cat-circle:hover .cat-circle-img { box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.cat-circle-img img { width: 80%; height: 80%; object-fit: contain; }
.cat-circle-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
}

/* ===== Mega menu with dropdowns ===== */
.megamenu-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.megamenu-item.has-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
/* Chevron escondido — dropdowns foram desativados (mandavam pra páginas
   erradas). Clique no item vai direto pra categoria. */
.megamenu-item .chevron { display: none !important; }
.mm-dropdown { display: none !important; }

.mm-dropdown-ignored {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
    padding: 28px 32px;
    min-width: 600px;
    max-width: 95vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 100;
    border-top: 3px solid #ff5d2e;
}
.megamenu-wrap:hover .mm-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.mm-dropdown-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 0;
}
.mm-col h4 {
    font-size: 13px;
    font-weight: 800;
    color: #ff5d2e;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ffd1b8;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.mm-col ul { list-style: none; padding: 0; margin: 0; }
.mm-col li { padding: 5px 0; }
.mm-col li a {
    display: block;
    font-size: 13px;
    color: #444;
    font-weight: 500;
    padding: 2px 0;
    transition: color .15s, padding-left .15s;
}
.mm-col li a:hover {
    color: #ff5d2e;
    padding-left: 4px;
}

/* ===== Footer trust badges + certs ===== */
.footer-trust-badges {
    display: flex;
    gap: 10px;
    margin: 14px 0;
    flex-wrap: wrap;
}
.footer-trust-badges img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
}

.footer-certs {
    background: #ededf0;
    padding: 22px 0;
    border-top: 1px solid #e0e0e0;
}
.certs-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}
.cert-label {
    color: #888;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.cert-badges {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}
.cert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 14px 18px;
    width: 148px;
    height: 92px;
    box-shadow: 0 1px 2px rgba(0,0,0,.03);
    transition: transform .15s ease;
}
.cert-badge:hover { transform: translateY(-1px); }
.cert-badge img {
    max-width: 116px;
    max-height: 64px;
    object-fit: contain;
    display: block;
}

/* ===== Customize modal: ov-placeholder text ===== */
.ov-placeholder {
    color: rgba(0,0,0,.4);
    font-size: 14px;
    font-style: italic;
    text-align: center;
}

