/* ============================================================
   LOJA — MARKETPLACE STYLE  (Kabum / Pichau layout)
   ============================================================ */

/* ── Tokens ── */
:root {
    --bg:            #f3f5f8;
    --bg-card:       #ffffff;
    --border:        #dde3ed;
    --text:          #1a1d2e;
    --muted:         #6b7280;
    --muted-2:       #374151;
    --accent:        #ff6a1c;
    --blue:          #1565d8;
    --blue-dark:     #0f2041;
    --blue-nav:      #1a3561;
    --price:         #0f5bd4;
    --danger:        #dc2626;
    --success:       #16a34a;
    --warning:       #d97706;
    --radius:        10px;
    --radius-sm:     6px;
    --radius-lg:     16px;
    --shadow:        0 2px 8px rgba(0,0,0,0.09);
    --shadow-md:     0 4px 18px rgba(0,0,0,0.13);
    --t:             160ms ease;
    --store-container-width: 1360px;
    --container:     var(--store-container-width, 1360px);
    --header-offset: 118px;

    /* Sobreescrita via PHP */
    --button-primary:          #1565d8;
    --button-primary-text:     #ffffff;
    --button-secondary:        #f3f5f8;
    --button-secondary-text:   #1d2842;
    --border-color:            #dde3ed;
    --price-color:             #0f5bd4;
    --hero-surface:            #0f2041;
    --hero-text:               #ffffff;
    --header-button-bg-color:  var(--button-primary);
    --bootstrap-icons-color:   currentColor;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
    margin: 0; min-height: 100vh;
    background: var(--bg); color: var(--text);
    font-family: 'Poppins', 'Space Grotesk', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.93rem; line-height: 1.55;
    overflow-x: hidden;
}
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button  { cursor: pointer; }
h1,h2,h3,h4,h5 { margin: 0; }
.site-bg { display: none; }

/* Alinhamento leve de ícones da loja — sem travar font-size */
i.fas, i.far, i.fab, i.fa, i.fa-solid, i.fa-regular, i.fa-brands,
span.fas, span.far, span.fab, span.fa, span.fa-solid, span.fa-regular, span.fa-brands,
i.bi, span.bi, [class^="bi-"], [class*=" bi-"] {
    line-height: 1;
    vertical-align: middle;
}



/* ── Container ── */
.container {
    width: min(calc(100% - 28px), var(--container));
    margin-inline: auto;
}

/* ── Utilities ── */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--accent); font-size: 0.76rem;
    font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
}
.eyebrow::before {
    content: ''; width: 24px; height: 2px; background: var(--accent);
}
.section { padding: 22px 0; }
.section-head {
    display: flex; justify-content: space-between;
    align-items: flex-end; gap: 10px; margin-bottom: 16px;
}
.section-head div h2 {
    font-family: 'Rajdhani', 'Space Grotesk', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-top: 4px; color: var(--text);
}
.section-head p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.section-link {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--blue); font-size: 0.84rem; font-weight: 600;
    white-space: nowrap;
    transition: gap var(--t);
}
.section-link:hover { gap: 9px; }


/* ============================================================
   HEADER — novo HTML: topbar-wrap + floating-nav full-width
   ============================================================ */
.site-header {
    position: relative;
    z-index: 1000;
    background: var(--blue-dark);
    display: flex;
    flex-direction: column;
    --header-countdown-height: 0px;
    --header-promo-height: 0px;
    --header-topbar-height: 0px;
    --header-fixed-stack-height: 0px;
    --header-nav-height: 0px;
    --header-total-fixed-height: 0px;
    transition: box-shadow .28s ease;
    backface-visibility: hidden;
}
.site-header.is-pinned {
    position: sticky;
    top: 0;
    z-index: 1105;
}
.site-header.is-pinned .cdb-wrap,
.site-header.is-pinned .header-promo-wrap,
.site-header.is-pinned .header-topbar-wrap,
.site-header.is-pinned .floating-nav {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    transform: none;
    opacity: 1;
    transition: box-shadow .38s ease, background-color .38s ease, min-height .38s ease;
    will-change: auto;
}
.site-header.is-pinned .header-topbar-wrap {
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.16);
}
.site-header.is-pinned .floating-nav {
    margin-top: 0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}
.site-header.is-pinned.is-nav-hidden {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 0 0 rgba(15, 23, 42, 0);
    pointer-events: auto;
}
.site-header.is-pinned:not(.is-nav-hidden) {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}
.site-header.is-pinned .floating-nav {
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-bottom: 0;
    transition: box-shadow .28s ease, background-color .28s ease;
    will-change: auto;
}
.site-header.is-pinned.is-nav-hidden .floating-nav {
    display: none;
    box-shadow: 0 0 0 rgba(15, 23, 42, 0);
    pointer-events: none;
}
/* wrapper do topbar — ocupa 100% como barra azul */
.header-topbar-wrap {
    background: var(--blue-dark);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header-promo-wrap {
    background: var(--header-promo-bg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-promo-bar {
    width: min(calc(100% - 28px), 1280px);
    margin-inline: auto;
    min-height: 32px;
    padding: 3px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: var(--header-promo-text);
    text-align: center;
}
.header-promo-message {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.header-promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 4px 14px;
    border-radius: 8px;
    background: var(--header-promo-button-bg);
    color: var(--header-promo-button-text);
    border: 1px solid rgba(255,255,255,0.24);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

/* topbar: grid logo | busca | ações — com container interno */
.header-topbar {
    display: grid;
    grid-template-columns: 250px 1fr auto;
    align-items: center;
    gap: 16px;
    min-height: 96px;
    width: min(calc(100% - 28px), 1280px);
    margin-inline: auto;
    padding-inline: 0;
}

/* logo */
.brand-lockup {
    display: inline-flex; align-items: center; gap: 14px; flex-shrink: 0;
    text-decoration: none;
}
.brand-mark {
    position: relative; width: 34px; height: 34px;
    display: grid; place-items: center;
}
.brand-mark span {
    position: absolute;
    border: 2.5px solid var(--accent); border-radius: 9px;
    transform: skewX(-15deg) rotate(45deg);
}
.brand-mark span:first-child { width: 22px; height: 22px; }
.brand-mark span:last-child  { width: 13px; height: 13px; transform: translate(7px,-7px) skewX(-15deg) rotate(45deg); }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong {
    font-family: 'Rajdhani','Space Grotesk',sans-serif;
    font-size: 1.55rem; line-height: 1; color: #fff; letter-spacing: 0.01em;
}
.brand-copy small {
    color: rgba(255,255,255,0.45); font-size: 0.68rem;
    text-transform: uppercase; letter-spacing: 0.07em;
}
.brand-logo-image {
    display: block;
    width: auto;
    max-width: 240px;
    max-height: 66px;
    object-fit: contain;
}

/* busca */
.topbar-center { display: flex; align-items: center; }
.search-wrapper { overflow: visible !important; }
.topbar-links  { display: none; }

.search-form {
    display: flex; align-items: center;
    width: 100%; height: 42px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    overflow: hidden;
    transition: border-color var(--t);
}
.search-form:focus-within { border-color: rgba(255,255,255,0.36); }
.search-form input {
    flex: 1; min-width: 0; height: 100%;
    padding: 0 12px; border: none; outline: none;
    background: transparent; color: #fff; font-size: 0.9rem;
}
.search-form input::placeholder { color: rgba(255,255,255,0.45); }
.search-form button {
    flex-shrink: 0; height: 100%; padding: 0 18px;
    border: none; border-left: 1px solid rgba(255,255,255,0.12);
    background: var(--button-primary, var(--accent)); color: #fff;
    font-weight: 600; font-size: 0.86rem;
    cursor: pointer; transition: background var(--t);
}
.search-form button:hover { background: color-mix(in srgb, var(--button-primary, var(--accent)) 86%, black); }

/* ações */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-icon {
    position: relative; width: 38px; height: 38px;
    border-radius: 50%; display: grid; place-items: center;
    color: rgba(255,255,255,0.82);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    text-decoration: none;
    transition: background var(--t), transform var(--t);
}
.header-icon:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); color: #fff; }
.cart-link.is-updated { background: rgba(255,255,255,0.18); transform: scale(1.06); color: #fff; }
.cart-badge {
    position: absolute; top: -5px; right: -3px;
    min-width: 17px; height: 17px; padding: 0 4px;
    border-radius: 999px; background: var(--accent); color: #fff;
    font-size: 0.68rem; font-weight: 700; display: grid; place-items: center;
}
.profile-avatar { overflow: hidden; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.header-user-action {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; padding-left: 2px;
}
.header-user-action .header-icon {
    flex-shrink: 0; pointer-events: none;
}
.header-user-action .user-greeting {
    display: flex; flex-direction: column; gap: 1px;
}
.header-user-action .welcome-text {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.1;
    font-weight: 500;
}
.header-user-action .auth-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    line-height: 1.1;
}


.header-utility-wrap {
    background: #f3f4f6;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.header-utility-bar {
    width: min(calc(100% - 28px), 1280px);
    margin-inline: auto;
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 34px;
    position: relative;
}
.header-utility-item {
    position: relative;
    display: flex;
    align-items: center;
}
.header-utility-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: none;
    background: transparent;
    color: #111827;
    font-size: 0.98rem;
    font-weight: 400;
    cursor: pointer;
}
.header-utility-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid var(--button-primary);
    color: var(--button-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.02rem;
    flex-shrink: 0;
}
.header-utility-item.is-open .header-utility-icon {
    background: color-mix(in srgb, var(--button-primary, var(--accent)) 8%, transparent);
}
.header-utility-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 340px;
    display: none;
    z-index: 310;
}
.header-utility-item.is-open .header-utility-dropdown {
    display: block;
}
.header-utility-item--tracking .header-utility-dropdown {
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
}
.header-utility-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    padding: 18px 18px 16px;
}
.header-utility-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header-utility-row-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--button-primary);
    background: color-mix(in srgb, var(--button-primary, var(--accent)) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--button-primary, var(--accent)) 20%, transparent);
    font-size: 1.12rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.header-utility-row-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.header-utility-row-copy span {
    font-size: 0.82rem;
    color: #111827;
}
.header-utility-row-copy a,
.header-utility-row-copy strong {
    color: #111827;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.35;
    word-break: break-word;
}
.header-utility-row-copy a:hover {
    color: var(--button-primary);
}
.header-utility-sep {
    height: 1px;
    background: rgba(15, 23, 42, 0.10);
    margin: 16px 0;
}
.header-utility-schedule {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.header-utility-schedule strong {
    color: #111827;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.header-utility-schedule span {
    color: #374151;
    font-size: 0.92rem;
}
.header-utility-card--tracking {
    padding: 18px;
}
.header-track-title {
    display: block;
    color: var(--button-primary);
    font-size: 0.92rem;
    margin-bottom: 14px;
}
.header-track-form {
    margin: 0;
}
.header-track-field {
    display: flex;
    align-items: center;
    border: 1px solid rgba(15, 23, 42, 0.16);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}
.header-track-field input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 14px 14px;
    font-size: 0.92rem;
    color: #111827;
    background: transparent;
}
.header-track-field input::placeholder {
    color: #6b7280;
}
.header-track-field button {
    width: 52px;
    height: 50px;
    border: none;
    border-left: 1px solid rgba(15, 23, 42, 0.10);
    background: transparent;
    color: var(--button-primary);
    font-size: 1.18rem;
    cursor: pointer;
}
.header-track-field button:hover {
    background: color-mix(in srgb, var(--button-primary, var(--accent)) 6%, transparent);
}

.mobile-toggle { display: none; cursor: pointer; }

/* ── MOBILE DRAWER ── */

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.34);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    z-index: 900;
    transition: opacity 180ms ease;
}
.menu-backdrop.is-active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}
.mobile-drawer.is-open {
    pointer-events: all;
}
.mobile-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-drawer.is-open .mobile-drawer-overlay {
    opacity: 1;
}
.mobile-drawer-panel {
    position: absolute;
    top: 0; left: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: #0f2041;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0,0,0,0.3);
}
.mobile-drawer.is-open .mobile-drawer-panel {
    transform: translateX(0);
}
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: #0a1628;
}
.mobile-drawer-header .brand-copy strong {
    font-size: 1.3rem;
}
.mobile-drawer-header .brand-logo-image {
    max-width: 220px;
    max-height: 50px;
}
.mobile-drawer-close {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: none; color: #fff; font-size: 1rem;
    display: grid; place-items: center; cursor: pointer;
    transition: background var(--t);
}
.mobile-drawer-close:hover { background: rgba(255,255,255,0.16); }
.mobile-drawer-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
}
.mobile-drawer-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0;
    overflow: hidden;
}
.mobile-drawer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mobile-drawer-user-info span:first-child {
    display: block; color: #fff; font-weight: 600; font-size: 0.9rem;
}
.mobile-drawer-user-info span:last-child {
    display: block; color: rgba(255,255,255,0.45); font-size: 0.75rem;
}
.mobile-drawer-section-label {
    padding: 14px 20px 6px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    font-weight: 700;
}
.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 4px 12px;
}
.mobile-drawer-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 12px;
    border-radius: 8px;
    color: rgba(255,255,255,0.80);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
    transition: background var(--t), color var(--t);
}
.mobile-drawer-nav a:hover, .mobile-drawer-nav a.active {
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.mobile-drawer-nav a i {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
}
.mobile-drawer-nav a:hover i, .mobile-drawer-nav a.active i {
    color: var(--accent);
}
.mobile-drawer-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin: 8px 12px;
}
.mobile-drawer-categories {
    display: flex;
    flex-direction: column;
    padding: 4px 12px;
}
.mobile-drawer-categories a {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px; border-radius: 8px;
    color: rgba(255,255,255,0.75); text-decoration: none;
    font-size: 0.87rem; font-weight: 500;
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
    transition: background var(--t), color var(--t);
}
.mobile-drawer-categories a:hover {
    background: rgba(255,255,255,0.07); color: #fff;
}
.mobile-drawer-categories a img {
    width: 20px; height: 20px; object-fit: contain;
}

.mobile-drawer-cat {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    overflow: hidden;
}
.mobile-drawer-cat + .mobile-drawer-cat {
    margin-top: 8px;
}
.mobile-drawer-cat-head {
    display: flex;
    align-items: stretch;
    gap: 8px;
}
.mobile-drawer-cat-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    color: rgba(255,255,255,0.84);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
}
.mobile-drawer-cat-link i,
.mobile-drawer-cat-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}
.mobile-drawer-cat-toggle {
    width: 42px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.58);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color var(--t), transform var(--t);
}
.mobile-drawer-cat.is-open .mobile-drawer-cat-toggle i {
    transform: rotate(180deg);
}
.mobile-drawer-subcats {
    display: none;
    padding: 0 12px 12px 44px;
}
.mobile-drawer-cat.is-open .mobile-drawer-subcats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mobile-drawer-subcat {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    background: rgba(255,255,255,0.03);
    font-size: 0.84rem;
}
.mobile-drawer-subcat.is-primary {
    color: #fff;
    background: rgba(var(--accent-rgb),0.14);
    border: 1px solid rgba(var(--accent-rgb),0.18);
}
.mobile-drawer-subcat:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.mobile-drawer-footer {
    margin-top: auto;
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-drawer-footer a {
    display: flex; align-items: center; gap: 10px;
    color: #ff6b6b; font-size: 0.87rem; text-decoration: none;
    padding: 8px 12px; border-radius: 8px;
    transition: background var(--t);
}
.mobile-drawer-footer a:hover { background: rgba(255,107,107,0.1); }

/* ── BARRA DE CATEGORIAS — filho direto do header, 100% largura ── */
.floating-nav {
    background: var(--blue-nav);
    width: 100%;
    position: relative;
    z-index: 50;
}
.floating-nav-inner {
    display: flex; align-items: center;
    width: min(calc(100% - 28px), 1280px);
    margin-inline: auto;
    position: relative;
    overflow: visible;
}
.platform-nav {
    display: flex; align-items: center;
    flex: 1;
    flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden;
    gap: 0; padding: 0;
    scrollbar-width: none;
}
.platform-nav::-webkit-scrollbar { display: none; }
.platform-nav-item {
    display: flex;
    flex: 0 0 auto;
}
.platform-nav-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 13px 12px; white-space: nowrap;
    color: rgba(255,255,255,0.82); font-size: 12px; font-weight: 500;
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
    letter-spacing: 0;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    transition: color var(--t), border-color var(--t), background var(--t);
}
.platform-nav-link i {
    font-size: 0.96rem;
}
.platform-nav-link:hover,
.platform-nav-item.is-open .platform-nav-link {
    color: #fff;
    background: rgba(255,255,255,0.07);
}
.platform-nav-link.active,
.platform-nav-item.is-current .platform-nav-link {
    color: #fff;
    border-bottom-color: var(--accent);
}
.platform-nav-caret {
    font-size: 0.72rem !important;
    opacity: 0.72;
    transition: transform 180ms ease;
}
.platform-nav-item.is-open .platform-nav-caret { transform: rotate(180deg); }
.menu-icon-image { width: 1.22rem; height: 1.22rem; object-fit: contain; }
.platform-mega-panels {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    right: auto;
    width: min(470px, calc(100vw - 32px));
    transform: translateX(-50%);
    display: none;
    z-index: 290;
}
.platform-mega-panels.is-active {
    display: block;
}
.platform-mega-panel {
    display: none;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 14px;
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}
.platform-mega-panel.is-open { display: block; }
.platform-mega-layout {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    min-height: 350px;
}
.platform-mega-subcats {
    padding: 16px 14px;
    background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
    border-right: 1px solid var(--border);
}
.platform-mega-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.platform-mega-subcats h4,
.platform-mega-showcase h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.platform-mega-subcat-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
}
.platform-mega-subcat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 9px;
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    background: transparent;
    transition: background var(--t), color var(--t), transform var(--t);
}
.platform-mega-subcat:hover {
    background: rgba(var(--accent-rgb),0.08);
    color: var(--blue);
    transform: translateX(2px);
}
.platform-mega-subcat.is-primary {
    background: rgba(var(--accent-rgb),0.1);
    color: var(--accent);
    font-weight: 700;
}
.platform-mega-subcat-empty {
    padding: 12px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}
.platform-mega-showcase {
    padding: 14px 12px;
    min-width: 0;
}
.platform-mega-showcase-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}
.platform-mega-controls {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.platform-mega-arrow {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--t), background var(--t), border-color var(--t);
}
.platform-mega-arrow:hover {
    background: rgba(var(--accent-rgb),0.08);
    border-color: rgba(var(--accent-rgb),0.2);
    transform: translateY(-1px);
}
.platform-mega-slider { min-width: 0; }
.platform-mega-track {
    display: flex;
    gap: 10px;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
}
.platform-mega-track::-webkit-scrollbar { display: none; }
[data-cat-mega-slider] {
    overflow: hidden;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
}
[data-cat-mega-slider] .platform-mega-track {
    justify-content: flex-start;
    gap: 0;
}
[data-cat-mega-slider] .platform-mega-card {
    flex: 0 0 260px;
    width: 260px;
    min-width: 260px;
    max-width: 260px;
    margin-inline: 0;
    box-sizing: border-box;
}
.platform-mega-card {
    flex: 0 0 310px;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fff;
    text-decoration: none;
    color: var(--text);
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.platform-mega-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--accent-rgb),0.18);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}
.platform-mega-card-media {
    display: block;
    background: #ffffff !important;
    padding: 12px;
}
.platform-mega-card-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    max-height: 160px;
    background: #ffffff;
}
.platform-mega-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    padding: 12px 14px 14px;
}
.platform-mega-card-title {
    display: block;
    min-height: 2.8em;
    width: 100%;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}
.platform-mega-card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 100%;
    text-align: center;
}
.platform-mega-card-price small {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.77rem;
}
.platform-mega-card-price strong {
    color: var(--price);
    font-size: 1.08rem;
}
.platform-mega-empty {
    display: grid;
    place-items: center;
    min-height: 210px;
    border-radius: 10px;
    border: 1px dashed var(--border);
    color: var(--muted);
    font-size: 0.95rem;
    padding: 20px;
    text-align: center;
}
.search-bubble   { display: none; }
.mobile-links    { display: none; }
.header-inline-search { display: none !important; }
/* ── MEGA MENU: Compre por Departamento ── */
.mnav-dept {
    position: relative;
    flex-shrink: 0;
}

/* Botão trigger */
.mnav-dept-btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 0 18px; height: 52px;
    background: var(--button-primary, var(--accent));
    color: #fff; font-size: 12px; font-weight: 600;
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
    text-transform: uppercase; letter-spacing: 0.06em;
    border: none; border-radius: 0; cursor: pointer;
    white-space: nowrap;
    transition: background var(--t);
}
.mnav-dept-btn:hover { background: color-mix(in srgb, var(--button-primary, var(--accent)) 86%, black); }
.mnav-dept-btn span { line-height: 1.2; }
.mnav-dept-btn strong { display: block; font-size: 12px; font-weight: 700; font-family: inherit; text-transform: inherit; letter-spacing: inherit; }
.mnav-chevron { font-size: 0.82rem; margin-left: 2px; transition: transform 220ms ease; }
.mnav-dept.is-open .mnav-chevron { transform: rotate(180deg); }
/* Painel flutuante */
.mnav-panel {
    position: absolute; top: 100%; left: 0;
    width: 760px; max-width: 94vw;
    background: #fff; color: var(--text);
    border: 1px solid var(--border);
    border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    display: none; flex-direction: row;
    z-index: 300;
    animation: mnav-drop 180ms ease;
}
.mnav-dept.is-open .mnav-panel {
    display: flex;
}
@keyframes mnav-drop {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Coluna esquerda: lista de departamentos */
.mnav-dept-list {
    list-style: none; padding: 8px 0; margin: 0;
    width: 205px; flex-shrink: 0;
    border-right: 1px solid var(--border);
    max-height: 480px; overflow-y: auto;
    scrollbar-width: thin;
}
.mnav-dept-item { display: block; }
.mnav-dept-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    font-size: 0.86rem; font-weight: 400;
    color: var(--text); text-decoration: none;
    transition: background var(--t), color var(--t);
}
.mnav-dept-link:hover,
.mnav-dept-item.is-active .mnav-dept-link {
    background: rgba(var(--accent-rgb),0.07);
    color: var(--blue);
}
.mnav-dept-icon {
    width: 30px; height: 30px; flex-shrink: 0;
    border-radius: 8px; display: grid; place-items: center;
    background: rgba(var(--accent-rgb),0.08);
    color: var(--blue); font-size: 0.85rem;
}
.mnav-dept-arrow {
    margin-left: auto; font-size: 0.65rem;
    color: var(--muted);
}

/* Coluna direita: subcategorias */
.mnav-sub-panel {
    flex: 1; padding: 18px 22px;
    display: none;
}
.mnav-sub-panel.is-active { display: block; }
.mnav-sub-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}
.mnav-sub-layout.has-feature {
    grid-template-columns: minmax(0, 1fr) 210px;
}
.mnav-sub-copy {
    min-width: 0;
}
.mnav-sub-header {
    display: block;
    margin-bottom: 18px;
    padding-bottom: 0;
    border-bottom: none;
}
.mnav-see-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--blue);
    text-decoration: none;
    transition: gap var(--t);
}
.mnav-see-all:hover { gap: 8px; }
.mnav-see-all--department {
    font-size: 0.96rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.mnav-see-all--department:hover {
    gap: 0;
    color: var(--accent);
}
.mnav-see-all-name {
    text-transform: lowercase;
}
.mnav-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(170px, 1fr));
    gap: 8px 34px;
}
.mnav-sub-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    border-radius: 0;
    font-size: 0.96rem;
    font-weight: 400;
    color: var(--text);
    text-decoration: none;
    line-height: 1.45;
    transition: color var(--t), opacity var(--t);
}
.mnav-sub-list a:hover,
.mnav-sub-list a:focus {
    background: transparent;
    color: var(--accent);
}
.mnav-sub-feature-pane {
    display: flex;
    justify-content: flex-end;
}
.mnav-sub-feature {
    display: block;
    width: 240px;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    background: #f3f4f6;
}
.mnav-sub-feature img {
    width: 100%;
    aspect-ratio: 0.72;
    object-fit: cover;
    display: block;
}


@media (max-width: 1024px) {
    .platform-mega-panels { display: none !important; }
    .platform-nav-caret { display: none; }
}

@media (max-width: 860px) {
    .mobile-drawer-panel { width: min(360px, 92vw); }
}

.site-header.is-scrolled { box-shadow: 0 10px 28px rgba(0,0,0,0.22); }
.site-header.is-scrolled .header-topbar { min-height: 62px; }
.site-header.is-scrolled .brand-copy small {
    display: none;
}
.site-header.is-scrolled .brand-copy strong { font-size: 1.3rem; }
.site-header.is-scrolled .brand-mark { width: 27px; height: 27px; }
.site-header.is-scrolled .brand-logo-image { max-width: 220px; max-height: 56px; }

/* compat com shell antigo */
.header-shell { display: contents; }
.header-shell.container { display: contents; }

@media (prefers-reduced-motion: reduce) {
    .site-header.is-pinned .cdb-wrap,
    .site-header.is-pinned .header-promo-wrap,
    .site-header.is-pinned .header-topbar-wrap,
    .site-header.is-pinned .floating-nav { transition: none; }
}


/* ============================================================
   BOTÕES
   ============================================================ */
.btn, .btn-secondary, .btn-ghost, .btn-surface {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 7px; min-height: 40px; padding: 0 18px;
    border-radius: var(--radius-sm); border: 1px solid transparent;
    font-weight: 700; font-size: 0.88rem; cursor: pointer;
    transition: transform var(--t), background var(--t), border-color var(--t), filter var(--t);
}
.btn {
    background: var(--button-primary); color: var(--button-primary-text);
    box-shadow: 0 3px 10px rgba(var(--accent-rgb),0.22);
}
.btn:hover, .btn-secondary:hover, .btn-ghost:hover, .btn-surface:hover { transform: translateY(-1px); }
.btn:hover { filter: brightness(1.07); }
.btn-secondary {
    background: rgba(255,255,255,0.12); color: #fff;
    border-color: rgba(255,255,255,0.22);
}
.btn-ghost   { background: transparent; color: var(--muted-2); border-color: var(--border); }
.btn-surface { background: var(--bg-card); color: var(--text); border-color: var(--border); }
.btn:disabled, .btn-secondary:disabled, .btn-ghost:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }


/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider-section {
    background: var(--blue-dark);
    /* full-width sem container */
}
.hero-slider-section .container {
    width: min(calc(100% - 0px), 100%);
    max-width: none;
    padding: 0;
}
.hero-slider { position: relative; overflow: hidden; }
.hero-slider-track { position: relative; }

.hero-slide {
    display: none;
    align-items: center;
    min-height: var(--hero-slide-height, 440px);
    padding: 28px clamp(20px,5vw,80px);
    gap: 24px;
    background: linear-gradient(120deg,#0f2041 0%,#1a3561 55%,#0d1835 100%);
    position: relative;
}
.hero-slide.is-active { display: flex; }
.hero-slide.theme-product  { background: linear-gradient(120deg,#0e1f3c 0%,#1b3768 55%,#0c1c38 100%); }
.hero-slide.theme-category { background: linear-gradient(120deg,#0c1e38 0%,#172f5a 55%,#0a1828 100%); }

.hero-slide-copy { flex: 1; min-width: 0; max-width: min(100%, var(--hero-copy-width, 560px)); color: #fff; position: relative; z-index: 1; }
.hero-slide-copy .eyebrow { color: rgba(255,255,255,0.6); font-size: 0.73rem; }
.hero-slide-copy .eyebrow::before { background: rgba(255,255,255,0.4); }
.hero-slide-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 999px;
    background: rgba(255,255,255,0.12); color: #fff;
    font-size: 0.84rem; font-weight: 700; margin-bottom: 8px;
}
.hero-slide-pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 11px; border-radius: 999px;
    background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.82);
    font-size: 0.77rem; margin: 7px 0 9px; font-weight: 600;
}
.hero-slide-copy h1 {
    font-family: 'Rajdhani','Space Grotesk',sans-serif;
    font-size: clamp(1.7rem,4vw,var(--hero-title-max,72px)); line-height: 1; margin-bottom: 9px;
}
.hero-slide-copy p { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin: 0 0 14px; max-width: 100%; }
.hero-slide-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hero-slide-badge {
    padding: 4px 10px; border-radius: 6px;
    background: var(--accent); color: #fff;
    font-size: 0.79rem; font-weight: 700;
}
.hero-slide-meta strong { font-size: clamp(1.3rem,3vw,2rem); }
.hero-slide-actions { display: flex; gap: 9px; flex-wrap: wrap; }

.hero-slide-visual { flex-shrink: 0; width: min(var(--hero-visual-width,380px),36vw); position: relative; z-index: 1; }
.hero-slide-media-link { display: block; text-decoration: none; }
.hero-slide-frame { border-radius: var(--radius-lg); overflow: hidden; background: transparent; }
.hero-slide-frame img { width: 100%; aspect-ratio: 16/9; object-fit: contain; }
.hero-slide.content-only { justify-content: flex-end; }
.hero-slide.content-only .hero-slide-visual { margin-left: auto; }
.hero-slide.visual-only {
    justify-content: center;
    padding: 0;
    background: transparent;
}
.hero-slide.visual-only .hero-slide-visual {
    width: 100%;
    margin-left: 0;
}
.hero-slide.visual-only .hero-slide-media-link,
.hero-slide.visual-only .hero-slide-frame {
    width: 100%;
    height: 100%;
}
.hero-slide.visual-only .hero-slide-frame img {
    width: 100%;
    height: var(--hero-slide-height, 440px);
    aspect-ratio: auto;
    object-fit: cover;
}

.hero-slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 34px; height: 34px; border-radius: 50%; border: none;
    background: rgba(0,0,0,0.38); color: #fff;
    display: grid; place-items: center; cursor: pointer; z-index: 5;
    transition: background var(--t);
}
.hero-slider-arrow:hover { background: rgba(0,0,0,0.62); }
.hero-slider-arrow.prev { left: 10px; }
.hero-slider-arrow.next { right: 10px; }
.hero-slider-dots {
    position: absolute; bottom: 9px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 5px;
}
.hero-slider-dots button {
    width: 7px; height: 7px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.35); cursor: pointer;
    transition: background var(--t), transform var(--t);
}
.hero-slider-dots button.is-active { background: var(--accent); transform: scale(1.35); }


/* ============================================================
   BENEFIT STRIP
   ============================================================ */
.benefit-strip {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    margin-top: 0; position: static;
}
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}
.benefit-item {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px;
    border-right: 1px solid var(--border);
    background: var(--bg-card);
    border-radius: 0;
    backdrop-filter: none;
}
.benefit-item:last-child { border-right: none; }
.benefit-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 50%; display: grid; place-items: center;
    background: rgba(var(--accent-rgb),0.08);
    color: var(--bootstrap-icons-color, var(--accent)); font-size: 1.3rem;
}
.benefit-item h3 {
    font-size: 1rem;
    line-height: 1.2;
    margin: 0 0 4px;
    font-weight: 800;
}
.benefit-item p  {
    font-size: 0.96rem;
    line-height: 1.4;
    margin: 0;
    color: var(--muted);
}
.benefit-copy    { min-width: 0; }


/* ============================================================
   CATEGORY IMAGE CAROUSEL
   ============================================================ */
.category-image-carousel-section {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 0 14px;
}
.category-image-carousel-shell {
    position: relative; display: flex; align-items: center;
    justify-content: center;
    gap: clamp(2px, 0.35vw, 6px);
    width: 100%;
    padding: 0;
}
.category-image-carousel-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
    --carousel-cols: 6;
    --carousel-gap: clamp(18px, 1.8vw, 26px);
    padding-inline: 0;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    box-sizing: border-box;
}
.category-image-carousel-track    { display: flex; gap: var(--carousel-gap); }
.category-image-card {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    flex: 0 0 calc((100% - ((var(--carousel-cols) - 1) * var(--carousel-gap))) / var(--carousel-cols));
    width: calc((100% - ((var(--carousel-cols) - 1) * var(--carousel-gap))) / var(--carousel-cols));
    min-width: calc((100% - ((var(--carousel-cols) - 1) * var(--carousel-gap))) / var(--carousel-cols));
    max-width: calc((100% - ((var(--carousel-cols) - 1) * var(--carousel-gap))) / var(--carousel-cols));
    text-decoration: none;
    transition: transform var(--t);
    justify-content: flex-start;
    text-align: center;
    scroll-snap-align: start;
}
.category-image-card:hover { transform: translateY(-3px); }
.category-image-card-media {
    width: min(calc(100% - 2px), 204px);
    height: clamp(108px, 7.8vw, 154px);
    border-radius: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-image-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0;
}
.category-image-card-copy h3 {
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    line-height: 1.2;
    text-align: center;
    font-weight: 600;
    margin: 0;
}
.category-image-carousel-arrow {
    position: static;
    width: 34px; height: 34px; flex: 0 0 34px; border-radius: 999px;
    background: transparent; border: 0;
    display: grid; place-items: center; color: var(--button-primary, var(--accent));
    cursor: pointer; font-size: 1.55rem; z-index: 2;
    transition: transform var(--t), color var(--t), opacity var(--t);
}
.category-image-carousel-arrow:hover { color: var(--button-primary, var(--accent)); transform: scale(1.06); }
.category-image-carousel-arrow.prev { left: auto; }
.category-image-carousel-arrow.next { right: auto; }

@media (max-width: 1280px) {
    .category-image-carousel-viewport {
        --carousel-cols: 5;
        --carousel-gap: 16px;
    }
}

@media (max-width: 1024px) {
    .category-image-carousel-viewport {
        --carousel-cols: 4;
        --carousel-gap: 14px;
    }
}

/* ============================================================
   BRANDS CAROUSEL (HOME)
   ============================================================ */
.brands-carousel-section {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 18px 0 26px;
}
.brands-carousel-shell {
    position: relative;
    display: flex;
    align-items: center;
    gap: clamp(2px, 0.35vw, 6px);
    width: 100%;
}
.brands-carousel-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
    --brand-cols: 6;
    --brand-gap: clamp(18px, 1.8vw, 26px);
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
}
.brands-carousel-track {
    display: flex;
    align-items: center;
    gap: var(--brand-gap);
}
.brand-carousel-item {
    flex: 0 0 calc((100% - ((var(--brand-cols) - 1) * var(--brand-gap))) / var(--brand-cols));
    width: calc((100% - ((var(--brand-cols) - 1) * var(--brand-gap))) / var(--brand-cols));
    min-width: calc((100% - ((var(--brand-cols) - 1) * var(--brand-gap))) / var(--brand-cols));
    max-width: calc((100% - ((var(--brand-cols) - 1) * var(--brand-gap))) / var(--brand-cols));
    box-sizing: border-box;
    min-height: clamp(54px, 5vw, 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 2px;
    scroll-snap-align: start;
}
.brand-carousel-image {
    width: min(calc(100% - 2px), 228px);
    height: clamp(48px, 4.2vw, 72px);
    object-fit: contain;
    display: block;
}
.brand-carousel-icon {
    font-size: clamp(1.4rem, 2.2vw, 2.3rem);
    color: #333;
    line-height: 1;
}
.brands-carousel-arrow {
    position: static;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--button-primary, var(--accent));
    display: grid;
    place-items: center;
    font-size: 1.55rem;
    cursor: pointer;
    transition: transform var(--t), color var(--t), opacity var(--t);
}
.brands-carousel-arrow:hover { transform: scale(1.06); }

@media (max-width: 1280px) {
    .brands-carousel-viewport {
        --brand-cols: 5;
        --brand-gap: 16px;
    }
}

@media (max-width: 1024px) {
    .brands-carousel-viewport {
        --brand-cols: 4;
        --brand-gap: 14px;
    }
    .brand-carousel-image {
        height: clamp(44px, 5vw, 62px);
    }
}

@media (max-width: 760px) {
    .brands-carousel-viewport {
        --brand-cols: 3;
        --brand-gap: 12px;
    }
    .brand-carousel-image {
        height: clamp(42px, 8.3vw, 58px);
    }
    .brands-carousel-arrow {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        font-size: 1.2rem;
    }
}

@media (max-width: 560px) {
    .brands-carousel-viewport {
        --brand-cols: 2;
        --brand-gap: 10px;
    }
    .brand-carousel-image {
        height: clamp(40px, 10.5vw, 54px);
    }
    .brands-carousel-arrow {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .brands-carousel-shell {
        gap: 2px;
    }
    .brands-carousel-viewport {
        --brand-cols: 1;
        --brand-gap: 8px;
    }
    .brand-carousel-image {
        height: clamp(38px, 12.8vw, 50px);
    }
    .brands-carousel-arrow {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        font-size: 0.92rem;
    }
}


/* ============================================================
   PRODUCT GRID & CARDS
   ============================================================ */
.page-spacer { padding: 16px 0 44px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}
@media (max-width: 1400px) {
    .product-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.product-card-shell {
    position: relative;
    display: block;
    isolation: isolate;
}
.product-card-shell .product-card {
    height: 100%;
    position: relative;
    z-index: 1;
}
.product-card-shell:hover .product-card,
.product-card-shell:focus-within .product-card {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--accent) 26%, var(--border));
    background: #ffffff;
}
.product-badges--with-actions {
    padding-right: 94px;
}
/* ── Product Card Quick Actions ── */
.btn-favorite, .btn-card-cart {
    width: 36px; height: 36px; border-radius: 50%;
    display: grid; place-items: center;
    background: #ffffff; color: #a1aec0;
    border: 1px solid var(--border);
    cursor: pointer; font-size: 1rem;
    box-shadow: 0 4px 12px -4px rgba(0,0,0,0.12);
    transition: all var(--t);
    pointer-events: auto;
}
.btn-favorite:hover {
    color: #ef4444; border-color: #fecaca;
    background: #fef2f2;
}
.btn-favorite.is-favorite {
    color: #ef4444; border-color: #ef4444;
    background: #ffffff;
}
.btn-card-cart:hover {
    color: var(--accent); border-color: var(--accent);
    background: #fff;
    transform: scale(1.05);
}

.product-card-shell .product-card-actions--overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    display: flex;
    flex-direction: row;
    gap: 6px;
    pointer-events: auto;
}
.product-badges {
    position: absolute;
    inset: 10px 10px auto 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5px;
    z-index: 90;
    pointer-events: none;
}
.product-card-shell:hover .product-card--promo .promo-card-cta__timer,
.product-card-shell:focus-within .product-card--promo .promo-card-cta__timer {
    opacity: 0;
    transform: translateY(-8px);
}
.product-card-shell:hover .product-card--promo .promo-card-cta__buy,
.product-card-shell:focus-within .product-card--promo .promo-card-cta__buy {
    opacity: 1;
    transform: translateY(0);
}

.product-card {
    display: flex; flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform var(--t), border-color var(--t), background var(--t);
    text-decoration: none; color: var(--text);
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--accent) 26%, var(--border));
    background: #ffffff;
}
.product-media {
    position: relative; padding: 10px;
    background: #ffffff; aspect-ratio: 1/1;
    display: grid; place-items: center;
    overflow: hidden;
    isolation: isolate;
}
.product-media::before {
    content: none;
    position: absolute;
    inset: 14px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #eef2f7;
    z-index: 0;
}
.product-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 82%;
    max-height: 82%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.discount-pill {
    padding: 2px 7px; border-radius: 5px;
    background: var(--danger, #dc2626); color: #fff;
    font-size: 0.7rem; font-weight: 700;
}
.product-card .soft-pill {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 2px 7px; border-radius: 999px;
    background: color-mix(in srgb, var(--front-category-button, var(--button-primary, var(--accent))) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--front-category-button, var(--button-primary, var(--accent))) 18%, transparent);
    color: var(--front-category-button, var(--button-primary, var(--accent))); font-size: 0.68rem; font-weight: 600;
}
.product-card-actions {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    z-index: 24;
    pointer-events: auto;
}
.product-body {
    padding: 9px 10px 11px;
    display: flex; flex-direction: column; gap: 5px; flex: 1;
}
.product-body h3 {
    font-size: 0.82rem; font-weight: 700; line-height: 1.28;
    min-height: 2.4em; margin: 0; color: var(--text, #1a1d2e);
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.product-body p {
    font-size: 0.72rem; color: var(--muted, #6b7280); margin: 0;
    line-height: 1.38; min-height: 2em;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.price-row {
    display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px;
    margin-top: 2px;
}
.price-row strong {
    font-size: 1.06rem; font-weight: 800;
    color: var(--price, var(--price-color, #0f5bd4));
}
.old-price { color: #9ca3af; text-decoration: line-through; font-size: 0.74rem; }
.product-meta {
    display: flex; align-items: center;
    justify-content: space-between; margin-top: auto; gap: 6px;
    padding-top: 6px;
    border-top: 1px solid #edf2f7;
}
.stock-pill, .status-pill {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 7px; border-radius: 999px;
    background: #f0fdf4; border: 1px solid #bbf7d0;
    color: var(--success, #16a34a); font-size: 0.68rem; font-weight: 600; white-space: nowrap;
}
.stock-pill.warning { background: #fffbeb; border-color: #fde68a; color: var(--warning, #d97706); }
.stock-pill.danger  { background: #fef2f2; border-color: #fecaca; color: var(--danger, #dc2626); }
.stock-pill.success { background: #f0fdf4; border-color: #bbf7d0; color: var(--success, #16a34a); }
.product-card-action {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 0.72rem; font-weight: 700;
    color: var(--button-primary, var(--accent)); white-space: nowrap;
}
.btn-card-buy-inline {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 700;
    color: var(--button-primary, var(--accent)); background: color-mix(in srgb, var(--button-primary, var(--accent)) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--button-primary, var(--accent)) 16%, transparent); border-radius: 999px;
    padding: 5px 10px; cursor: pointer; white-space: nowrap;
    transition: background var(--t), border-color var(--t), color var(--t);
    text-decoration: none;
}
.btn-card-buy-inline i { font-size: 0.72rem; }
.btn-card-buy-inline:hover {
    background: var(--button-primary, var(--accent));
    color: #fff;
    border-color: var(--button-primary, var(--accent));
}

.product-meta--promo-only {
    justify-content: flex-start;
}
.promo-card-cta {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 50px;
    margin-top: 8px;
    border: 1px solid var(--price, #0f5bd4);
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}
.promo-card-cta__timer,
.promo-card-cta__buy {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 50px;
    transition: opacity var(--t), transform var(--t);
}
.promo-card-cta__timer {
    opacity: 1;
    transform: translateY(0);
}
.promo-card-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    min-width: 48px;
    align-self: stretch;
    background: var(--price, #0f5bd4);
    color: #fff;
    font-size: 1.28rem;
    line-height: 1;
    border-radius: 13px 0 0 13px;
}
.promo-card-cta__icon i {
    line-height: 1;
}
.promo-card-cta__content {
    flex: 1;
    min-width: 0;
    padding: 6px 10px 6px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
}
.promo-card-cta__label {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--price, #0f5bd4);
    line-height: 1;
}
.promo-card-cta__value {
    font-size: 0.92rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--price, #0f5bd4);
    white-space: nowrap;
}
.promo-card-cta__buy {
    position: absolute;
    inset: 0;
    justify-content: center;
    gap: 10px;
    background: var(--price, #0f5bd4);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity var(--t), transform var(--t);
}
.promo-card-cta__buy i {
    font-size: 1rem;
    line-height: 1;
}
.promo-card-cta__buy span {
    line-height: 1;
}


.product-card-shell:hover .promo-card-cta__timer,
.product-card-shell:focus-within .promo-card-cta__timer {
    opacity: 0;
    transform: translateY(-8px);
}

.product-card-shell:hover .promo-card-cta__buy,
.product-card-shell:focus-within .promo-card-cta__buy {
    opacity: 1;
    transform: translateY(0);
}



/* ============================================================
   CATEGORY TILES
   ============================================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(170px,1fr));
    gap: 12px;
}
.category-tile {
    display: flex; align-items: center; gap: 11px;
    padding: 14px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--t), box-shadow var(--t);
    text-decoration: none; color: var(--text);
}
.category-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.category-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 10px; display: grid; place-items: center;
    background: rgba(var(--accent-rgb),0.08); color: var(--blue); font-size: 1.1rem;
}
.category-tile h3 { font-size: 0.85rem; font-weight: 600; }
.category-tile p  { font-size: 0.74rem; color: var(--muted); margin: 1px 0 0; }
.category-tile .section-link { margin-left: auto; flex-shrink: 0; }


/* ============================================================
   MINI GRID
   ============================================================ */
.mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 16px;
}
.mini-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 18px; box-shadow: var(--shadow);
}
.mini-card h3 { font-size: 0.96rem; margin-bottom: 3px; }
.mini-card p  { font-size: 0.8rem; color: var(--muted); margin: 0 0 3px; }
.mini-card .eyebrow { margin-bottom: 5px; }


/* ============================================================
   CATALOG PAGE
   ============================================================ */
.catalog-shell {
    display: grid;
    grid-template-columns: 240px minmax(0,1fr);
    gap: 12px; align-items: start;
}
.filter-card {
    position: sticky; top: calc(var(--header-offset) + 6px);
    padding: 16px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow); display: grid; gap: 16px;
}
.filter-group { display: grid; gap: 6px; }
.filter-group h3 { font-size: 0.87rem; margin: 0; }
.filter-links { display: flex; flex-direction: column; gap: 1px; }
.filter-group a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 7px 9px; border-radius: 7px;
    color: var(--muted-2); font-size: 0.82rem;
    background: transparent;
    transition: background var(--t), color var(--t);
}
.filter-group a:hover  { background: var(--bg); color: var(--text); }
.filter-group a.active { background: rgba(var(--accent-rgb),0.08); color: var(--blue); font-weight: 600; }
.catalog-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; gap: 12px; margin-bottom: 14px;
}
.catalog-header h1,
.product-hero-content h1,
.auth-copy h1,
.profile-header h1 {
    font-family: 'Rajdhani','Space Grotesk',sans-serif;
    font-size: clamp(1.5rem,4vw,2.4rem); margin-top: 4px;
}
.catalog-controls { display: flex; gap: 7px; }
.catalog-controls select,
.panel-select, .panel-input, .panel-textarea {
    width: 100%; padding: 8px 11px;
    background: var(--bg-card); color: var(--text);
    border: 1px solid var(--border); border-radius: var(--radius-sm); outline: none;
    transition: border-color var(--t);
}
.panel-input:focus, .panel-select:focus, .panel-textarea:focus { border-color: var(--blue); }
.catalog-controls select { width: auto; }
.panel-textarea { min-height: 110px; resize: vertical; }


/* ============================================================
   PRODUCT DETAIL — página produto único (product.php)
   ============================================================ */

/* ── legado: desativa estilos antigos ── */
.product-backdrop, .hero-showcase { display: none; }

/* ── Wrapper da página ── */
.product-single-page { background: var(--bg); }
.product-single-wrap { padding: 0 0 48px; }

/* ── Breadcrumbs ── */
.product-breadcrumbs {
    display: flex; align-items: center; flex-wrap: wrap; gap: 5px;
    padding: 14px 0 10px;
    font-size: 0.8rem; color: var(--muted);
}
.product-breadcrumbs a {
    color: var(--blue); font-weight: 500;
    transition: color var(--t);
}
.product-breadcrumbs a:hover { color: var(--accent); }
.product-breadcrumbs span { color: var(--muted); }

/* ── Hero: galeria + resumo ── */
.product-single-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 22px;
    align-items: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

/* ── Galeria com setas (sem scroll) ── */
.product-single-gallery {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

/* wrap da coluna de thumbs: seta + viewport + seta */
.psg-thumb-wrap {
    display: flex; flex-direction: column;
    align-items: center; gap: 4px;
    width: 82px;
}

/* setas de navegação */
.psg-arrow {
    width: 74px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    background: var(--bg-card); color: var(--muted-2);
    font-size: 0.75rem; cursor: pointer; flex-shrink: 0;
    transition: background var(--t), color var(--t), opacity var(--t);
}
.psg-arrow:hover  { background: var(--blue); color: #fff; border-color: var(--blue); }
.psg-arrow:disabled { opacity: 0.35 !important; cursor: default; }
.psg-arrow:disabled:hover { background: var(--bg-card); color: var(--muted-2); border-color: var(--border); }

/* janela fixa — sem overflow */
.psg-thumb-viewport {
    width: 74px;
    overflow: hidden;
    /* altura = 5 thumbs × 74px + 4 gaps × 8px = 402px */
    height: 402px;
    flex-shrink: 0;
}

/* track que desliza via translateY */
.psg-thumb-track {
    display: flex; flex-direction: column; gap: 8px;
    transition: transform 260ms ease;
}

/* thumb individual */
.product-thumb-column { display: none; } /* desativa o antigo */
.product-thumb {
    width: 74px; height: 74px; flex-shrink: 0;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden; background: var(--bg);
    cursor: pointer; padding: 0;
    transition: border-color var(--t), transform var(--t);
}
.product-thumb:hover     { border-color: var(--accent); transform: scale(1.04); }
.product-thumb.is-active { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.12); }
.product-thumb img {
    width: 100%; height: 100%; object-fit: contain;
    display: block; pointer-events: none;
}

/* Imagem principal — zoom via transform */
.product-main-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    display: grid; place-items: center;
    cursor: zoom-in;
}
.product-freight-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 7px;
    background: linear-gradient(180deg, #1fc95c 0%, #16a34a 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    z-index: 2;
}
.product-freight-badge i {
    font-size: 0.76rem;
}
.product-main-visual img {
    width: 86%; height: 86%;
    object-fit: contain;
    transition: transform 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    will-change: transform;
}
.product-main-visual:hover img { transform: scale(1.65); }

/* Hint de lupa (aparece no hover) */
.psg-zoom-hint {
    position: absolute; bottom: 10px; right: 10px;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(var(--accent-rgb),0.85); color: #fff;
    display: grid; place-items: center;
    font-size: 0.85rem; opacity: 0;
    transition: opacity var(--t);
    pointer-events: none;
}
.product-main-visual:hover .psg-zoom-hint { opacity: 1; }

/* ── LIGHTBOX ── */
#psg-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    display: none; align-items: center; justify-content: center;
}
#psg-lightbox.is-open { display: flex; }

.lb-backdrop {
    position: absolute; inset: 0;
    background: rgba(5, 10, 24, 0.92);
    backdrop-filter: blur(4px);
    animation: lb-fade-in 200ms ease;
}
@keyframes lb-fade-in { from { opacity: 0; } to { opacity: 1; } }

.lb-box {
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: 12px;
    max-width: min(92vw, 1100px);
    animation: lb-scale-in 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes lb-scale-in { from { transform: scale(0.88); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.lb-img {
    display: block;
    max-width: min(80vw, 840px);
    max-height: 86vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    background: #0d1424;
}

.lb-close {
    position: absolute; top: -14px; right: -14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 1rem;
    display: grid; place-items: center;
    cursor: pointer; z-index: 2;
    transition: background var(--t), transform var(--t);
}
.lb-close:hover { background: var(--danger); transform: scale(1.1); }

.lb-nav {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 1rem;
    display: grid; place-items: center;
    cursor: pointer;
    transition: background var(--t), transform var(--t);
}
.lb-nav:hover { background: rgba(255,255,255,0.24); transform: scale(1.08); }

.lb-counter {
    position: absolute; bottom: -32px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.6); font-size: 0.8rem; white-space: nowrap;
}


/* ── Resumo lateral ── */
.product-single-summary {
    position: relative;
    display: flex; flex-direction: column; gap: 16px;
}
.product-summary-top {
    display: flex; flex-direction: column; gap: 6px;
    padding-right: 108px;
}
.product-corner-actions {
    position: absolute;
    top: 10px;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 24;
    pointer-events: auto;
    isolation: isolate;
}
.product-corner-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d8e0ea;
    background: #ffffff;
    color: #a1aec0;
    font-size: 1.02rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 18px -16px rgba(15, 23, 42, 0.28);
    transition: border-color var(--t), color var(--t), transform var(--t), box-shadow var(--t), background var(--t);
}
.product-corner-btn i {
    position: relative;
    z-index: 27;
    pointer-events: none;
    transition: transform var(--t), color var(--t);
}
.product-corner-btn svg {
    position: relative;
    z-index: 27;
    pointer-events: none;
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: transform var(--t), color var(--t);
}
.product-corner-btn:hover {
    transform: translateY(-1px);
}
.product-corner-btn:hover i,
.product-corner-btn:hover svg {
    transform: scale(1.03);
}
.product-corner-btn:disabled {
    cursor: wait;
    opacity: 0.82;
    transform: none;
}
.product-corner-btn:disabled i {
    transform: none;
}
.product-corner-btn:disabled svg {
    transform: none;
}
.product-corner-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.14);
}
.product-corner-btn--cart:hover {
    border-color: color-mix(in srgb, var(--accent) 40%, white);
    background: #ffffff;
    color: var(--accent);
    box-shadow: 0 10px 20px -18px color-mix(in srgb, var(--accent) 42%, transparent);
}
.product-corner-btn--cart svg {
    width: 20px;
    height: 20px;
}
.product-corner-btn--favorite {
    z-index: 26;
    border-color: #d8e0ea;
    background: #ffffff;
    color: #a1aec0;
}
.product-corner-btn--favorite:hover {
    border-color: var(--accent);
    background: #ffffff;
    color: var(--accent);
    box-shadow: 0 10px 20px -18px color-mix(in srgb, var(--accent) 42%, transparent);
}
.product-corner-btn--favorite.is-favorite {
    border-color: var(--accent);
    color: var(--accent);
    background: #ffffff;
    box-shadow: 0 10px 20px -18px color-mix(in srgb, var(--accent) 42%, transparent);
}
.product-corner-btn.is-loading {
    opacity: 0.75;
    pointer-events: none;
    animation: pulseFav 1s infinite;
}
@keyframes pulseFav {
    0% { transform: scale(1); }
    50% { transform: scale(0.96); }
    100% { transform: scale(1); }
}
.product-summary-platform {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 999px;
    background: rgba(var(--accent-rgb),0.08);
    border: 1px solid rgba(var(--accent-rgb),0.14);
    color: var(--blue); font-size: 0.78rem; font-weight: 600;
    width: fit-content;
}
.product-single-summary h1 {
    font-family: 'Rajdhani','Space Grotesk',sans-serif;
    font-size: clamp(1.3rem,2.5vw,1.85rem);
    line-height: 1.2; color: var(--text);
    margin: 0;
}
.product-summary-mini {
    display: flex; flex-wrap: wrap; gap: 8px;
    font-size: 0.78rem; color: var(--muted);
}
.product-summary-mini span {
    display: inline-flex; align-items: center;
    padding: 2px 9px; border-radius: 999px;
    background: var(--bg); border: 1px solid var(--border);
}

/* ── Caixa de preço ── */
.product-price-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    display: flex; flex-direction: column; gap: 5px;
}
.product-price-main {
    font-family: 'Rajdhani','Space Grotesk',sans-serif;
    font-size: clamp(1.7rem,3vw,2.4rem);
    font-weight: 700; color: var(--price);
    line-height: 1;
}
.product-price-sub {
    display: flex; align-items: center; gap: 8px;
}
.product-price-before {
    color: var(--muted); text-decoration: line-through; font-size: 0.88rem;
}
.product-price-sub strong { color: var(--danger); font-size: 0.88rem; }
.product-price-note {
    font-size: 0.74rem; color: var(--muted); margin: 0;
}

/* ── Aviso de preço real ── */
.product-payment-toggle {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 14px; border-radius: var(--radius-sm);
    background: #f0fdf4; border: 1px solid #bbf7d0;
    color: var(--success); font-size: 0.82rem; font-weight: 600;
    cursor: default; text-align: left; width: 100%;
}
.product-payment-toggle i { font-size: 1rem; }

/* ── Botão comprar ── */
.product-buy-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.product-buy-primary,
.product-buy-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 60px;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.02rem;
    cursor: pointer;
    transition: transform var(--t), filter var(--t), opacity var(--t), background var(--t), border-color var(--t), color var(--t);
    text-decoration: none;
}
.product-buy-primary {
    background: var(--button-primary);
    color: var(--button-primary-text);
    border: none;
    outline: none;
}
.product-buy-primary:hover { transform: translateY(-1px); filter: brightness(1.04); opacity: 0.94; }
.product-buy-secondary {
    background: #eaf1ff;
    color: var(--blue);
    border: 1px solid #d7e4fb;
}
.product-buy-secondary i {
    font-size: 0.98rem;
}
.product-buy-secondary:hover {
    transform: translateY(-1px);
    filter: brightness(1.01);
}
.product-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border-radius: var(--radius-sm);
    background: var(--product-whatsapp-button, #25D366);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--product-whatsapp-button, #25D366) 22%, transparent);
    transition: transform var(--t), filter var(--t), box-shadow var(--t);
}
.product-whatsapp-btn i {
    font-size: 1.12rem;
}
.product-whatsapp-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 14px 28px color-mix(in srgb, var(--product-whatsapp-button, #25D366) 28%, transparent);
}

/* ── Link checkout ── */
.product-pix-line {
    display: flex; align-items: center; justify-content: center;
    gap: 7px; padding: 10px;
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    color: var(--blue); font-size: 0.85rem; font-weight: 600;
    text-decoration: none;
    transition: border-color var(--t), background var(--t);
}
.product-pix-line:hover { border-color: var(--blue); background: rgba(var(--accent-rgb),0.04); }

/* ── Selos + CEP do produto ── */
.product-seal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
.product-seal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 106px;
    padding: 18px 14px 14px;
    border-radius: 8px;
    border: 1px solid var(--border, #e5e7eb);
    background: var(--bg-card, #ffffff);
    box-shadow: none;
    text-align: center;
}
.product-seal-icon {
    width: 28px;
    height: 28px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bootstrap-icons-color, var(--accent));
    font-size: 1.45rem;
    margin-bottom: 6px;
    line-height: 1;
}
.product-seal-line {
    display: block;
    color: var(--text, #000000);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 19px;
    text-transform: uppercase;
}
.product-seal-line strong,
.product-seal-line--strong {
    font-weight: 700;
}
.product-seal-line--strong {
    font-size: 11px;
}
.product-seal-icon i,
.product-seal-icon .fa,
.product-seal-icon .fa-solid,
.product-seal-icon .fa-regular,
.product-seal-icon .fa-brands,
.product-seal-icon .bi,
.product-seal-icon [class^="bi-"],
.product-seal-icon [class*=" bi-"] {
    color: var(--bootstrap-icons-color, var(--accent)) !important;
}
.product-shipping-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}
.product-shipping-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.product-shipping-label i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    color: var(--accent);
    font-size: 0.95rem;
}
.product-shipping-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    gap: 8px;
}
.product-shipping-input {
    position: relative;
    display: block;
}
.product-shipping-input i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa4b2;
    font-size: 1rem;
}
.product-shipping-input input {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text);
    padding: 0 14px 0 38px;
    font-size: 0.95rem;
    transition: border-color var(--t), box-shadow var(--t);
}
.product-shipping-input input:focus {
    outline: none;
    border-color: color-mix(in srgb, var(--button-primary, var(--accent)) 34%, transparent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--button-primary, var(--accent)) 8%, transparent);
}
.product-shipping-submit {
    height: 44px;
    border: none;
    border-radius: 8px;
    background: #e5e7eb;
    color: #1e293b;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    transition: transform var(--t), background var(--t), box-shadow var(--t);
}
.product-shipping-submit:hover {
    transform: translateY(-1px);
    background: #dbe1ea;
    box-shadow: 0 6px 12px rgba(148, 163, 184, 0.12);
}
.product-shipping-help {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    transition: color var(--t);
}
.product-shipping-help i {
    font-size: 1.08rem;
}
.product-shipping-help:hover {
    color: var(--accent);
}
.product-shipping-status {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 13px;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.45;
    border: 1px solid transparent;
}
.product-shipping-status[hidden] {
    display: none;
}
.product-shipping-status i {
    margin-top: 2px;
    font-size: 1.08rem;
}
.product-shipping-status[data-state="loading"] {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: rgba(29, 78, 216, 0.12);
}
.product-shipping-status[data-state="success"] {
    background: #ecfdf3;
    color: #15803d;
    border-color: rgba(21, 128, 61, 0.14);
}
.product-shipping-status[data-state="error"] {
    background: #fef2f2;
    color: #b91c1c;
    border-color: rgba(185, 28, 28, 0.14);
}

/* ── Strip de informações ── */
.product-reviews-strip {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 20px;
}
.product-reviews-strip h2 {
    font-size: 0.95rem; font-weight: 700; margin-bottom: 14px;
    color: var(--text);
}
.product-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
    gap: 10px;
}
.product-review-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 13px;
}
.product-review-stars {
    font-size: 0.73rem; font-weight: 700; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.05em;
    margin-bottom: 3px;
}
.product-review-card p {
    font-size: 0.84rem; font-weight: 600;
    color: var(--text); margin: 0;
}

/* ── Abas de detalhe ── */
.product-tabs-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    scroll-margin-top: calc(var(--header-offset) + 20px);
}
.product-tab-buttons {
    display: flex; border-bottom: 1px solid var(--border);
    overflow-x: auto; scrollbar-width: none;
}
.product-tab-buttons::-webkit-scrollbar { display: none; }
.product-tab-buttons button {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 13px 20px; white-space: nowrap;
    border: none; border-bottom: 2px solid transparent;
    background: transparent; color: var(--muted-2);
    font-weight: 600; font-size: 0.86rem;
    cursor: pointer; margin-bottom: -1px;
    transition: color var(--t), border-color var(--t), background var(--t);
}
.product-tab-buttons button:hover { color: var(--text); background: var(--bg); }
.product-tab-buttons button.is-active {
    color: var(--blue); border-bottom-color: var(--blue);
    background: rgba(var(--accent-rgb),0.04);
}
.product-tab-panels { padding: 20px; }
.product-tab-panel { display: none; }
.product-tab-panel.is-active { display: block; }
.product-copy-block {
    font-size: 0.88rem; line-height: 1.7;
    color: var(--muted-2);
    white-space: normal;
    overflow-wrap: anywhere;
}
.product-copy-block p { margin: 0 0 0.95rem; }
.product-copy-block p:last-child { margin-bottom: 0; }
.product-copy-block figure {
    margin: 1rem auto;
    max-width: 100%;
}
.product-copy-block img,
.product-copy-block figure img {
    display: block;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0.35rem auto;
    border-radius: 12px;
}
.product-copy-block iframe,
.product-copy-block video {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 220px;
    border: 0;
    border-radius: 14px;
}
.product-detail-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 0;
}
.product-detail-list li {
    padding: 9px 0; border-bottom: 1px solid var(--border);
    font-size: 0.86rem; color: var(--text);
}
.product-detail-list li:last-child { border-bottom: none; }

.product-review-experience {
    display: grid;
    gap: 12px;
}
.product-review-summary-card {
    display: grid;
    gap: 16px;
    padding: 22px;
    border: 1px solid #d8ead8;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fcf7 100%);
}
.product-review-summary-copy {
    display: grid;
    gap: 6px;
}
.product-review-summary-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #16994c;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.15;
}
.product-review-summary-kicker i { font-size: 1.05rem; }
.product-review-summary-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}
.product-review-meter {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}
.product-review-meter-segment {
    height: 8px;
    border-radius: 999px;
    opacity: 0.28;
    transition: opacity var(--t), transform var(--t);
}
.product-review-meter-segment:nth-child(1) { background: #f8c9d0; }
.product-review-meter-segment:nth-child(2) { background: #f6d9c8; }
.product-review-meter-segment:nth-child(3) { background: #f4e7b7; }
.product-review-meter-segment:nth-child(4) { background: #dceebf; }
.product-review-meter-segment:nth-child(5) { background: #18a34a; }
.product-review-meter-segment.is-active {
    opacity: 1;
    transform: scaleY(1.04);
}
.product-review-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.product-review-metric {
    display: flex;
    align-items: center;
    gap: 12px;
}
.product-review-metric-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f0f7f1;
    color: #16994c;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.product-review-metric strong,
.product-review-metric span { display: block; }
.product-review-metric strong {
    color: var(--text);
    font-size: 1.32rem;
    line-height: 1;
}
.product-review-metric span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.86rem;
}
.product-review-feedback {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
}
.product-review-feedback.is-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}
.product-review-feedback.is-error {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
}
.product-review-content {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 12px;
    align-items: start;
}
.product-review-list {
    display: grid;
    gap: 14px;
}
.product-review-item,
.product-review-form-card,
.product-review-empty {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
}
.product-review-item { padding: 18px; }
.product-review-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.product-review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.product-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #eff6ff;
    color: var(--blue);
    display: grid;
    place-items: center;
}
.product-review-avatar img,
.product-review-avatar-preset,
.product-review-avatar-initials {
    width: 100%;
    height: 100%;
}
.product-review-avatar img { object-fit: cover; }
.product-review-avatar-preset,
.product-review-avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-review-avatar-initials {
    font-size: 0.95rem;
    font-weight: 700;
}
.product-review-user-meta { min-width: 0; }
.product-review-user-meta strong,
.product-review-user-meta small { display: block; }
.product-review-user-meta strong {
    color: var(--text);
    font-size: 0.94rem;
}
.product-review-user-meta small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.product-review-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #16994c;
    font-weight: 600;
}
.product-review-rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--accent);
    font-size: 0.92rem;
    flex-shrink: 0;
}
.product-review-item-title {
    margin: 14px 0 8px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 700;
}
.product-review-item-text {
    margin: 0;
    color: var(--muted-2);
    font-size: 0.9rem;
    line-height: 1.7;
}
.product-review-form-card {
    padding: 18px;
    display: grid;
    gap: 14px;
}
.product-review-form-card h3 {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
}
.product-review-form-card p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}
.product-review-form {
    display: grid;
    gap: 14px;
}
.product-review-field {
    display: grid;
    gap: 7px;
}
.product-review-field label {
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
}
.product-review-field input,
.product-review-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    color: var(--text);
    padding: 12px 14px;
    outline: none;
    transition: border-color var(--t), background var(--t);
}
.product-review-field input:focus,
.product-review-field textarea:focus {
    border-color: rgba(var(--accent-rgb),0.38);
    background: #fbfdff;
}
.product-review-field textarea {
    min-height: 122px;
    resize: vertical;
}
.product-review-stars-input {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}
.product-review-stars-input input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.product-review-stars-input label {
    color: #d1d5db;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color var(--t), transform var(--t);
}
.product-review-stars-input label:hover,
.product-review-stars-input label:hover ~ label,
.product-review-stars-input input:checked ~ label {
    color: var(--accent);
    transform: translateY(-1px);
}
.product-review-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--muted-2);
    font-size: 0.82rem;
    line-height: 1.55;
}
.product-review-note i {
    color: #16994c;
    margin-top: 1px;
}
.product-review-submit,
.product-review-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.94rem;
    text-decoration: none;
}
.product-review-submit {
    border: none;
    background: var(--button-primary);
    color: var(--button-primary-text);
}
.product-review-login {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--blue);
}
.product-review-empty {
    padding: 20px 18px;
    display: grid;
    justify-items: flex-start;
    gap: 8px;
}
.product-review-empty i {
    color: var(--accent);
    font-size: 1.1rem;
}
.product-review-empty strong {
    color: var(--text);
    font-size: 0.95rem;
}
.product-review-empty span {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.6;
}
.product-review-empty--compact { padding: 16px; }

/* ── Produtos relacionados ── */
.product-related-section {
    padding: 20px 0;
}
.product-related-section h2 {
    font-size: 1.05rem; font-weight: 700;
    margin-bottom: 14px; color: var(--text);
}
.product-related-section .home-product-grid {
    grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1024px) {
    .product-related-section .home-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .product-related-section .home-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── legado: .product-hero-* (mantém compat de outras páginas) ── */
.product-hero { padding: 24px 0 36px; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.product-hero-stage { display: grid; grid-template-columns: minmax(0,1fr) minmax(290px,0.82fr); gap: 24px; align-items: start; }
.product-hero-media-card { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg); overflow: hidden; display: grid; place-items: center; box-shadow: var(--shadow); }
.product-hero-media-card img { width: 76%; height: 76%; object-fit: contain; }
.product-hero-buy-card { padding: 20px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-card); box-shadow: var(--shadow); display: grid; gap: 14px; }
.product-hero-buy-card h1 { font-size: 1.2rem; line-height: 1.25; }
.product-meta-pill { display: flex; align-items: center; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); background: var(--bg); }
.product-meta-pill span { display: inline-flex; align-items: center; gap: 7px; min-height: 42px; padding: 0 13px; color: var(--muted-2); font-size: 0.85rem; white-space: nowrap; }
.product-meta-pill span+span { border-left: 1px solid var(--border); }
.product-price-line { display: flex; align-items: baseline; justify-content: flex-start; gap: 9px; flex-wrap: wrap; }
.product-price-line strong { font-family: 'Rajdhani','Space Grotesk',sans-serif; font-size: clamp(1.5rem,2.5vw,2.2rem); color: var(--price); }
.product-price-line .old-price { font-size: 0.95rem; }
.product-discount { color: var(--danger); font-weight: 700; font-size: 0.9rem; }
.product-live-row { font-size: 0.85rem; color: var(--muted); }
.product-live-row i { color: var(--accent); margin-right: 5px; }
.product-cta-row { display: grid; grid-template-columns: 52px minmax(0,1fr); gap: 9px; }
.product-fav-btn { min-height: 52px; border-radius: var(--radius-sm); background: rgba(var(--accent-rgb),0.09); color: var(--accent); font-size: 1.4rem; border: 1px solid rgba(var(--accent-rgb),0.22); cursor: pointer; transition: background var(--t); }
.product-fav-btn:hover { background: rgba(var(--accent-rgb),0.17); }
.product-buy-btn { min-height: 52px; border-radius: var(--radius-sm); display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 0.97rem; font-weight: 700; color: #fff; cursor: pointer; background: linear-gradient(90deg,var(--accent,#ff6a1c),color-mix(in srgb, var(--accent,#ff6a1c) 72%, black)); box-shadow: 0 3px 12px rgba(var(--accent-rgb),0.28); transition: transform var(--t), filter var(--t); }
.product-buy-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.detail-list { display: grid; gap: 0; }
.detail-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.detail-row:last-child { border-bottom: none; }
.detail-row span:first-child { color: var(--muted); font-size: 0.84rem; }
.media-showcase { display: grid; gap: 11px; }
.product-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 10px; }
.product-gallery-item { margin: 0; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); }
.product-gallery-item img { width: 100%; aspect-ratio: 16/10; object-fit: contain; transition: transform 220ms ease; background: #fff; }
.product-gallery-item:hover img { transform: scale(1.04); }
.product-video-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 10px; }
.product-video-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); }
.product-video-frame { width: 100%; aspect-ratio: 16/9; border: none; background: #000; display: grid; place-items: center; }
.product-video-frame iframe, .product-video-frame video { width: 100%; height: 100%; border: 0; }



.product-hero-stage {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(290px,0.82fr);
    gap: 24px; align-items: start;
}
.product-hero-media-card {
    width: 100%; aspect-ratio: 1/1;
    border-radius: var(--radius); border: 1px solid var(--border);
    background: var(--bg); overflow: hidden;
    display: grid; place-items: center; box-shadow: var(--shadow);
}
.product-hero-media-card img { width: 76%; height: 76%; object-fit: contain; }
.product-hero-buy-card {
    padding: 20px; border-radius: var(--radius);
    border: 1px solid var(--border); background: var(--bg-card);
    box-shadow: var(--shadow); display: grid; gap: 14px;
}
.product-hero-buy-card h1 { font-size: 1.2rem; line-height: 1.25; }
.product-meta-pill {
    display: flex; align-items: center;
    border-radius: var(--radius-sm); overflow: hidden;
    border: 1px solid var(--border); background: var(--bg);
}
.product-meta-pill span {
    display: inline-flex; align-items: center; gap: 7px;
    min-height: 42px; padding: 0 13px;
    color: var(--muted-2); font-size: 0.85rem; white-space: nowrap;
}
.product-meta-pill span+span { border-left: 1px solid var(--border); }
.product-meta-pill .fa-check { color: var(--success); }
.product-meta-pill .fa-xmark  { color: var(--danger); }
.product-price-line {
    display: flex; align-items: baseline;
    justify-content: flex-start; gap: 9px; flex-wrap: wrap;
}
.product-price-line strong {
    font-family: 'Rajdhani','Space Grotesk',sans-serif;
    font-size: clamp(1.5rem,2.5vw,2.2rem); color: var(--price);
}
.product-price-line .old-price { font-size: 0.95rem; }
.product-discount { color: var(--danger); font-weight: 700; font-size: 0.9rem; }
.product-live-row { font-size: 0.85rem; color: var(--muted); }
.product-live-row i { color: var(--accent); margin-right: 5px; }
.product-cta-row {
    display: grid; grid-template-columns: 52px minmax(0,1fr); gap: 9px;
}
.product-fav-btn {
    min-height: 52px; border-radius: var(--radius-sm);
    background: rgba(var(--accent-rgb),0.09); color: var(--accent);
    font-size: 1.4rem; border: 1px solid rgba(var(--accent-rgb),0.22);
    cursor: pointer; transition: background var(--t);
}
.product-fav-btn:hover { background: rgba(var(--accent-rgb),0.17); }
.product-buy-btn {
    min-height: 52px; border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-size: 0.97rem; font-weight: 700; color: #fff; cursor: pointer;
    background: linear-gradient(90deg,var(--accent,#ff6a1c),color-mix(in srgb, var(--accent,#ff6a1c) 72%, black));
    box-shadow: 0 3px 12px rgba(var(--accent-rgb),0.28);
    transition: transform var(--t), filter var(--t);
}
.product-buy-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.detail-list { display: grid; gap: 0; }
.detail-row {
    display: flex; justify-content: space-between; align-items: center;
    gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--border);
}
.detail-row:last-child { border-bottom: none; }
.detail-row span:first-child { color: var(--muted); font-size: 0.84rem; }
.media-showcase { display: grid; gap: 11px; }
.media-showcase .section-head { margin-bottom: 0; }
.product-gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 10px;
}
.product-gallery-item {
    margin: 0; overflow: hidden;
    border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg);
}
.product-gallery-item img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 220ms ease; }
.product-gallery-item:hover img { transform: scale(1.04); }
.product-video-grid {
    display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 10px;
}
.product-video-card {
    overflow: hidden; border: 1px solid var(--border);
    border-radius: var(--radius); background: var(--bg);
}
.product-video-frame { width: 100%; aspect-ratio: 16/9; border: none; background: #000; display: grid; place-items: center; }
.product-video-frame iframe, .product-video-frame video { width: 100%; height: 100%; border: 0; }
.product-video-frame a { color: var(--text); font-weight: 700; text-decoration: underline; }


/* ============================================================
   CART / CHECKOUT / PROFILE
   ============================================================ */
.cart-layout, .checkout-layout, .profile-layout {
    display: grid;
    grid-template-columns: minmax(0,1.35fr) minmax(270px,0.65fr);
    gap: 12px; align-items: start;
}
.cart-column, .summary-column { display: grid; gap: 12px; align-content: start; }
.cart-item, .checkout-card, .info-card, .profile-card,
.summary-card, .filter-card, .auth-card, .empty-state, .product-panel {
    padding: 16px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius);
}
.cart-item {
    display: grid; grid-template-columns: 88px minmax(0,1fr) auto auto;
    align-items: center; gap: 12px;
}
.cart-item img { width: 100%; height: 72px; object-fit: contain; border-radius: var(--radius-sm); background: var(--bg); }
.cart-item h3  { margin: 0 0 3px; font-size: 0.88rem; }
.summary-card  { position: sticky; top: calc(var(--header-offset)+6px); display: grid; gap: 12px; }
.summary-list  { display: flex; flex-direction: column; gap: 9px; }
.summary-row   { display: flex; justify-content: space-between; align-items: center; gap: 7px; }
.summary-total { padding-top: 11px; border-top: 1px solid var(--border); font-size: 1.05rem; font-weight: 700; color: var(--price); }
.checkout-card, .profile-card, .info-card { display: grid; gap: 13px; }
.info-grid     { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; }


/* ============================================================
   AUTH
   ============================================================ */
.auth-layout {
    min-height: 100vh; display: grid;
    grid-template-columns: minmax(0,1fr) minmax(340px,400px);
    gap: 24px; align-items: center;
    width: min(calc(100% - 24px),1060px);
    margin: 0 auto; padding: 36px 0;
}
.auth-copy { padding: 28px 0; }
.auth-copy p { color: var(--muted-2); max-width: 480px; }
.auth-benefits { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.auth-card { box-shadow: var(--shadow-md); }
.auth-header { margin-bottom: 12px; }
.auth-form   { display: grid; gap: 18px; }
.chip {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 7px 11px; border-radius: 999px;
    background: var(--bg); border: 1px solid var(--border);
    color: var(--muted-2); font-size: 0.8rem;
}
.chip:hover { background: #e8ebf2; }


/* ============================================================
   FORMS
   ============================================================ */
.panel-field { display: grid; gap: 8px; }
.panel-field label { color: var(--muted-2); font-size: 0.84rem; font-weight: 600; }
.alert {
    padding: 11px 13px; border-radius: var(--radius-sm);
    border: 1px solid transparent; font-size: 0.88rem;
}
.alert.success { background: #f0fdf4; border-color: #bbf7d0; color: #15803d; }
.alert.error   { background: #fef2f2; border-color: #fecaca; color: #b91c1c; }
.alert.info    { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.form-meta     { display: flex; justify-content: space-between; gap: 9px; color: var(--muted); font-size: 0.84rem; }
.empty-state   { text-align: center; display: grid; justify-items: center; gap: 9px; padding: 20px; }
.empty-state i { font-size: 2.2rem; color: var(--muted); }
.empty-state h3 { color: var(--text); }
.empty-state p  { color: var(--muted); }


/* ============================================================
   GLASS / PANEL COMPAT
   ============================================================ */
.glass-card, .surface-card, .panel-card, .hero-panel {
    padding: 18px; border: 1px solid var(--border);
    border-radius: var(--radius); background: var(--bg-card);
    box-shadow: var(--shadow);
}
.hero-panel { display: grid; gap: 12px; }
.hero-panel .panel-stat {
    display: flex; align-items: center; justify-content: space-between;
    gap: 9px; padding-bottom: 11px; border-bottom: 1px solid var(--border);
}
.hero-panel .panel-stat:last-child { padding-bottom: 0; border-bottom: none; }
.hero-panel .panel-stat span   { color: var(--muted); font-size: 0.84rem; }
.hero-panel .panel-stat strong { font-size: 1.15rem; color: var(--price); }


/* ============================================================
   PROFILE EXTENDIDO
   ============================================================ */
.profile-hero {
    display: flex; align-items: center; gap: 16px; padding: 20px;
    margin: 16px 0 0; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius); flex-wrap: wrap;
}
.profile-avatar-wrap { position: relative; flex-shrink: 0; }
.profile-avatar-circle {
    width: 58px; height: 58px; border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(135deg,color-mix(in srgb, var(--accent,#ff6a1c) 78%, white),var(--accent,#ff6a1c));
    color: #fff; font-size: 1.3rem; font-weight: 800;
    box-shadow: 0 3px 12px rgba(var(--accent-rgb),0.28);
}
.profile-avatar-circle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.profile-online-dot {
    position: absolute; bottom: 2px; right: 2px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--success); border: 2px solid var(--bg-card);
}
.profile-meta { display: flex; flex-direction: column; gap: 3px; }
.profile-meta h1 { font-size: 1.15rem; }
.profile-meta p  { margin: 0; color: var(--muted); font-size: 0.84rem; }
.profile-meta small { font-size: 0.76rem; color: var(--muted); }
.profile-badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 9px; border-radius: 999px;
    background: rgba(var(--accent-rgb),0.10); color: var(--blue);
    font-size: 0.74rem; font-weight: 700;
}
.profile-actions { margin-left: auto; display: flex; gap: 7px; }
.profile-tabs { display: flex; gap: 3px; border-bottom: 2px solid var(--border); margin-bottom: 16px; }
.profile-tab {
    padding: 9px 14px; border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    color: var(--muted-2); font-size: 0.86rem; font-weight: 600;
    border-bottom: 2px solid transparent; cursor: pointer;
    background: none; border: none; margin-bottom: -2px;
    transition: color var(--t), border-color var(--t);
}
.profile-tab.active { color: var(--blue); border-bottom: 2px solid var(--blue); }
.profile-tab-panel { display: none; }
.profile-tab-panel.active { display: block; }
.profile-list { display: grid; gap: 11px; }
.purchase-item {
    display: grid; grid-template-columns: 66px minmax(0,1fr) auto;
    gap: 11px; align-items: center; padding: 12px;
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
}
.purchase-item img { width: 66px; height: 66px; border-radius: var(--radius-sm); object-fit: cover; }
.purchase-item h3  { margin: 0 0 3px; font-size: 0.87rem; }
.key-box {
    display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
    margin-top: 9px; padding: 9px 11px;
    border-radius: var(--radius-sm);
    background: var(--bg); border: 1px solid var(--border);
}
.copy-button {
    min-height: 32px; padding: 0 11px;
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    background: var(--bg-card); color: var(--muted-2); cursor: pointer;
    transition: background var(--t);
}
.copy-button:hover { background: var(--bg); }


/* ============================================================
   METRICS / STATUS
   ============================================================ */
.metric-grid {
    display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 12px;
}
.status-badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 9px; border-radius: 999px; font-size: 0.74rem; font-weight: 700;
}
.status-badge.success { background: #f0fdf4; color: var(--success); }
.status-badge.warning { background: #fffbeb; color: var(--warning); }
.status-badge.danger  { background: #fef2f2; color: var(--danger); }
.status-badge.muted   { background: var(--bg); color: var(--muted); }



/* ============================================================
   FOOTER
   ============================================================ */
.site-footer.site-footer--showcase {
    position: relative;
    overflow: hidden;
    margin-top: 56px;
    padding: 0 0 22px;
    border-top: none;
    color: rgba(255,255,255,0.88);
    background:
        radial-gradient(circle at 0% 0%, rgba(255,255,255,0.20), transparent 34%),
        radial-gradient(circle at 16% 92%, rgba(255,255,255,0.10), transparent 18%),
        linear-gradient(135deg,
            var(--footer-gradient-start, var(--footer-bg, #0e1e3c)) 0%,
            var(--footer-bg, #0e1e3c) 48%,
            var(--footer-gradient-end, var(--accent,#ff6a1c)) 100%
        );
}
.site-footer.site-footer--showcase::before,
.site-footer.site-footer--showcase::after {
    content: "";
    position: absolute;
    border-radius: 30px;
    background: rgba(255,255,255,0.05);
    transform: rotate(35deg);
    pointer-events: none;
}
.site-footer.site-footer--showcase::before {
    width: 180px;
    height: 180px;
    left: 48px;
    bottom: -70px;
}
.site-footer.site-footer--showcase::after {
    width: 110px;
    height: 110px;
    left: 250px;
    bottom: 56px;
}
.site-footer--showcase .container {
    position: relative;
    z-index: 1;
}
.footer-newsletter-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: center;
    padding: 34px 0 28px;
    border-bottom: 1px solid rgba(255,255,255,0.16);
}
.footer-newsletter-copy {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-newsletter-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-size: 1.9rem;
    box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}
.footer-newsletter-copy strong {
    display: block;
    margin: 0;
    color: #fff;
    font-size: clamp(1.15rem, 2vw, 2rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}
.footer-newsletter-copy p {
    margin: 8px 0 0;
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
}
.footer-newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 16px;
}
.footer-newsletter-form input {
    min-width: 0;
    height: 56px;
    border: none;
    border-radius: 10px;
    padding: 0 18px;
    background: rgba(255,255,255,0.98);
    color: #1a1d2e;
    font-size: 0.98rem;
    box-shadow: 0 12px 26px rgba(8, 13, 27, 0.12);
}
.footer-newsletter-form input::placeholder {
    color: #6c748c;
}
.footer-newsletter-form button {
    height: 56px;
    border: none;
    border-radius: 10px;
    padding: 0 20px;
    background: var(--accent,#ff6a1c);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 18px 30px rgba(0,0,0,0.14);
}
.footer-showcase-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) repeat(4, minmax(160px, 1fr));
    gap: 30px;
    padding: 42px 0 30px;
}
.footer-brand-column {
    display: grid;
    align-content: start;
    gap: 16px;
}
.footer-branding {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-branding .brand-logo-image {
    display: block;
    max-width: 240px;
    max-height: 68px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.footer-branding .brand-copy strong {
    color: #fff;
    font-size: 1.3rem;
}
.footer-branding .brand-copy small {
    color: rgba(255,255,255,0.62);
}
.footer-about-text {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 0.96rem;
    line-height: 1.7;
}
.footer-company-meta {
    display: grid;
    gap: 7px;
    color: rgba(255,255,255,0.74);
    font-size: 0.88rem;
    line-height: 1.6;
}
.footer-company-meta strong {
    color: #fff;
}
.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}
.footer-column h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.footer-column a,
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.76);
    font-size: 0.94rem;
    line-height: 1.55;
    text-decoration: none;
}
.footer-column a {
    padding: 4px 0;
}
.footer-column a:hover {
    color: #fff;
    transform: none;
}
.footer-column a span,
.footer-contact-item span {
    display: block;
    color: rgba(255,255,255,0.70);
}
.footer-column a strong,
.footer-contact-item strong {
    display: block;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
}
.footer-contact-list {
    display: grid;
    gap: 16px;
}
.footer-contact-item i {
    width: 20px;
    margin-top: 3px;
    color: #fff;
    font-size: 1rem;
    text-align: center;
}
.footer-contact-item > div {
    display: grid;
    gap: 3px;
}
.footer-payments--cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-payments--cards span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.9rem;
}
.footer-payments--cards span i {
    font-size: 1.2rem;
}
.footer-payments--cards span strong {
    font-size: 0.88rem;
    font-weight: 700;
}
.footer-payment-banner {
    padding: 8px;
}
.footer-payment-banner img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 48px;
    padding: 6px 8px;
    border-radius: 10px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

/* Ajuste solicitado: quando houver imagem de formas de pagamento, ela fica solta, sem card, e maior. */
.footer-payments--cards span.footer-payment-banner {
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.footer-payment-banner img {
    width: auto;
    max-width: min(280px, 100%);
    max-height: 82px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
}
@media (max-width: 720px) {
    .footer-payment-banner img {
        max-width: min(240px, 100%);
        max-height: 70px;
    }
}

.footer-security-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 22px 36px rgba(9, 16, 33, 0.10);
}
.footer-security-card i {
    color: #fff;
    font-size: 2rem;
}
.footer-security-card strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}
.footer-security-card span {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-payment-security-banner {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    max-width: 100%;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    text-decoration: none;
}
.footer-payment-security-banner img {
    display: block;
    width: auto;
    max-width: min(180px, 100%);
    height: auto;
    max-height: 52px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}
.footer-payment-security-banner:hover img {
    transform: none;
}
@media (max-width: 720px) {
    .footer-payment-security-banner {
        width: 100%;
        justify-content: flex-start;
    }
    .footer-payment-security-banner img {
        max-width: min(160px, 100%);
        max-height: 46px;
    }
}

.footer-social-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 0 16px;
}
.footer-social-line::before,
.footer-social-line::after {
    content: "";
    flex: 1;
    max-width: 240px;
    height: 1px;
    background: rgba(255,255,255,0.18);
}
.footer-social-link {
    width: var(--footer-social-box-size, 56px);
    min-width: var(--footer-social-box-size, 56px);
    height: var(--footer-social-box-size, 56px);
    min-height: var(--footer-social-box-size, 56px);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #ffffff;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    text-decoration: none;
    transition: transform var(--t), filter var(--t), border-color var(--t);
}
.footer-social-link i,
.footer-social-link .fa,
.footer-social-link .fa-brands,
.footer-social-link .fa-solid,
.footer-social-link .fa-regular,
.footer-social-link .bi {
    font-size: var(--footer-social-icon-size, 25px) !important;
    line-height: 1 !important;
    display: inline-block;
    width: auto;
    height: auto;
}
.footer-social-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    border-color: rgba(255,255,255,0.30);
}
.footer-social-link--discord   { background: #1a2d7c; color: #8d9dff; border-color: rgba(141,157,255,0.32); }
.footer-social-link--twitter   { background: #12355d; color: #31b6ff; border-color: rgba(49,182,255,0.30); }
.footer-social-link--instagram { background: #3e3148; color: #f4b26a; border-color: rgba(244,178,106,0.32); }
.footer-social-link--facebook  { background: #173c73; color: #3f86f5; border-color: rgba(63,134,245,0.34); }
.footer-social-link--youtube   { background: #5d1f30; color: #ff3b34; border-color: rgba(255,59,52,0.34); }
.footer-social-link--twitch    { background: #3b2865; color: #9f66ff; border-color: rgba(159,102,255,0.34); }
.footer-bottom.footer-bottom--showcase {
    display: grid;
    gap: 5px;
    margin-top: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.16);
    text-align: center;
}
.footer-bottom.footer-bottom--showcase span {
    color: rgba(255,255,255,0.72);
    font-size: 0.88rem;
}

@media (max-width: 1180px) {
    .footer-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .footer-newsletter-shell {
        grid-template-columns: 1fr;
    }
    .footer-newsletter-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .site-footer.site-footer--showcase {
        margin-top: 44px;
    }
    .footer-newsletter-copy {
        align-items: flex-start;
    }
    .footer-showcase-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px 0 24px;
    }
    .footer-social-line::before,
    .footer-social-line::after {
        display: none;
    }
}

@media (max-width: 560px) {
    .footer-newsletter-copy {
        flex-direction: column;
    }
    .footer-newsletter-icon {
        width: 62px;
        height: 62px;
        border-radius: 10px;
        font-size: 1.6rem;
    }
    .footer-newsletter-form button,
    .footer-newsletter-form input {
        height: 52px;
        border-radius: 15px;
    }
    .footer-bottom.footer-bottom--showcase {
        text-align: left;
    }
}


/* ============================================================
   FLOATING SOCIALS
   ============================================================ */
.floating-socials {
    position: fixed;
    left: 18px;
    bottom: 24px;
    z-index: 2390;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.floating-social-btn {
    width: 46px;
    height: 46px;
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--floating-social-border, rgba(15, 32, 65, 0.1));
    background: #fff;
    color: var(--floating-social-color, #0f2041);
    text-decoration: none;
    transition: transform var(--t), border-color var(--t), background var(--t), color var(--t);
}
.floating-social-btn::before,
.floating-social-btn::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--floating-social-glow, color-mix(in srgb, var(--accent) 34%, transparent)) 0%, transparent 68%);
    filter: blur(6px);
    opacity: 0;
    transform: scale(0.78);
    pointer-events: none;
    z-index: -1;
    animation: floatingSocialPulse 2.8s ease-out infinite;
}
.floating-social-btn::after {
    animation-delay: 1.4s;
}
.floating-social-btn:hover {
    transform: translateX(2px);
    border-color: var(--floating-social-border-hover, color-mix(in srgb, var(--accent) 28%, transparent));
    background: var(--floating-social-hover-bg, #fff7f1);
}
.floating-social-btn i {
    font-size: 1.05rem;
}
.floating-social-btn--whatsapp { --floating-social-color: #25D366; --floating-social-border: rgba(37, 211, 102, 0.24); --floating-social-border-hover: rgba(37, 211, 102, 0.42); --floating-social-hover-bg: rgba(37, 211, 102, 0.10); --floating-social-glow: rgba(37, 211, 102, 0.36); }
.floating-social-btn--instagram { --floating-social-color: #E4405F; --floating-social-border: rgba(228, 64, 95, 0.24); --floating-social-border-hover: rgba(228, 64, 95, 0.42); --floating-social-hover-bg: rgba(228, 64, 95, 0.10); --floating-social-glow: rgba(228, 64, 95, 0.34); }
.floating-social-btn--facebook { --floating-social-color: #1877F2; --floating-social-border: rgba(24, 119, 242, 0.24); --floating-social-border-hover: rgba(24, 119, 242, 0.42); --floating-social-hover-bg: rgba(24, 119, 242, 0.10); --floating-social-glow: rgba(24, 119, 242, 0.34); }
.floating-social-btn--tiktok { --floating-social-color: #111111; --floating-social-border: rgba(17, 17, 17, 0.24); --floating-social-border-hover: rgba(17, 17, 17, 0.42); --floating-social-hover-bg: rgba(17, 17, 17, 0.08); --floating-social-glow: rgba(17, 17, 17, 0.24); }
.floating-social-btn--telegram { --floating-social-color: #229ED9; --floating-social-border: rgba(34, 158, 217, 0.24); --floating-social-border-hover: rgba(34, 158, 217, 0.42); --floating-social-hover-bg: rgba(34, 158, 217, 0.10); --floating-social-glow: rgba(34, 158, 217, 0.34); }
.floating-social-btn--youtube { --floating-social-color: #FF0000; --floating-social-border: rgba(255, 0, 0, 0.24); --floating-social-border-hover: rgba(255, 0, 0, 0.42); --floating-social-hover-bg: rgba(255, 0, 0, 0.10); --floating-social-glow: rgba(255, 0, 0, 0.34); }

@keyframes floatingSocialPulse {
    0% {
        opacity: 0;
        transform: scale(0.78);
    }
    18% {
        opacity: 0.58;
    }
    62% {
        opacity: 0;
        transform: scale(1.42);
    }
    100% {
        opacity: 0;
        transform: scale(1.42);
    }
}

/* ============================================================
   SUPPORT CHAT
   ============================================================ */
.support-chat {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 2400;
    font-family: 'Space Grotesk', system-ui, sans-serif;
}
.support-chat-fab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 58px;
    padding: 0 18px 0 14px;
    border: 1px solid rgba(15, 32, 65, 0.08);
    border-radius: 999px;
    background: #fff;
    color: #0f2041;
    box-shadow: 0 18px 42px rgba(15, 32, 65, 0.22);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    position: relative;
    z-index: 2;
}
.support-chat-fab:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--accent) 24%, transparent);
    box-shadow: 0 22px 50px rgba(15, 32, 65, 0.26);
}
.support-chat-fab-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--accent,#ff6a1c), color-mix(in srgb, var(--accent,#ff6a1c) 72%, white));
    flex-shrink: 0;
}
.support-chat-fab-text {
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}
.support-chat-fab-badge {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--accent,#ff6a1c);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}
.support-chat-panel {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: min(392px, calc(100vw - 28px));
    height: auto;
    display: none;
    z-index: 2;
}

.support-chat-backdrop {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 32, 65, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease;
    display: none;
}

.support-chat.is-open .support-chat-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.support-chat.is-open .support-chat-panel {
    display: block;
}
.support-chat-shell {
    max-height: min(640px, calc(100vh - 108px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(15, 32, 65, 0.08);
    background: #fff;
    box-shadow: 0 28px 80px rgba(15, 32, 65, 0.28);
}
.support-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid #e8eef7;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}
.support-chat-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent,#ff6a1c);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.support-chat-header strong {
    display: block;
    margin-top: 4px;
    color: #0f2041;
    font-size: 1.08rem;
}
.support-chat-header small {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 0.8rem;
}
.support-chat-close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f3f6fb;
    color: #0f2041;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    cursor: pointer;
}
.support-chat-close:hover {
    background: #e9eef7;
}
.support-chat-feedback {
    margin: 12px 16px 0;
    padding: 10px 12px;
    border-radius: 14px;
    background: #fff8ef;
    border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
    color: #9a3412;
    font-size: 0.82rem;
    line-height: 1.45;
}
.support-chat-register {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}
.support-chat-conversation {
    flex: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}
.support-chat-register[hidden],
.support-chat-conversation[hidden] {
    display: none !important;
}
.support-chat-form {
    display: grid;
    gap: 12px;
    padding: 16px;
}
.support-chat-field {
    display: grid;
    gap: 6px;
}
.support-chat-field label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
}
.support-chat-field input {
    width: 100%;
    height: 46px;
    border-radius: 14px;
    border: 1px solid #dbe4ef;
    background: #fff;
    color: #0f2041;
    padding: 0 14px;
    outline: none;
}
.support-chat-field input:focus {
    border-color: color-mix(in srgb, var(--accent) 45%, transparent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}
.support-chat-submit,
.support-chat-composer button {
    height: 46px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent,#ff6a1c), color-mix(in srgb, var(--accent,#ff6a1c) 72%, white));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 22%, transparent);
}
.support-chat-submit:hover,
.support-chat-composer button:hover {
    filter: brightness(1.02);
}
.support-chat-contact-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid #e8eef7;
    background: #fff;
}
.support-chat-contact-bar-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}
.support-chat-contact-bar span[data-support-chat-contact-name] {
    display: block;
    color: #0f2041;
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.25;
}
.support-chat-contact-bar small {
    color: #64748b;
    font-size: 0.72rem;
    margin-top: 2px;
}
.support-chat-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    padding-top: 3px;
}
.support-chat-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}
.support-chat-messages {
    flex: 1;
    min-height: 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Mais compacto */
    padding: 16px;
    background: #f8fafc;
}
.support-chat-message {
    display: flex;
}
.support-chat-message--visitor {
    justify-content: flex-end;
}
.support-chat-bubble {
    display: inline-flex;
    flex-direction: column;
    max-width: 82%;
    padding: 8px 12px;
    border-radius: 14px;
    background: #fff;
    color: #1a1d2e;
    border: 1px solid #e6edf5;
    box-shadow: 0 1px 4px rgba(15, 32, 65, 0.08);
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.4;
    font-size: 0.88rem;
}
.support-chat-message--visitor .support-chat-bubble {
    background: linear-gradient(135deg, var(--accent,#ff6a1c), color-mix(in srgb, var(--accent,#ff6a1c) 72%, white));
    color: #fff;
    border-color: transparent;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 6px color-mix(in srgb, var(--accent) 15%, transparent);
}
.support-chat-message:not(.support-chat-message--visitor) .support-chat-bubble {
    border-bottom-left-radius: 4px;
}
.support-chat-message-meta {
    display: block;
    margin-top: 4px;
    font-size: 0.70rem;
    opacity: 0.62;
}
.support-chat-composer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 14px 16px 16px;
    border-top: 1px solid #e8eef7;
    background: #fff;
}
.support-chat-composer input {
    height: 46px;
    border-radius: 14px;
    border: 1px solid #dbe4ef;
    background: #fff;
    padding: 0 14px;
    color: #0f2041;
    outline: none;
}
.support-chat-composer input:focus {
    border-color: color-mix(in srgb, var(--accent) 45%, transparent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}
.support-chat-empty {
    display: grid;
    place-items: center;
    padding: 18px;
    color: #64748b;
    text-align: center;
    min-height: 280px;
}
.support-chat-empty strong {
    display: block;
    color: #0f2041;
    margin-bottom: 6px;
}
@media (max-width: 640px) {
    .floating-socials {
        left: 10px;
        top: auto;
        bottom: 18px;
        transform: none;
        gap: 8px;
    }

    .floating-social-btn {
        width: 42px;
        height: 42px;
    }

    .support-chat {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .support-chat-fab {
        width: 100%;
        justify-content: center;
    }

    .support-chat-panel {
        right: 0;
        left: 0;
        bottom: 68px;
        width: 100%;
        height: auto;
    }
    .support-chat-shell {
        max-height: calc(100vh - 88px);
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
[data-animate]         { opacity: 0; transform: translateY(14px); transition: opacity 360ms ease, transform 360ms ease; }
[data-animate].in-view { opacity: 1; transform: none; }
.search-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.search-tags a { color: var(--muted-2); }


/* ============================================================
   HERO / PRODUCT COMPAT (campos não usados mas referenciados)
   ============================================================ */
.hero-copy h1    { font-family: 'Rajdhani','Space Grotesk',sans-serif; }
.hero-showcase   { display: none; }
.hero-discount   { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 7px; background: var(--accent); color: #fff; font-weight: 700; font-size: 0.8rem; }
.hero-price strong { font-size: 1.7rem; color: #fff; }
.hero-platform   { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.8); border-radius: 999px; padding: 4px 11px; font-size: 0.78rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
/* .hero-grid, .hero-copy, .hero-meta, .hero-actions — legado (sem regras) */
.hero-meta   { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 10px; }


/* ============================================================
   RESPONSIVO — 1100px
   ============================================================ */
@media (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(5,1fr); }
    .header-topbar { grid-template-columns: 220px 1fr auto; }
    .product-related-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 920px) {

    .header-utility-bar {
        gap: 22px;
        min-height: 62px;
    }
    .header-utility-dropdown {
        min-width: 300px;
    }
    .product-grid  { grid-template-columns: repeat(3,1fr); }
    .catalog-shell { grid-template-columns: 1fr; }
    .filter-card   { position: static; }
    .hero-slide {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        padding: 22px 16px 18px;
        gap: 14px;
    }
    .hero-slide-copy { max-width: 100%; }
    .hero-slide-visual {
        display: block;
        width: min(100%, 420px);
        margin: 0 auto;
    }
    .hero-slide-frame img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: contain;
    }
    .hero-slide.content-only .hero-slide-visual { display: block; width: min(100%, 420px); margin: 0 auto; }
    .hero-slide.visual-only {
        padding: 0;
        gap: 0;
    }
    .hero-slide.visual-only .hero-slide-visual { display: block; width: 100%; margin: 0; }
    .hero-slide.visual-only .hero-slide-frame img {
        height: auto;
        min-height: 200px;
        max-height: 280px;
        aspect-ratio: auto;
        object-fit: contain;
    }
    .footer-grid   { grid-template-columns: 1fr 1fr; }
    .header-topbar { grid-template-columns: 190px 1fr auto; }
    /* produto único */
    .product-single-hero { grid-template-columns: 1fr; padding: 16px; }
    .product-related-grid { grid-template-columns: repeat(2,1fr); }
    .product-seal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {

    .header-utility-wrap { display: none; }
    :root { --header-offset: 104px; }
    .mobile-toggle { display: grid !important; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); color: rgba(255,255,255,0.82); }
    .header-topbar { grid-template-columns: auto 1fr auto; }
    .topbar-center .search-form { min-width: 0; }
    .brand-copy small { display: none; }
    .header-user-action {
        padding-left: 0;
        gap: 0;
    }
    .header-user-action .user-greeting { display: none; }

    /* Hide desktop nav bar on mobile */
    .floating-nav { display: none !important; }

    /* Show the drawer */
    .mobile-drawer { display: block; }

    .product-grid  { grid-template-columns: repeat(2,1fr); gap: 9px; }
    .category-grid { grid-template-columns: 1fr 1fr; }
    .mini-grid     { grid-template-columns: 1fr; }
    .metric-grid   { grid-template-columns: repeat(2,1fr); }
    .benefit-grid  { grid-template-columns: 1fr 1fr; }
    .benefit-item  { border-right: none; border-bottom: 1px solid var(--border); }
    .benefit-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .benefit-item:last-child, .benefit-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

    .hero-slide { flex-direction: column; min-height: auto; padding: 20px 16px; gap: 12px; }
    .hero-slide-copy h1 { font-size: 1.55rem; }
    .hero-slide-visual {
        display: block;
        width: min(100%, 320px);
        margin: 0 auto;
    }
    .hero-slide.visual-only .hero-slide-frame img {
        min-height: 170px;
        max-height: 220px;
    }

    .section-head  { flex-direction: column; align-items: flex-start; }
    .catalog-header{ flex-direction: column; align-items: flex-start; }
    .footer-grid   { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }

    .cart-layout, .checkout-layout, .profile-layout { grid-template-columns: 1fr; }
    .summary-card  { position: static; }
    .cart-item     { grid-template-columns: 72px minmax(0,1fr) auto; }
    /* produto único mobile */
    .product-single-gallery { grid-template-columns: 1fr; }
    .product-thumb-column   { flex-direction: row; max-height: none; overflow-x: auto; overflow-y: hidden; }
    .product-thumb          { width: 60px; height: 60px; flex-shrink: 0; }
    .product-related-grid   { grid-template-columns: repeat(2,1fr); }
    .product-buy-box        { grid-template-columns: 1fr; }
    .product-summary-top    { padding-right: 96px; }
    .product-corner-actions { top: 8px; gap: 6px; }
    .product-corner-btn { width: 40px; height: 40px; font-size: 0.92rem; }
    .product-seal-grid      { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .product-seal-card      { min-height: 106px; padding: 18px 12px 14px; }
    .product-seal-icon      { margin-bottom: 6px; font-size: 1.35rem; }
    .product-seal-line      { font-size: 10px; line-height: 19px; }
    .product-seal-line--strong { font-size: 10px; font-weight: 700; }
    .product-shipping-form  { grid-template-columns: minmax(0, 1fr) 70px; }
    .product-review-metrics { grid-template-columns: 1fr; gap: 14px; }
    .product-review-content { grid-template-columns: 1fr; }
    .product-review-item-top { flex-direction: column; align-items: flex-start; }
    .product-review-rating { font-size: 0.88rem; }
    .purchase-item { grid-template-columns: 1fr; }

    .product-hero-stage { grid-template-columns: 1fr; }
    .product-hero-media-card { max-width: 320px; margin: 0 auto; }
    .auth-layout   { grid-template-columns: 1fr; padding-top: 110px; }
    .info-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: repeat(2,1fr); }
    .benefit-grid { grid-template-columns: 1fr; }
    .benefit-item { border-right: none; }
    .dual-banner-grid { grid-template-columns: 1fr; }
    .product-seal-grid { grid-template-columns: 1fr; }
    .product-freight-badge {
        top: 10px;
        left: 10px;
        min-height: 26px;
        padding: 0 10px;
        font-size: 0.66rem;
    }
    .product-seal-card { min-height: 106px; padding-inline: 14px; }
    .product-seal-line { font-size: 10px; line-height: 19px; }
    .product-seal-line--strong { font-size: 10px; font-weight: 700; }
}


/* ============================================================
   HOME SECTIONS — novos componentes
   ============================================================ */

/* Seção genérica da home */
.home-section { padding: 20px 0; }

.home-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 14px;
}
.home-section-title { display: flex; flex-direction: column; gap: 2px; }
.home-eyebrow {
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--accent);
}
.home-section-title h2 {
    font-family: 'Rajdhani','Space Grotesk',sans-serif;
    font-size: clamp(1.15rem,2.2vw,1.55rem);
    color: var(--text); margin: 0;
}
.home-see-all {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--blue); font-size: 0.82rem; font-weight: 600;
    white-space: nowrap;
    transition: gap var(--t);
}
.home-see-all:hover { gap: 9px; }

/* Grid de produtos na home — 4 colunas */
.home-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

/* ── Banners duplos ── */
.dual-banner-section { padding: 0 0 20px; }
.dual-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.dual-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 24px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    min-height: 130px;
    transition: filter var(--t), transform var(--t);
}
.dual-banner:hover { filter: brightness(1.06); transform: translateY(-1px); }

.dual-banner--blue {
    background: linear-gradient(120deg, color-mix(in srgb, var(--hero-surface) 86%, black) 0%, var(--button-primary, var(--accent)) 60%, color-mix(in srgb, var(--button-primary, var(--accent)) 74%, white) 100%);
    color: #fff;
}
.dual-banner--purple {
    background: linear-gradient(120deg, #1a0b55 0%, #5e2be8 60%, #7c4df5 100%);
    color: #fff;
}
.dual-banner--image-only {
    padding: 0 !important;
    overflow: hidden;
    background: transparent;
    border: none;
}

.dual-banner-text small {
    display: block;
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.10em;
    color: rgba(255,255,255,0.65); margin-bottom: 5px;
}
.dual-banner-text h3 {
    font-family: 'Rajdhani','Space Grotesk',sans-serif;
    font-size: clamp(1.3rem,2.5vw,1.8rem);
    line-height: 1.05; color: #fff; margin: 0 0 10px;
}
.dual-banner-badge {
    display: inline-block;
    padding: 5px 12px; border-radius: 6px;
    background: rgba(255,255,255,0.18);
    color: #fff; font-size: 0.8rem; font-weight: 700;
    border: 1px solid rgba(255,255,255,0.25);
}
.dual-banner-img {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.20);
    font-size: 3rem;
}

/* ── Vitrine header (imagem) ── */
.fullwidth-banner-section { padding: 0 0 20px; }
.fullwidth-banner.fullwidth-banner--image-only {
    display: block;
    min-height: 210px;
    padding: 0;
    border-radius: 10px;
    background-color: color-mix(in srgb, var(--hero-surface) 82%, #08101e);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform var(--t), filter var(--t), box-shadow var(--t);
    overflow: hidden;
    box-shadow: 0 18px 42px -24px rgba(6, 13, 25, 0.42);
}
.fullwidth-banner.fullwidth-banner--image-only:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
}
.fullwidth-banner.fullwidth-banner--placeholder {
    background-image: linear-gradient(135deg, color-mix(in srgb, var(--hero-surface) 90%, black) 0%, color-mix(in srgb, var(--accent) 44%, var(--hero-surface)) 100%);
}

/* ── Banner promo ── */
.promo-banner-section { padding: 0 0 20px; }
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 34px;
    min-height: 210px;
    border-radius: 10px;
    background: linear-gradient(120deg, color-mix(in srgb, var(--hero-surface) 90%, black) 0%, var(--button-primary, var(--accent)) 100%);
    color: #fff;
    flex-wrap: wrap;
}
.promo-banner.promo-banner--image-only {
    display: block;
    padding: 0;
    background-color: color-mix(in srgb, var(--hero-surface) 82%, #08101e);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform var(--t), filter var(--t), box-shadow var(--t);
    overflow: hidden;
    box-shadow: 0 18px 42px -24px rgba(6, 13, 25, 0.42);
}
.promo-banner.promo-banner--image-only:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
}
.promo-banner-left .promo-banner-tag {
    display: inline-block; margin-bottom: 5px;
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
}
.promo-banner-left h3 {
    margin: 0; font-size: clamp(1rem,2vw,1.3rem);
    color: #fff; line-height: 1.25;
}
.promo-banner-left h3 strong { color: var(--accent,#ff6a1c); }
.promo-banner-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 22px; border-radius: 8px;
    background: var(--accent); color: #fff;
    font-weight: 700; font-size: 0.88rem;
    white-space: nowrap;
    transition: background var(--t), transform var(--t);
}
.promo-banner-btn:hover { background: #e05a10; transform: translateY(-1px); }

/* ── Brands section ── */
.brands-section { padding: 0 0 28px; }
.brands-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 12px;
}
.brand-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--muted-2);
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: border-color var(--t), transform var(--t);
    min-height: 70px;
}
.brand-logo-card:hover { border-color: var(--blue); transform: translateY(-2px); }

/* Hero buttons */
.btn-hero {
    display: inline-flex; align-items: center; gap: 7px;
    min-height: 40px; padding: 0 20px;
    border-radius: var(--radius-sm); border: none;
    background: var(--accent); color: #fff;
    font-weight: 700; font-size: 0.9rem; cursor: pointer;
    box-shadow: 0 3px 12px rgba(var(--accent-rgb),0.3);
    transition: filter var(--t), transform var(--t);
}
.btn-hero:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 6px;
    min-height: 40px; padding: 0 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.90);
    font-weight: 600; font-size: 0.88rem; cursor: pointer;
    text-decoration: none;
    transition: background var(--t), border-color var(--t);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }
.btn-hero-outline {
    display: inline-flex; align-items: center; gap: 6px;
    min-height: 40px; padding: 0 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.58);
    background: transparent;
    color: #fff;
    font-weight: 700; font-size: 0.88rem; cursor: pointer;
    text-decoration: none;
    transition: background var(--t), border-color var(--t), transform var(--t);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-1px); }

/* ── Responsivo adicional ── */
@media (max-width: 1100px) {
    .home-product-grid { grid-template-columns: repeat(5,1fr); }
    .brands-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 920px) {
    .home-product-grid { grid-template-columns: repeat(3,1fr); }
    .dual-banner-grid  { grid-template-columns: 1fr; }
    .brands-grid       { grid-template-columns: repeat(3,1fr); }
    .fullwidth-banner.fullwidth-banner--image-only { min-height: 180px; }
    .promo-banner.promo-banner--image-only { min-height: 180px; }
}
@media (max-width: 760px) {
    .home-product-grid { grid-template-columns: repeat(2,1fr); gap: 9px; }
    .brands-grid       { grid-template-columns: repeat(3,1fr); }
    .home-section-head { flex-direction: column; align-items: flex-start; }
    .dual-banner       { padding: 16px 18px; }
    .fullwidth-banner.fullwidth-banner--image-only { min-height: 124px; border-radius: 14px; }
    .promo-banner.promo-banner--image-only { min-height: 124px; border-radius: 14px; }
    .header-promo-bar { flex-direction: column; gap: 8px; padding: 10px 0; }
    .promo-banner      { flex-direction: column; }
}
@media (max-width: 480px) {
    .home-product-grid { grid-template-columns: repeat(2,1fr); }
    .brands-grid       { grid-template-columns: repeat(2,1fr); }
}


/* =========================================================================
   PERFIL (Minha Conta) - ESTILOS ELEGANTES E COMPLETOS
   ========================================================================= */

/* ── Hero do Perfil ── */
.profile-hero {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}
.profile-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(var(--accent-rgb),0.7) 100%);
    opacity: 0.1;
    z-index: 0;
}
.profile-avatar-wrap {
    position: relative;
    z-index: 1;
}
.profile-avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.profile-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-online-dot {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: #27d189;
    border: 3px solid #fff;
    border-radius: 50%;
    z-index: 2;
}
.profile-hero-info {
    flex: 1;
    z-index: 1;
}
.profile-hero-info .eyebrow {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
    display: block;
}
.profile-hero-info h1 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 5px 0;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
}
.profile-hero-info p {
    margin: 0;
    color: var(--muted-2);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.profile-role {
    font-size: 0.75rem;
    padding: 3px 8px;
    background: rgba(14,26,45,0.06);
    color: var(--muted);
    border-radius: 4px;
    font-weight: 600;
}
.profile-role.admin {
    background: rgba(var(--accent-rgb),0.1);
    color: var(--accent);
}
.profile-admin-btn {
    border-color: var(--header-button-bg-color, var(--accent));
    background: var(--header-button-bg-color, transparent);
    color: var(--header-button-text-color, var(--accent));
    z-index: 1;
}
.profile-admin-btn:hover {
    background: color-mix(in srgb, var(--header-button-bg-color, var(--accent)) 86%, #000000);
    border-color: color-mix(in srgb, var(--header-button-bg-color, var(--accent)) 86%, #000000);
    color: var(--header-button-text-color, #fff);
}
.profile-admin-btn i {
    color: var(--header-button-icon-color, var(--header-button-text-color, currentColor)) !important;
}

/* ── Métricas ── */
.profile-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}
.profile-metric {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.015);
    transition: transform 0.2s, box-shadow 0.2s;
}
.profile-metric:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}
.profile-metric i {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 12px;
    background: rgba(var(--accent-rgb),0.1);
    padding: 10px;
    border-radius: 8px;
}
.profile-metric strong {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.1;
    margin-bottom: 4px;
}
.profile-metric span {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

/* ── Tabs ── */
.profile-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
}
.profile-tabs::-webkit-scrollbar { display: none; }
.profile-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.profile-tab:hover {
    color: var(--text);
    background: rgba(14,26,45,0.02);
    border-radius: 6px 6px 0 0;
}
.profile-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: transparent;
}

/* ── Profile Panel ── */
.profile-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.02);
}
.profile-panel-head {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.profile-panel-head h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.profile-panel-head h2 i {
    color: var(--accent);
}

/* ── Lista de Compras ── */
.profile-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.purchase-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, background 0.2s;
}
.purchase-item:hover {
    border-color: rgba(var(--accent-rgb),0.3);
    background: #fafbfe;
}
.purchase-item img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.purchase-info {
    flex: 1;
}
.purchase-info h3 {
    margin: 5px 0 10px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}
.key-box {
    display: inline-flex;
    align-items: center;
    background: #f8f9fc;
    border: 1px dashed var(--border);
    border-radius: 6px;
    padding: 6px 12px;
    gap: 10px;
}
.key-box span {
    font-size: 0.8rem;
    color: var(--muted);
}
.key-box code {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue);
    background: transparent;
    padding: 0;
    letter-spacing: 0.5px;
}
.key-box .copy-button {
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.key-box .copy-button:hover {
    background: rgba(14,26,45,0.05);
    color: var(--text);
}
.purchase-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    min-width: 140px;
}
.purchase-right strong {
    font-size: 1.15rem;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

/* ── Histórico Em Blocos (Pedidos) ── */
.orders-history-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    overflow: hidden;
}
.orders-history-head {
    background: #fcfcfd;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.orders-history-head strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
}
.orders-history-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.orders-history-right strong {
    font-family: 'Rajdhani', sans-serif;
    color: var(--accent);
    font-size: 1.05rem;
}
.orders-history-items {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
}
.orders-history-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(221,227,237,0.5);
}
.orders-history-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.orders-history-item img {
    width: 40px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}
.orders-history-item div {
    flex: 1;
}
.orders-history-item div strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 3px;
}
.orders-history-key {
    background: #f5f7fa;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.orders-history-key code {
    font-weight: 700;
    color: var(--text);
    background: transparent;
    padding: 0;
}
.orders-history-key button {
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}
.orders-history-key button:hover {
    background: rgba(14,26,45,0.06);
    color: var(--text);
}

/* ── Ajustes Form ── */
.profile-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.profile-field {
    margin-bottom: 20px;
}
.profile-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.profile-field label i {
    color: var(--accent);
}
.profile-field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    background: #fbfcfd;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.profile-field input:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.1);
}
.profile-helper-text {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--muted);
    min-height: 1.1rem;
}
.profile-helper-text.is-error {
    color: var(--danger);
}
.profile-helper-text.is-success {
    color: var(--success);
}
.profile-address-suggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
    max-height: 240px;
    overflow-y: auto;
}
.profile-address-suggestion {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #f8fafc;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.profile-address-suggestion:hover {
    border-color: var(--blue);
    background: #ffffff;
    transform: translateY(-1px);
}
.profile-address-suggestion strong {
    font-size: 0.92rem;
    color: var(--text);
}
.profile-address-suggestion span {
    font-size: 0.8rem;
    color: var(--muted);
}
.profile-map-card {
    margin-bottom: 24px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}
.profile-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}
.profile-map-head strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
}
.profile-map-head small {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--muted);
}
.profile-map-head a {
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.profile-map-frame {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
    background: #eef2f7;
}
.input-pass-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.input-pass-wrap input {
    padding-right: 45px;
}
.pass-toggle {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 5px;
}

/* ── Barra Sair ── */
.profile-logout-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--muted);
    justify-content: flex-start;
    padding-left: 5px;
}

/* ── Responsivo Perfil ── */
@media (max-width: 768px) {
    .profile-hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .profile-hero-info p {
        justify-content: center;
        flex-wrap: wrap;
    }
    .profile-metrics {
        grid-template-columns: 1fr 1fr;
    }
    .purchase-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .purchase-right {
        align-items: flex-start;
        align-self: flex-start;
        margin-top: 10px;
        width: 100%;
    }
    .profile-form-grid {
        grid-template-columns: 1fr;
    }
    .profile-map-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .profile-map-frame {
        height: 260px;
    }
    .orders-history-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* =========================================================================
   CHECKOUT - ESTILOS ELEGANTES E COMPLETOS
   ========================================================================= */

/* ── Breadcrumb ── */
.ck-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 25px;
}
.ck-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.ck-breadcrumb a:hover {
    color: var(--accent);
}
.ck-breadcrumb i.fa-chevron-right {
    font-size: 0.7rem;
    opacity: 0.6;
}
.ck-breadcrumb span {
    color: var(--text);
    font-weight: 600;
}

/* ── Stepper ── */
.ck-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto 35px auto;
}
.ck-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted-2);
    position: relative;
    width: 80px;
}
.ck-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 3px 8px rgba(0,0,0,0.02);
}
.ck-step span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.ck-step.active .ck-step-icon {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(var(--accent-rgb),0.25);
}
.ck-step.active span {
    color: var(--accent);
}
.ck-step.done .ck-step-icon {
    border-color: #27d189;
    background: #27d189;
    color: #fff;
}
.ck-step.done span {
    color: #27d189;
}
.ck-step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: -25px 15px 0 15px;
    transition: background 0.3s;
}
.ck-step-line.done {
    background: #27d189;
}

/* ── Alertas (Global Checkout) ── */
.ck-alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    background: #fff;
    border-left: 4px solid var(--border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.ck-alert i {
    font-size: 1.4rem;
    margin-top: 2px;
}
.ck-alert strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: var(--text);
}
.ck-alert p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}
.ck-alert.error { border-color: #ef4444; background: #fef2f2; }
.ck-alert.error i { color: #ef4444; }
.ck-alert.warning { border-color: var(--accent); background: #fffbeb; }
.ck-alert.warning i { color: var(--accent); }
.ck-alert.success { border-color: #10b981; background: #ecfdf5; }
.ck-alert.success i { color: #10b981; }

/* ── Layout Principal ── */
.ck-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.ck-main-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.ck-sidebar {
    width: 360px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
}

/* ── Cards do Principal ── */
.ck-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.ck-card-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
.ck-card-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(14,26,45,0.05);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
}
.ck-card-head h3 {
    margin: 0 0 3px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}
.ck-card-head p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

/* ── Buyer Info ── */
.ck-buyer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #fbfcfd;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.ck-buyer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue-nav);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}
.ck-buyer-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ck-buyer-meta strong {
    font-size: 1.05rem;
    color: var(--text);
}
.ck-buyer-meta span {
    font-size: 0.85rem;
    color: var(--muted);
}
.ck-change-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    padding: 6px 12px;
    background: rgba(var(--accent-rgb),0.1);
    border-radius: 6px;
    transition: background 0.2s;
}
.ck-change-link:hover {
    background: rgba(var(--accent-rgb),0.2);
}

/* ── Payment Options ── */
.ck-payment-mode-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(var(--accent-rgb),0.06);
    border-radius: 6px;
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.ck-payment-mode-note.warning {
    background: rgba(245,158,11,0.1);
    color: #d97706;
}
.ck-payment-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}
.ck-pay-option {
    cursor: pointer;
    display: block;
}
.ck-pay-option input {
    display: none;
}
.ck-pay-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}
.ck-pay-card:hover {
    border-color: rgba(14,26,45,0.2);
    background: #fbfcfd;
}
.ck-pay-option input:checked + .ck-pay-card {
    border-color: var(--blue);
    background: rgba(var(--accent-rgb),0.03);
    box-shadow: 0 4px 12px rgba(var(--accent-rgb),0.1);
}
.ck-pay-logo {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}
.ck-pay-logo.mp { background: #009ee3; }
.ck-pay-logo.nu { background: #8a05be; }
.ck-pay-logo.inf { background: #000; }
.ck-pay-logo.direct { background: #eab308; }

.ck-pay-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.ck-pay-info strong {
    font-size: 0.95rem;
    color: var(--text);
}
.ck-pay-info span {
    font-size: 0.8rem;
    color: var(--muted);
}
.ck-pay-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.2s;
}
.ck-pay-check i {
    font-size: 0.7rem;
}
.ck-pay-option input:checked + .ck-pay-card .ck-pay-check {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}
.ck-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
}
.ck-trust-row span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}
.ck-trust-row span i {
    color: #27d189;
    font-size: 0.9rem;
}

/* ── Sidebar (Summary) ── */
.ck-summary-card {
    background: #fbfcfd;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.ck-summary-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
}
.ck-summary-card h3 i {
    color: var(--accent);
}
.ck-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.ck-item {
    display: flex;
    gap: 12px;
    align-items: center;
}
.ck-item.no-stock {
    opacity: 0.6;
}
.ck-item img {
    width: 48px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.ck-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.ck-item-body strong {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ck-stock-warn {
    font-size: 0.7rem;
    font-weight: 600;
    color: #eab308;
    background: rgba(234,179,8,0.1);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(234,179,8,0.2);
}
.ck-item.no-stock .ck-stock-warn {
    color: #ef4444; background: #fef2f2; border-color: rgba(239,68,68,0.2);
}
.ck-item.no-stock img {
    filter: grayscale(100%);
}
.ck-item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.ck-item-price small {
    font-size: 0.75rem;
    color: var(--muted-2);
    text-decoration: line-through;
}
.ck-item-price strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    color: var(--text);
}

/* ── Coupon ── */
.ck-coupon-box {
    background: #fff;
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    padding: 15px;
    margin-bottom: 25px;
}
.ck-coupon-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.ck-coupon-head strong {
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}
.ck-coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(39,209,137,0.08);
    border: 1px solid rgba(39,209,137,0.3);
    padding: 10px 15px;
    border-radius: 6px;
}
.ck-coupon-applied div {
    display: flex;
    flex-direction: column;
}
.ck-coupon-applied strong {
    font-size: 0.9rem;
    color: #0f766e;
}
.ck-coupon-applied span {
    font-size: 0.75rem;
    color: #115e59;
}
.ck-coupon-remove {
    background: transparent;
    border: none;
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}
.ck-coupon-remove:hover {
    background: rgba(239,68,68,0.1);
}
.ck-coupon-form {
    display: flex;
    gap: 8px;
}
.ck-coupon-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: 'Space Grotesk', sans-serif;
    outline: none;
    font-size: 0.85rem;
}
.ck-coupon-input:focus {
    border-color: var(--accent);
}
.ck-coupon-apply {
    background: var(--text);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 16px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}
.ck-coupon-apply:hover {
    background: var(--blue-nav);
}

/* ── Summary Lines ── */
.ck-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}
.ck-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--muted);
}
.ck-summary-row span:last-child {
    font-weight: 600;
    color: var(--text);
}
.ck-free {
    color: #27d189 !important;
    background: rgba(39,209,137,0.1);
    padding: 2px 8px;
    border-radius: 4px;
}
.ck-summary-discount {
    color: #10b981;
}
.ck-summary-discount span:last-child {
    color: #10b981;
}
.ck-summary-row.total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}
.ck-summary-row.total strong:first-child {
    font-size: 1.1rem;
    color: var(--text);
}
.ck-summary-row.total strong:last-child {
    font-size: 1.5rem;
    color: var(--accent);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
}

/* ── Botão Confirmar ── */
.ck-btn-confirm {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: #0f766e;
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(15,118,110,0.3);
    margin-bottom: 15px;
}
.ck-btn-confirm:hover {
    background: #115e59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15,118,110,0.4);
}
.ck-btn-confirm:disabled {
    background: var(--muted-2);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.ck-btn-confirm span {
    margin-left: auto;
    background: rgba(0,0,0,0.2);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
}
.ck-fine-print {
    font-size: 0.75rem;
    color: var(--muted-2);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 25px;
}

/* ── Delivery Info ── */
.ck-delivery-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
}
.ck-delivery-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ck-delivery-item i {
    font-size: 1.2rem;
    color: var(--blue);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb),0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ck-delivery-item div {
    display: flex;
    flex-direction: column;
}
.ck-delivery-item strong {
    font-size: 0.85rem;
    color: var(--text);
}
.ck-delivery-item span {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ── Responsivo Checkout ── */
@media (max-width: 920px) {
    .ck-layout {
        flex-direction: column;
    }
    .ck-sidebar {
        width: 100%;
        position: static;
    }
    .ck-trust-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .ck-stepper {
        display: none;
    }
}

/* ============================================================
   FAVORITES
   ============================================================ */
.btn-favorite {
    position: relative;
    z-index: 26;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(4px);
    border: none;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: #94a3b8;
    font-size: 0.95rem;
    transition: transform 0.2s, background 0.2s, color 0.2s;
}
.btn-favorite i,
.btn-card-cart i {
    position: relative;
    z-index: 27;
    pointer-events: none;
}
.btn-favorite:hover {
    transform: scale(1.1);
    background: #ffffff;
    color: var(--accent);
}
.btn-favorite.is-loading {
    opacity: 0.7;
    pointer-events: none;
    animation: pulseFav 1s infinite;
}
@keyframes pulseFav {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}
[data-theme="dark"] .btn-favorite {
    background: rgba(15,23,42,0.85);
    color: #64748b;
}
[data-theme="dark"] .btn-favorite:hover {
    background: #1e293b;
    color: var(--accent);
}
.btn-favorite.is-favorite {
    color: var(--accent) !important;
}
.btn-card-cart {
    position: relative;
    z-index: 26;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #5b6880;
    font-size: 0.88rem;
    transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-card-cart:hover {
    transform: scale(1.08);
    background: #ffffff;
    color: var(--button-primary, var(--accent));
    box-shadow: 0 8px 18px rgba(15, 91, 212, 0.16);
}
.btn-card-cart.is-loading {
    opacity: 0.72;
    pointer-events: none;
}
.btn-card-cart.is-added {
    background: #e8fff1;
    color: #16a34a;
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.18);
}
[data-theme="dark"] .btn-card-cart {
    background: rgba(15,23,42,0.88);
    color: #94a3b8;
}
[data-theme="dark"] .btn-card-cart:hover {
    background: #1e293b;
    color: #60a5fa;
}

/* ============================================================
   LIVE SEARCH RESULTS
   ============================================================ */
.live-search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 2000;
    overflow: hidden;
    animation: fadeInDown 0.2s ease;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.ls-header {
    background: #f8fafc;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    letter-spacing: 0.5px;
}
.ls-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    transition: background 0.15s;
    cursor: pointer;
}
.ls-item:last-child {
    border-bottom: none;
}
.ls-item:hover {
    background: #f8fafc;
}
.ls-img {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.ls-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ls-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.ls-info h4 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ls-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 2px;
}
.ls-old {
    font-size: 0.7rem;
    color: var(--muted);
    text-decoration: line-through;
}
.ls-current {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--price);
}
.ls-platform {
    color: var(--muted);
    font-size: 1.1rem;
    margin-left: auto;
}
.ls-footer {
    display: block;
    text-align: center;
    padding: 10px;
    background: #f8fafc;
    border-top: 1px solid var(--border);
    color: var(--blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.15s;
}
.ls-footer:hover {
    background: #f1f5f9;
}
.ls-empty {
    padding: 24px;
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

/* ============================================================
   SHADOW RESET
   ============================================================ */
*, *::before, *::after {
    box-shadow: none !important;
    text-shadow: none !important;
}


/* ============================================================
   FRONT THEME TOGGLE — DARK PRETO/CINZA
   ============================================================ */
html[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0c0f14;
    --bg-card: #171b22;
    --border: #2a313d;
    --border-color: #2a313d;
    --text: #eef2f7;
    --muted: #a3afbf;
    --muted-2: #c9d2df;
    --blue-dark: #0b0e13;
    --blue-nav: #10141b;
    --hero-surface: #11161f;
    --hero-text: #eef2f7;
    --button-secondary: #202632;
    --button-secondary-text: #eef2f7;
    --shadow: 0 14px 36px rgba(0,0,0,0.34);
    --shadow-md: 0 20px 48px rgba(0,0,0,0.42);
}
html[data-theme="dark"] body {
    background: linear-gradient(180deg, #090b10 0%, #0f1319 100%) !important;
    color: var(--text);
}
html[data-theme="dark"] .site-header,
html[data-theme="dark"] .header-topbar-wrap,
html[data-theme="dark"] .floating-nav,
html[data-theme="dark"] .floating-nav-inner,
html[data-theme="dark"] .site-footer {
    background: #0b0e13 !important;
}
html[data-theme="dark"] .floating-nav {
    border-top-color: rgba(255,255,255,0.04);
}

html[data-theme="dark"] .header-utility-wrap {
    background: #10141b;
    border-bottom-color: rgba(255,255,255,0.06);
}
html[data-theme="dark"] .header-utility-trigger {
    color: #f3f4f6;
}
html[data-theme="dark"] .header-utility-trigger:hover .header-utility-icon,
html[data-theme="dark"] .header-utility-item.is-open .header-utility-icon {
    background: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .header-utility-card,
html[data-theme="dark"] .header-track-field {
    background: #171b22;
    border-color: rgba(255,255,255,0.10);
    box-shadow: 0 18px 40px rgba(0,0,0,0.34);
}
html[data-theme="dark"] .header-utility-row-copy span,
html[data-theme="dark"] .header-utility-schedule span {
    color: #cbd5e1;
}
html[data-theme="dark"] .header-utility-row-copy a,
html[data-theme="dark"] .header-utility-row-copy strong,
html[data-theme="dark"] .header-utility-schedule strong {
    color: #f8fafc;
}
html[data-theme="dark"] .header-utility-sep,
html[data-theme="dark"] .header-track-field button {
    border-color: rgba(255,255,255,0.10);
}
html[data-theme="dark"] .header-track-title,
html[data-theme="dark"] .header-track-field button,
html[data-theme="dark"] .header-utility-row-icon,
html[data-theme="dark"] .header-utility-icon {
    color: var(--accent,#ff6a1c);
}
html[data-theme="dark"] .header-utility-icon {
    border-color: rgba(var(--accent-rgb),0.42);
}
html[data-theme="dark"] .header-track-field input {
    color: #f8fafc;
}
html[data-theme="dark"] .header-track-field input::placeholder {
    color: #94a3b8;
}
html[data-theme="dark"] .header-track-field button:hover {
    background: rgba(var(--accent-rgb),0.10);
}
html[data-theme="dark"] .search-form {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .search-form:focus-within {
    border-color: rgba(255,255,255,0.18);
}
html[data-theme="dark"] .search-form button {
    border-left-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .header-icon,
html[data-theme="dark"] .platform-nav-link,
html[data-theme="dark"] .mnav-dept-btn {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .platform-nav-link:hover,
html[data-theme="dark"] .platform-nav-link.active,
html[data-theme="dark"] .platform-nav-item.is-open .platform-nav-link,
html[data-theme="dark"] .header-icon:hover {
    background: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .platform-mega-panel {
    background: #0f172a;
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .platform-mega-card {
    background: #ffffff !important;
    border-color: rgba(15,23,42,0.08);
    color: #0f172a !important;
}
html[data-theme="dark"] .platform-mega-arrow {
    background: #ffffff;
    border-color: rgba(15,23,42,0.12);
}
html[data-theme="dark"] .platform-mega-subcats {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .platform-mega-card-media {
    background: #ffffff;
    border-color: rgba(255,255,255,0.08);
}
html[data-theme="dark"] .platform-mega-subcats h4,
html[data-theme="dark"] .platform-mega-showcase h5,
html[data-theme="dark"] .platform-mega-subcat {
    color: #e5eefc;
}
html[data-theme="dark"] .platform-mega-arrow {
    color: #111111;
}
html[data-theme="dark"] .platform-mega-card,
html[data-theme="dark"] .platform-mega-card-title,
html[data-theme="dark"] .platform-mega-card-price {
    color: #0f172a !important;
}
html[data-theme="dark"] .platform-mega-subcat:hover {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
}
html[data-theme="dark"] .platform-mega-subcat.is-primary {
    background: rgba(var(--accent-rgb),0.14);
    color: #ffb17d;
}
html[data-theme="dark"] .platform-mega-card-price small,
html[data-theme="dark"] .platform-mega-subcat-empty,
html[data-theme="dark"] .platform-mega-empty,
html[data-theme="dark"] .platform-mega-kicker {
    color: rgba(229,238,252,0.66);
}
html[data-theme="dark"] .platform-mega-empty {
    border-color: rgba(255,255,255,0.1);
}
html[data-theme="dark"] .mnav-panel,
html[data-theme="dark"] .mnav-sub-panel,
html[data-theme="dark"] .catalog-header,
html[data-theme="dark"] .product-card,
html[data-theme="dark"] .product-buy-box,
html[data-theme="dark"] .product-gallery,
html[data-theme="dark"] .product-info-card,
html[data-theme="dark"] .product-tabs,
html[data-theme="dark"] .product-description,
html[data-theme="dark"] .product-specs,
html[data-theme="dark"] .glass-card,
html[data-theme="dark"] .surface-card,
html[data-theme="dark"] .panel-card,
html[data-theme="dark"] .hero-panel,
html[data-theme="dark"] .cart-item,
html[data-theme="dark"] .checkout-card,
html[data-theme="dark"] .info-card,
html[data-theme="dark"] .profile-card,
html[data-theme="dark"] .profile-panel,
html[data-theme="dark"] .profile-metric,
html[data-theme="dark"] .profile-avatar-circle,
html[data-theme="dark"] .profile-tabs,
html[data-theme="dark"] .category-tile,
html[data-theme="dark"] .live-search-results,
html[data-theme="dark"] .support-chat-shell,
html[data-theme="dark"] .support-chat-feedback,
html[data-theme="dark"] .support-chat-register,
html[data-theme="dark"] .support-chat-conversation,
html[data-theme="dark"] .support-chat-messages,
html[data-theme="dark"] .support-chat-composer,
html[data-theme="dark"] .psg-stage,
html[data-theme="dark"] .product-single-hero,
html[data-theme="dark"] .product-hero,
html[data-theme="dark"] .product-hero-media-card,
html[data-theme="dark"] .product-hero-buy-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .ck-card,
html[data-theme="dark"] .address-card,
html[data-theme="dark"] .payment-card,
html[data-theme="dark"] .summary-card {
    background: #171b22 !important;
    border-color: #2a313d !important;
    color: var(--text);
}
/* Área de imagem dos cards: fundo levemente mais claro para revelar produtos */
html[data-theme="dark"] .product-media {
    background: #1a1f29 !important;
}
html[data-theme="dark"] .ls-header,
html[data-theme="dark"] .ls-footer,
html[data-theme="dark"] .ls-item:hover,
html[data-theme="dark"] .mnav-dept-link:hover,
html[data-theme="dark"] .mnav-dept-item.is-active .mnav-dept-link,
html[data-theme="dark"] .mnav-sub-list a:hover,
html[data-theme="dark"] .mnav-sub-list a:focus,
html[data-theme="dark"] .profile-tab:hover {
    background: #1c222c !important;
}
html[data-theme="dark"] .ls-item,
html[data-theme="dark"] .ls-header,
html[data-theme="dark"] .ls-footer,
html[data-theme="dark"] .mnav-dept-link,
html[data-theme="dark"] .mnav-sub-list a,
html[data-theme="dark"] .profile-tab,
html[data-theme="dark"] .profile-tabs,
html[data-theme="dark"] .catalog-controls select,
html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
    border-color: #2a313d !important;
    color: var(--text);
}
html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea,
html[data-theme="dark"] .catalog-controls select,
html[data-theme="dark"] .profile-field input,
html[data-theme="dark"] .support-chat-field input,
html[data-theme="dark"] .support-chat-composer input {
    background: #10151d !important;
    color: var(--text) !important;
}
html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
    color: #95a1b2 !important;
}
html[data-theme="dark"] .section-head p,
html[data-theme="dark"] .profile-meta p,
html[data-theme="dark"] .profile-meta small,
html[data-theme="dark"] .profile-metric span,
html[data-theme="dark"] .panel-stat span,
html[data-theme="dark"] .ls-old,
html[data-theme="dark"] .ls-empty,
html[data-theme="dark"] .footer-column a,
html[data-theme="dark"] .footer-company-meta span {
    color: var(--muted) !important;
}
html[data-theme="dark"] .product-card .soft-pill,
html[data-theme="dark"] .stock-pill,
html[data-theme="dark"] .profile-role,
html[data-theme="dark"] .status-badge,
html[data-theme="dark"] .badge,
html[data-theme="dark"] .hero-slide-pill {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,255,255,0.08) !important;
    color: #e8edf5 !important;
}
html[data-theme="dark"] .btn-favorite,
html[data-theme="dark"] .btn-card-cart,
html[data-theme="dark"] .psg-thumb,
html[data-theme="dark"] .category-image-card,
html[data-theme="dark"] .ls-img {
    background: #10151d !important;
    border-color: #2a313d !important;
}
html[data-theme="dark"] .theme-toggle-btn {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    color: #eef2f7;
}
html[data-theme="dark"] .theme-toggle-btn:hover {
    background: rgba(255,255,255,0.1);
}


/* ============================================================
   DARK MODE EXTRA COVERAGE + TOGGLE PREMIUM
   ============================================================ */
.theme-toggle-btn {
    gap: 10px;
    min-width: 132px;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,247,250,0.96));
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}
.theme-toggle-track {
    position: relative;
    width: 52px;
    height: 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e5edf8 0%, #cfd9e8 100%);
    border: 1px solid rgba(148, 163, 184, 0.28);
    display: inline-flex;
    align-items: center;
    padding: 3px;
    box-shadow: inset 0 1px 3px rgba(15, 23, 42, 0.12);
}
.theme-toggle-track::before,
.theme-toggle-track::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    opacity: 0.75;
    pointer-events: none;
}
.theme-toggle-track::before {
    content: "\f185";
    left: 7px;
    color: var(--accent);
}
.theme-toggle-track::after {
    content: "\f186";
    right: 8px;
    color: #64748b;
}
.theme-toggle-knob {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
    transform: translateX(22px);
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.theme-toggle-knob i {
    font-size: 12px;
    line-height: 1;
}
.theme-toggle-text {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
html[data-theme="dark"] .theme-toggle-btn {
    background: linear-gradient(180deg, rgba(17,21,29,0.98), rgba(12,15,20,0.96));
    border-color: rgba(255,255,255,0.10);
    box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}
html[data-theme="dark"] .theme-toggle-track {
    background: linear-gradient(135deg, #11161f 0%, #1b2330 100%);
    border-color: rgba(255,255,255,0.10);
}
html[data-theme="dark"] .theme-toggle-track::before {
    color: rgba(245, 158, 11, 0.38);
}
html[data-theme="dark"] .theme-toggle-track::after {
    color: #cbd5e1;
}
html[data-theme="dark"] .theme-toggle-knob {
    transform: translateX(0);
    background: linear-gradient(135deg, #2a313d 0%, #1f2632 100%);
    color: #f8fafc;
    box-shadow: 0 6px 14px rgba(0,0,0,0.34);
}
@media (max-width: 640px) {
    .theme-toggle-btn {
        min-width: 48px;
        width: 48px;
        padding: 0;
    }
    .theme-toggle-text {
        display: none;
    }
}

html[data-theme="dark"] body,
html[data-theme="dark"] .site-bg,
html[data-theme="dark"] main,
html[data-theme="dark"] .container,
html[data-theme="dark"] .section,
html[data-theme="dark"] .page-spacer,
html[data-theme="dark"] .catalog-shell,
html[data-theme="dark"] .cart-premium-page,
html[data-theme="dark"] .favorites-page-wrap,
html[data-theme="dark"] .product-single-page,
html[data-theme="dark"] .ql-page,
html[data-theme="dark"] .reg-page {
    background-color: #0c0f14 !important;
    color: #eef2f7;
}

html[data-theme="dark"] .card,
html[data-theme="dark"] [class$="-card"],
html[data-theme="dark"] [class*="-card "],
html[data-theme="dark"] .panel,
html[data-theme="dark"] [class$="-panel"],
html[data-theme="dark"] [class*="-panel "],
html[data-theme="dark"] [class$="-box"],
html[data-theme="dark"] [class*="-box "],
html[data-theme="dark"] .filter-card,
html[data-theme="dark"] .filter-group,
html[data-theme="dark"] .coupon-box,
html[data-theme="dark"] .cart-header,
html[data-theme="dark"] .cart-empty-panel,
html[data-theme="dark"] .glass-summary,
html[data-theme="dark"] .empty-state,
html[data-theme="dark"] .auth-card,
html[data-theme="dark"] .ql-card,
html[data-theme="dark"] .reg-card,
html[data-theme="dark"] .login-tab,
html[data-theme="dark"] .pay-modal-box,
html[data-theme="dark"] .pm-tab,
html[data-theme="dark"] .pm-feature-icon,
html[data-theme="dark"] .orders-history-item,
html[data-theme="dark"] .orders-history-card,
html[data-theme="dark"] .product-review-card,
html[data-theme="dark"] .product-review-summary-card,
html[data-theme="dark"] .product-review-form-card,
html[data-theme="dark"] .product-related-card,
html[data-theme="dark"] .product-trust-card,
html[data-theme="dark"] .product-seal-card,
html[data-theme="dark"] .dual-banner,
html[data-theme="dark"] .promo-banner:not(.promo-banner--image-only),
html[data-theme="dark"] .fullwidth-banner:not(.fullwidth-banner--image-only),
html[data-theme="dark"] .brands-section,
html[data-theme="dark"] .brand-logo-card,
html[data-theme="dark"] .mini-card,
html[data-theme="dark"] .profile-upload-card,
html[data-theme="dark"] .profile-map-card,
html[data-theme="dark"] .profile-security-tips,
html[data-theme="dark"] .profile-address-suggestions,
html[data-theme="dark"] .payment-options-btn,
html[data-theme="dark"] .ck2-step,
html[data-theme="dark"] .ck2-sidebar-card,
html[data-theme="dark"] .ck2-pay-card,
html[data-theme="dark"] .ck2-note-box,
html[data-theme="dark"] .ck2-coupon,
html[data-theme="dark"] .ck2-pix-box,
html[data-theme="dark"] .cb-input,
html[data-theme="dark"] .input-icon-wrap,
html[data-theme="dark"] .input-pass-wrap {
    background: #171b22 !important;
    color: #eef2f7 !important;
    border-color: #2a313d !important;
}

html[data-theme="dark"] [style*="background:#fff"],
html[data-theme="dark"] [style*="background: #fff"],
html[data-theme="dark"] [style*="background:#ffffff"],
html[data-theme="dark"] [style*="background: #ffffff"],
html[data-theme="dark"] [style*="background-color:#fff"],
html[data-theme="dark"] [style*="background-color: #fff"],
html[data-theme="dark"] [style*="background-color:#ffffff"],
html[data-theme="dark"] [style*="background-color: #ffffff"],
html[data-theme="dark"] [style*="background:#fff7f4"],
html[data-theme="dark"] [style*="background: #fff7f4"],
html[data-theme="dark"] [style*="background:#fff8ef"],
html[data-theme="dark"] [style*="background: #fff8ef"] {
    background: #171b22 !important;
    color: #eef2f7 !important;
    border-color: #2a313d !important;
}

html[data-theme="dark"] [style*="background: rgba(255,255,255"],
html[data-theme="dark"] [style*="background:rgba(255,255,255"],
html[data-theme="dark"] [style*="background-color: rgba(255,255,255"],
html[data-theme="dark"] [style*="background-color:rgba(255,255,255"] {
    background: rgba(23, 27, 34, 0.94) !important;
    color: #eef2f7 !important;
    border-color: #2a313d !important;
}

html[data-theme="dark"] .search-form input,
html[data-theme="dark"] .search-form button,
html[data-theme="dark"] .catalog-controls select,
html[data-theme="dark"] .panel-input,
html[data-theme="dark"] .profile-field input,
html[data-theme="dark"] .product-shipping-input,
html[data-theme="dark"] .ck2-field input,
html[data-theme="dark"] .ck2-field select,
html[data-theme="dark"] .ck2-field textarea,
html[data-theme="dark"] .auth-form input,
html[data-theme="dark"] .reg-field input,
html[data-theme="dark"] .ql-field input {
    background: #10151d !important;
    color: #eef2f7 !important;
    border-color: #2a313d !important;
}

html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5,
html[data-theme="dark"] h6,
html[data-theme="dark"] strong,
html[data-theme="dark"] label,
html[data-theme="dark"] .auth-copy h1,
html[data-theme="dark"] .auth-header h1,
html[data-theme="dark"] .section-head h2,
html[data-theme="dark"] .home-section-title,
html[data-theme="dark"] .product-review-item-title,
html[data-theme="dark"] .product-review-summary-head,
html[data-theme="dark"] .orders-history-head,
html[data-theme="dark"] .ck2-step-title,
html[data-theme="dark"] .ck2-pay-label,
html[data-theme="dark"] .product-price-main,
html[data-theme="dark"] .product-price-box {
    color: #f8fafc !important;
}

html[data-theme="dark"] p,
html[data-theme="dark"] li,
html[data-theme="dark"] td,
html[data-theme="dark"] th,
html[data-theme="dark"] .benefit-copy,
html[data-theme="dark"] .product-summary-platform,
html[data-theme="dark"] .product-price-note,
html[data-theme="dark"] .product-price-sub,
html[data-theme="dark"] .ck-fine-print,
html[data-theme="dark"] .ck2-step-sub,
html[data-theme="dark"] .ql-subtitle,
html[data-theme="dark"] .reg-top p,
html[data-theme="dark"] .auth-copy p,
html[data-theme="dark"] .hero-slide-copy p,
html[data-theme="dark"] .home-section-head p,
html[data-theme="dark"] .product-review-note,
html[data-theme="dark"] .product-review-item-text,
html[data-theme="dark"] .footer-column a,
html[data-theme="dark"] .profile-helper-text {
    color: #d2dbe6 !important;
}

html[data-theme="dark"] a:not(.btn):not(.btn-secondary):not(.btn-outline):not(.btn-social):not(.btn-view):not(.product-buy-primary):not(.product-buy-secondary):not(.theme-toggle-btn) {
    color: #e5ecf6;
}
html[data-theme="dark"] a:hover:not(.btn):not(.btn-secondary):not(.btn-outline):not(.btn-social):not(.btn-view):not(.product-buy-primary):not(.product-buy-secondary):not(.theme-toggle-btn) {
    color: #ffffff;
}

html[data-theme="dark"] table,
html[data-theme="dark"] thead,
html[data-theme="dark"] tbody,
html[data-theme="dark"] tr,
html[data-theme="dark"] th,
html[data-theme="dark"] td {
    border-color: #2a313d !important;
}

html[data-theme="dark"] .pay-modal-overlay,
html[data-theme="dark"] .lb-backdrop,
html[data-theme="dark"] .pix-transparent-modal {
    background: rgba(5, 8, 12, 0.78) !important;
}


/* ============================================================
   THEME TOGGLE CLEAN — SEM TEXTO E SEM CAMPO EXTERNO
   ============================================================ */
.theme-toggle-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 0 !important;
    gap: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.theme-toggle-btn:hover {
    background: transparent !important;
    transform: none !important;
    color: inherit !important;
}
.theme-toggle-btn .theme-toggle-text {
    display: none !important;
}
html[data-theme="dark"] .theme-toggle-btn,
html[data-theme="dark"] .theme-toggle-btn:hover {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
@media (max-width: 640px) {
    .theme-toggle-btn {
        width: auto !important;
        min-width: 0 !important;
    }
}

/* ============================================================
   DARK MODE FIX — SLIDERS E BANNERS
   ============================================================ */
html[data-theme="dark"] .hero-slider-section,
html[data-theme="dark"] .dual-banner-section,
html[data-theme="dark"] .fullwidth-banner-section,
html[data-theme="dark"] .promo-banner-section {
    background: transparent !important;
}

html[data-theme="dark"] .hero-slider {
    background: linear-gradient(180deg, #07090d 0%, #0c1016 100%) !important;
}

html[data-theme="dark"] .hero-slide:not(.has-bg-image):not(.visual-only) {
    background: linear-gradient(125deg, #0a0e14 0%, #121923 52%, #1a2430 100%) !important;
}

html[data-theme="dark"] .hero-slide.theme-product:not(.has-bg-image):not(.visual-only) {
    background: linear-gradient(120deg, #090d13 0%, #121a24 48%, #1b2633 100%) !important;
}

html[data-theme="dark"] .hero-slide.theme-category:not(.has-bg-image):not(.visual-only),
html[data-theme="dark"] .hero-slide.theme-campaign:not(.has-bg-image):not(.visual-only) {
    background: linear-gradient(125deg, #090d13 0%, #111821 46%, #181f29 100%) !important;
}

html[data-theme="dark"] .hero-slide.visual-only {
    background: #080b10 !important;
}

html[data-theme="dark"] .hero-slide.has-bg-image {
    background-color: #0a0e14 !important;
    background-blend-mode: multiply !important;
}

html[data-theme="dark"] .hero-slide-frame {
    background: #0d1219 !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

html[data-theme="dark"] .hero-slide-eyebrow {
    background: rgba(255,255,255,0.10) !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .hero-slide-copy h1,
html[data-theme="dark"] .hero-slide-meta strong {
    color: #f8fafc !important;
}

html[data-theme="dark"] .hero-slide-copy p {
    color: rgba(232, 238, 246, 0.78) !important;
}

html[data-theme="dark"] .hero-slider-arrow {
    background: rgba(7, 11, 17, 0.76) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

html[data-theme="dark"] .hero-slider-arrow:hover {
    background: rgba(14, 19, 28, 0.96) !important;
}

html[data-theme="dark"] .hero-slider-dots button {
    background: rgba(255,255,255,0.22) !important;
}

html[data-theme="dark"] .hero-slider-dots button.is-active {
    background: var(--accent) !important;
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb),0.16);
}

html[data-theme="dark"] .dual-banner:not(.dual-banner--image-only) {
    border: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 14px 30px rgba(0,0,0,0.20);
}

html[data-theme="dark"] .dual-banner--blue:not(.dual-banner--image-only) {
    background: linear-gradient(125deg, #0a0e15 0%, #111a27 52%, #1c2633 100%) !important;
}

html[data-theme="dark"] .dual-banner--purple:not(.dual-banner--image-only) {
    background: linear-gradient(125deg, #0a0e15 0%, #141926 50%, #232a35 100%) !important;
}

html[data-theme="dark"] .dual-banner--image-only {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 14px 30px rgba(0,0,0,0.20);
}

html[data-theme="dark"] .dual-banner--image-only img {
    filter: brightness(0.88) saturate(0.94);
}

html[data-theme="dark"] .dual-banner-text small {
    color: rgba(255,255,255,0.62) !important;
}

html[data-theme="dark"] .dual-banner-text h3,
html[data-theme="dark"] .dual-banner-badge {
    color: #ffffff !important;
}

html[data-theme="dark"] .dual-banner-badge {
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.16) !important;
}

html[data-theme="dark"] .fullwidth-banner:not(.fullwidth-banner--image-only) {
    background: linear-gradient(125deg, #090d13 0%, #111822 42%, #192331 74%, #0f141c 100%) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

html[data-theme="dark"] .fullwidth-banner-text small {
    color: rgba(255,255,255,0.55) !important;
}

html[data-theme="dark"] .fullwidth-banner-text h2,
html[data-theme="dark"] .fullwidth-banner-price,
html[data-theme="dark"] .fullwidth-banner-price strong,
html[data-theme="dark"] .fullwidth-banner-btn {
    color: #ffffff !important;
}

html[data-theme="dark"] .fullwidth-banner-text p {
    color: rgba(232, 238, 246, 0.70) !important;
}

html[data-theme="dark"] .promo-banner:not(.promo-banner--image-only) {
    background: linear-gradient(125deg, #090d13 0%, #121a24 46%, #1a2431 100%) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 14px 30px rgba(0,0,0,0.20);
}

html[data-theme="dark"] .promo-banner-left .promo-banner-tag {
    color: rgba(255,255,255,0.58) !important;
}

html[data-theme="dark"] .promo-banner-left h3,
html[data-theme="dark"] .promo-banner-btn {
    color: #ffffff !important;
}

html[data-theme="dark"] .promo-banner-left h3 strong {
    color: #ff8a4c !important;
}


/* ============================================================
   DARK MODE FIX — SLIDER COM IMAGEM + SOCIAIS + MARCAS
   ============================================================ */
html[data-theme="dark"] .hero-slide.has-bg-image {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

html[data-theme="dark"] .hero-slide.has-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,10,15,.52) 0%, rgba(6,10,15,.34) 38%, rgba(6,10,15,.16) 100%);
    pointer-events: none;
    z-index: 0;
}

html[data-theme="dark"] .hero-slide.visual-only .hero-slide-frame,
html[data-theme="dark"] .hero-slide.visual-only .hero-slide-frame img {
    background: transparent !important;
}

html[data-theme="dark"] .hero-slide.visual-only .hero-slide-frame img {
    filter: brightness(.92) saturate(.96);
}

html[data-theme="dark"] .hero-slide-visual,
html[data-theme="dark"] .hero-slide-media-link,
html[data-theme="dark"] .hero-slide-frame {
    position: relative;
    z-index: 1;
}

html[data-theme="dark"] .floating-social-btn {
    background: #121821 !important;
    border-color: rgba(255,255,255,.08) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.30);
    color: var(--floating-social-color, #e5ecf6) !important;
}

html[data-theme="dark"] .floating-social-btn i {
    color: var(--floating-social-color, #e5ecf6) !important;
    opacity: 1 !important;
}

html[data-theme="dark"] .floating-social-btn:hover {
    background: rgba(255,255,255,.06) !important;
}

html[data-theme="dark"] .brands-section {
    background: transparent !important;
}

.brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

html[data-theme="dark"] .brand-logo-card {
    background: #131922 !important;
}


/* utilitários dentro da barra do menu */
.platform-nav-tools {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex: 0 0 auto;
    position: relative;
    z-index: 60;
}
.platform-nav-tools .header-utility-item {
    position: relative;
    display: flex;
    align-items: stretch;
}
.platform-nav-tools .header-utility-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 52px;
    padding: 0 12px;
    color: rgba(255,255,255,0.82);
    font-size: 0.91rem;
    font-weight: 500;
    font-family: 'Montserrat', 'Poppins', 'Segoe UI', sans-serif;
}
.platform-nav-tools .header-utility-item.is-open .header-utility-trigger {
    color: #fff;
    background: transparent;
}
.platform-nav-tools .header-utility-icon {
    width: 28px;
    height: 28px;
    border-width: 1.8px;
    border-color: currentColor;
    color: inherit;
    font-size: 0.88rem;
}
.platform-nav-tools .header-utility-item.is-open .header-utility-icon {
    background: rgba(255,255,255,0.08);
}
.platform-nav-tools .header-utility-dropdown {
    top: 100%;
    margin-top: 0;
}
.platform-nav-tools .header-utility-item--tracking .header-utility-dropdown {
    left: auto;
    right: 0;
    transform: none;
}
.platform-mega-panels {
    top: 100%;
}
@media (max-width: 980px) {
    .platform-nav-tools .header-utility-text {
        display: none;
    }
    .platform-nav-tools .header-utility-trigger {
        padding: 0 12px;
    }
}
@media (max-width: 760px) {
    .platform-nav-tools {
        display: none;
    }
}
html[data-theme="dark"] .platform-nav-tools .header-utility-trigger {
    color: rgba(255,255,255,0.82);
}
html[data-theme="dark"] .platform-nav-tools .header-utility-item.is-open .header-utility-trigger {
    color: #fff;
    background: transparent;
}

/* posição dos atalhos no topo, sem mudar cor do tema */
.header-topbar {
    grid-template-columns: auto minmax(320px, 500px) minmax(260px, 1fr) auto;
    gap: 22px;
}
.topbar-center.search-wrapper {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 !important;
}
.header-topbar-tools {
    justify-content: center;
    min-width: 0;
}
.header-topbar-tools .header-utility-trigger {
    height: 88px;
    padding: 0 14px;
}
.header-topbar-tools .header-utility-dropdown {
    top: calc(100% - 24px);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}
.header-topbar-tools .header-utility-item--tracking .header-utility-dropdown {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}
.header-actions {
    justify-self: end;
}
.header-actions .cart-link {
    order: 1;
}
.header-actions > a[title*="Favoritos"] {
    order: 2;
}
.header-actions .user-dropdown-wrapper {
    order: 3;
}
.header-actions .theme-toggle-btn {
    order: 4;
}
.header-actions .mobile-toggle {
    order: 5;
}
.platform-mega-panels {
    top: calc(100% + 8px);
}
.mnav-panel {
    top: calc(100% + 6px);
}
@media (max-width: 1280px) {
    .header-topbar {
        grid-template-columns: auto minmax(280px, 440px) minmax(220px, 1fr) auto;
        gap: 14px;
    }
    .header-topbar-tools .header-utility-trigger {
        padding: 0 14px;
    }
}
@media (max-width: 1100px) {
    .header-topbar {
        grid-template-columns: 220px minmax(240px, 1fr) auto auto;
    }
    .header-topbar-tools .header-utility-text {
        display: none;
    }
}
@media (max-width: 920px) {
    .header-topbar {
        grid-template-columns: 190px 1fr auto;
    }
    .header-topbar-tools {
        display: none;
    }
}


/* ============================================================
   AJUSTES RESPONSIVOS — header/menu/slider mobile
   ============================================================ */
@media (max-width: 760px) {
    .site-header {
        overflow: visible;
    }

    .header-topbar-wrap,
    .header-topbar,
    .topbar-center.search-wrapper {
        overflow: visible !important;
    }

    .topbar-center.search-wrapper {
        position: relative;
        z-index: 1105;
    }

    .header-topbar-wrap {
        padding: 0;
    }

    .header-topbar {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand actions"
            "search search";
        align-items: center;
        gap: 10px 12px;
        min-height: auto;
        width: min(calc(100% - 20px), 100%);
        padding: 10px 0 12px;
    }

    .header-topbar > .brand-lockup {
        grid-area: brand;
        min-width: 0;
        gap: 10px;
    }

    .topbar-center.search-wrapper {
        grid-area: search;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .header-actions {
        grid-area: actions;
        justify-self: end;
        gap: 6px;
        flex-wrap: nowrap;
        max-width: 100%;
    }

    .brand-logo-image {
        max-width: 150px;
        max-height: 46px;
    }

    .brand-copy strong {
        font-size: 1.2rem;
    }

    .search-form {
        height: 40px;
        border-radius: 12px;
    }

    .search-form input {
        padding-inline: 12px;
        font-size: 0.88rem;
    }

    .search-form button {
        min-width: 48px;
        padding: 0 14px;
        font-size: 0;
    }

    .search-form button i {
        font-size: 0.96rem;
    }

    .header-icon,
    .mobile-toggle,
    .theme-toggle-btn.header-icon {
        width: 34px;
        height: 34px;
    }

    .cart-badge {
        top: -4px;
        right: -2px;
    }

    .live-search-results {
        left: 0;
        right: 0;
        top: calc(100% + 6px);
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
        z-index: 3200;
    }

    .hero-slider,
    .hero-slide,
    .hero-slide-frame {
        overflow: hidden;
    }

    .hero-slide {
        min-height: clamp(225px, 56vw, 285px);
        padding: 16px 16px 54px;
        gap: 14px;
        align-items: stretch;
    }

    .hero-slide-visual {
        display: block !important;
        width: min(100%, 300px);
        margin: 0 auto;
        order: -1;
    }

    .hero-slide.visual-only {
        padding: 0 0 48px;
    }

    .hero-slide.visual-only .hero-slide-visual {
        width: 100%;
        max-width: none;
    }

    .hero-slide.visual-only .hero-slide-frame img {
        height: clamp(200px, 54vw, 250px);
        object-fit: cover;
    }

    .hero-slide-copy {
        max-width: 100%;
        text-align: left;
    }

    .hero-slide-copy h1 {
        font-size: clamp(1.25rem, 6vw, 1.78rem);
        line-height: 1.05;
        margin-bottom: 8px;
    }

    .hero-slide-copy p {
        font-size: 0.84rem;
        margin-bottom: 12px;
    }

    .hero-slide-eyebrow,
    .hero-slide-pill {
        max-width: 100%;
    }

    .hero-slide-meta {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 12px;
    }

    .hero-slide-meta strong {
        font-size: 1.1rem;
    }

    .hero-slide-actions {
        gap: 8px;
    }

    .hero-slide-actions > * {
        flex: 1 1 calc(50% - 4px);
        justify-content: center;
        min-width: 0;
    }

    .btn-hero,
    .btn-hero-secondary,
    .btn-hero-outline {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.82rem;
    }

    .hero-slider-arrow {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
    }

    .hero-slider-arrow.prev {
        left: 12px;
    }

    .hero-slider-arrow.next {
        right: 12px;
    }

    .hero-slider-dots {
        bottom: 18px;
        gap: 6px;
    }

    .category-image-carousel-shell {
        gap: 4px;
    }

    .category-image-carousel-viewport {
        --carousel-cols: 3;
        --carousel-gap: 12px;
        padding-inline: 0;
    }

    .category-image-carousel-track {
        gap: var(--carousel-gap);
    }

    .category-image-card {
        flex: 0 0 calc((100% - ((var(--carousel-cols) - 1) * var(--carousel-gap))) / var(--carousel-cols));
        width: calc((100% - ((var(--carousel-cols) - 1) * var(--carousel-gap))) / var(--carousel-cols));
        min-width: calc((100% - ((var(--carousel-cols) - 1) * var(--carousel-gap))) / var(--carousel-cols));
        max-width: calc((100% - ((var(--carousel-cols) - 1) * var(--carousel-gap))) / var(--carousel-cols));
        gap: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .category-image-card-media {
        width: min(calc(100% - 2px), 136px);
        height: clamp(84px, 15vw, 106px);
    }

    .category-image-card-copy h3 {
        font-size: 0.86rem;
    }

    .category-image-carousel-arrow {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        font-size: 1.15rem;
        top: auto;
    }
    .category-image-carousel-arrow.prev { left: auto; }
    .category-image-carousel-arrow.next { right: auto; }

    .benefit-item {
        padding: 14px 14px;
        gap: 12px;
    }

    .benefit-item h3 {
        font-size: 0.92rem;
    }

    .benefit-item p {
        font-size: 0.84rem;
    }
}

@media (max-width: 560px) {
    .category-image-carousel-viewport {
        --carousel-cols: 2;
        --carousel-gap: 10px;
        padding-inline: 0;
    }

    .category-image-card-media {
        width: min(calc(100% - 2px), 128px);
        height: clamp(78px, 24vw, 98px);
    }

    .category-image-card-copy h3 {
        font-size: 0.82rem;
    }

    .category-image-carousel-arrow {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        font-size: 1rem;
    }

    .header-topbar {
        width: min(calc(100% - 16px), 100%);
        gap: 9px 10px;
    }

    .header-promo-bar {
        width: min(calc(100% - 16px), 100%);
        gap: 7px;
    }

    .header-promo-message {
        font-size: 0.72rem;
        line-height: 1.2;
    }

    .header-promo-cta {
        min-height: 22px;
        padding: 4px 11px;
        font-size: 0.72rem;
    }

    .header-actions > a[title*="Favoritos"],
    .header-actions .theme-toggle-btn {
        display: none;
    }

    .brand-logo-image {
        max-width: 132px;
        max-height: 40px;
    }

    .brand-copy strong {
        font-size: 1.05rem;
    }

    .hero-slide {
        min-height: clamp(235px, 64vw, 295px);
        padding-inline: 14px;
    }

    .hero-slide-visual {
        width: min(100%, 240px);
    }

    .hero-slide-actions > * {
        flex-basis: 100%;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-item,
    .benefit-item:nth-child(odd) {
        border-right: none;
        border-bottom: 1px solid var(--border);
        min-height: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .benefit-icon {
        width: 42px;
        height: 42px;
        font-size: 1.08rem;
    }

    .benefit-copy {
        width: 100%;
    }

    .benefit-item:nth-child(odd) {
        border-right: 1px solid var(--border);
    }

    .benefit-item:last-child,
    .benefit-item:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }
}

@media (max-width: 400px) {
    .header-topbar {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .header-actions {
        gap: 5px;
    }

    .header-icon,
    .mobile-toggle,
    .theme-toggle-btn.header-icon {
        width: 32px;
        height: 32px;
    }

    .search-form input {
        font-size: 0.84rem;
    }

    .hero-slide-copy h1 {
        font-size: 1.18rem;
    }

    .category-image-carousel-shell {
        gap: 2px;
    }

    .category-image-carousel-viewport {
        --carousel-cols: 1;
        --carousel-gap: 8px;
        padding-inline: 0;
    }

    .category-image-carousel-track {
        gap: var(--carousel-gap);
    }

    .category-image-card {
        flex: 0 0 calc((100% - ((var(--carousel-cols) - 1) * var(--carousel-gap))) / var(--carousel-cols));
        width: calc((100% - ((var(--carousel-cols) - 1) * var(--carousel-gap))) / var(--carousel-cols));
        min-width: calc((100% - ((var(--carousel-cols) - 1) * var(--carousel-gap))) / var(--carousel-cols));
        max-width: calc((100% - ((var(--carousel-cols) - 1) * var(--carousel-gap))) / var(--carousel-cols));
        gap: 6px;
    }

    .category-image-card-media {
        width: min(calc(100% - 2px), 184px);
        height: clamp(86px, 36vw, 118px);
    }

    .category-image-card-copy {
        width: 100%;
        padding-inline: 2px;
    }

    .category-image-card-copy h3 {
        font-size: 0.78rem;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .category-image-carousel-arrow {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        font-size: 0.95rem;
    }
}


@media (max-width: 560px) {
    .promo-card-cta {
        min-height: 46px;
        border-radius: 12px;
    }

    .promo-card-cta__timer,
    .promo-card-cta__buy {
        min-height: 46px;
    }

    .promo-card-cta__icon {
        flex: 0 0 38px;
        min-width: 38px;
        font-size: 1.05rem;
        border-radius: 11px 0 0 11px;
    }

    .promo-card-cta__content {
        padding: 5px 8px 5px 8px;
        gap: 1px;
    }

    .promo-card-cta__label {
        font-size: 0.64rem;
        letter-spacing: 0.02em;
    }

    .promo-card-cta__value {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .promo-card-cta__icon {
        flex-basis: 34px;
        min-width: 34px;
        font-size: 0.96rem;
    }

    .promo-card-cta__content {
        padding-inline: 7px;
    }

    .promo-card-cta__label {
        font-size: 0.6rem;
    }

    .promo-card-cta__value {
        font-size: 0.74rem;
    }
}


/* ============================================================
   STORE SKELETON LOADING
   ============================================================ */
:root {
    --skeleton-base: #e8edf4;
    --skeleton-highlight: #f7f9fc;
}
html[data-theme="dark"] {
    --skeleton-base: rgba(255,255,255,0.07);
    --skeleton-highlight: rgba(255,255,255,0.14);
}
@keyframes store-skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
body.is-page-loading {
    cursor: progress;
}
body.is-page-loading main,
body.is-page-loading .hero-slider-section,
body.is-page-loading .benefit-strip,
body.is-page-loading .live-search-results {
    pointer-events: none;
}
body.is-page-loading .hero-slide,
body.is-page-loading .home-section-head,
body.is-page-loading .product-card,
body.is-page-loading .catalog-header,
body.is-page-loading .benefit-item,
body.is-page-loading .category-image-card,
body.is-page-loading .dual-banner,
body.is-page-loading .fullwidth-banner,
body.is-page-loading .promo-banner,
body.is-page-loading .product-main-visual,
body.is-page-loading .product-thumb,
body.is-page-loading .product-summary-top,
body.is-page-loading .product-price-box,
body.is-page-loading .product-buy-box,
body.is-page-loading .product-whatsapp-btn,
body.is-page-loading .product-seal-card,
body.is-page-loading .product-shipping-box,
body.is-page-loading .product-review-card,
body.is-page-loading .product-tab-buttons button,
body.is-page-loading .product-tab-panel,
body.is-page-loading .product-related-card,
body.is-page-loading .cart-header,
body.is-page-loading .cart-glass-item,
body.is-page-loading .cart-summary-card,
body.is-page-loading .ck2-shell,
body.is-page-loading .ck2-card,
body.is-page-loading .profile-shell,
body.is-page-loading .auth-panel,
.live-search-results.is-loading .ls-item--skeleton,
.live-search-results.is-loading .ls-item--skeleton .ls-img,
.live-search-results.is-loading .ls-item--skeleton .ls-platform,
.live-search-results.is-loading .ls-item--skeleton .ls-skeleton-line {
    position: relative;
    overflow: hidden;
}
body.is-page-loading .hero-slide::after,
body.is-page-loading .home-section-head::after,
body.is-page-loading .product-card::after,
body.is-page-loading .catalog-header::after,
body.is-page-loading .benefit-item::after,
body.is-page-loading .category-image-card::after,
body.is-page-loading .dual-banner::after,
body.is-page-loading .fullwidth-banner::after,
body.is-page-loading .promo-banner::after,
body.is-page-loading .product-main-visual::after,
body.is-page-loading .product-thumb::after,
body.is-page-loading .product-summary-top::after,
body.is-page-loading .product-price-box::after,
body.is-page-loading .product-buy-box::after,
body.is-page-loading .product-whatsapp-btn::after,
body.is-page-loading .product-seal-card::after,
body.is-page-loading .product-shipping-box::after,
body.is-page-loading .product-review-card::after,
body.is-page-loading .product-tab-buttons button::after,
body.is-page-loading .product-tab-panel::after,
body.is-page-loading .product-related-card::after,
body.is-page-loading .cart-header::after,
body.is-page-loading .cart-glass-item::after,
body.is-page-loading .cart-summary-card::after,
body.is-page-loading .ck2-shell::after,
body.is-page-loading .ck2-card::after,
body.is-page-loading .profile-shell::after,
body.is-page-loading .auth-panel::after,
.live-search-results.is-loading .ls-item--skeleton .ls-img::after,
.live-search-results.is-loading .ls-item--skeleton .ls-platform::after,
.live-search-results.is-loading .ls-item--skeleton .ls-skeleton-line::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--skeleton-base) 0%, var(--skeleton-highlight) 50%, var(--skeleton-base) 100%);
    background-size: 220% 100%;
    animation: store-skeleton-shimmer 1.2s ease-in-out infinite;
    z-index: 2;
}
body.is-page-loading .hero-slide > *,
body.is-page-loading .home-section-head > *,
body.is-page-loading .product-card > *,
body.is-page-loading .catalog-header > *,
body.is-page-loading .benefit-item > *,
body.is-page-loading .category-image-card > *,
body.is-page-loading .dual-banner > *,
body.is-page-loading .fullwidth-banner > *,
body.is-page-loading .promo-banner > *,
body.is-page-loading .product-main-visual > *,
body.is-page-loading .product-thumb > *,
body.is-page-loading .product-summary-top > *,
body.is-page-loading .product-price-box > *,
body.is-page-loading .product-buy-box > *,
body.is-page-loading .product-whatsapp-btn > *,
body.is-page-loading .product-seal-card > *,
body.is-page-loading .product-shipping-box > *,
body.is-page-loading .product-review-card > *,
body.is-page-loading .product-tab-buttons button > *,
body.is-page-loading .product-tab-panel > *,
body.is-page-loading .product-related-card > *,
body.is-page-loading .cart-header > *,
body.is-page-loading .cart-glass-item > *,
body.is-page-loading .cart-summary-card > *,
body.is-page-loading .ck2-shell > *,
body.is-page-loading .ck2-card > *,
body.is-page-loading .profile-shell > *,
body.is-page-loading .auth-panel > * {
    opacity: 0 !important;
}
body.is-page-loading .product-thumb {
    min-height: 86px;
}
body.is-page-loading .product-tab-buttons {
    gap: 12px;
}
body.is-page-loading .product-tab-buttons button {
    min-height: 52px;
}
body.is-page-loading .product-tab-panel {
    min-height: 180px;
}
body.is-page-loading .product-main-visual {
    min-height: clamp(320px, 48vw, 560px);
}
body.is-page-loading .product-price-box,
body.is-page-loading .product-summary-top,
body.is-page-loading .product-buy-box,
body.is-page-loading .product-whatsapp-btn,
body.is-page-loading .product-shipping-box {
    min-height: 88px;
}
body.is-page-loading .product-seal-card,
body.is-page-loading .product-review-card {
    min-height: 104px;
}
body.is-page-loading .cart-glass-item,
body.is-page-loading .ck2-card,
body.is-page-loading .auth-panel,
body.is-page-loading .profile-shell {
    min-height: 120px;
}
body.is-page-loading .cart-summary-card,
body.is-page-loading .ck2-shell {
    min-height: 220px;
}
.live-search-results.is-loading {
    display: block;
}
.live-search-results.is-loading .ls-item--skeleton {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color, #e8edf5);
    pointer-events: none;
}
.live-search-results.is-loading .ls-item--skeleton:last-child {
    border-bottom: none;
}


body.is-page-loading .home-product-grid.has-store-grid-skeleton > .product-card,
body.is-page-loading .product-grid.has-store-grid-skeleton:not(.list-view) > .product-card,
body.is-page-loading .product-related-grid.has-store-grid-skeleton > .product-related-card {
    display: none !important;
}
.store-grid-skeleton-card {
    display: none;
    flex-direction: column;
    min-width: 0;
    background: var(--bg-card, #ffffff);
    border: 1px solid var(--border, #e6ebf2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
body.is-page-loading .home-product-grid.has-store-grid-skeleton > .store-grid-skeleton-card,
body.is-page-loading .product-grid.has-store-grid-skeleton:not(.list-view) > .store-grid-skeleton-card,
body.is-page-loading .product-related-grid.has-store-grid-skeleton > .store-grid-skeleton-card {
    display: flex;
}
.store-grid-skeleton-media,
.store-grid-skeleton-line,
.store-grid-skeleton-pill,
.store-grid-skeleton-price,
.store-grid-skeleton-badge {
    position: relative;
    overflow: hidden;
    background: var(--skeleton-base);
}
.store-grid-skeleton-media::after,
.store-grid-skeleton-line::after,
.store-grid-skeleton-pill::after,
.store-grid-skeleton-price::after,
.store-grid-skeleton-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--skeleton-base) 0%, var(--skeleton-highlight) 50%, var(--skeleton-base) 100%);
    background-size: 220% 100%;
    animation: store-skeleton-shimmer 1.2s ease-in-out infinite;
}
.store-grid-skeleton-media {
    aspect-ratio: 1 / 1;
    border-bottom: 1px solid var(--border, #e6ebf2);
    border-radius: 0;
}
.store-grid-skeleton-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.store-grid-skeleton-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.store-grid-skeleton-pill {
    width: 72px;
    height: 18px;
    border-radius: 999px;
}
.store-grid-skeleton-badge {
    width: 38px;
    height: 18px;
    border-radius: 6px;
}
.store-grid-skeleton-line {
    height: 12px;
    border-radius: 999px;
}
.store-grid-skeleton-line--title {
    width: 88%;
    height: 14px;
}
.store-grid-skeleton-line--title2 {
    width: 62%;
}
.store-grid-skeleton-line--text {
    width: 94%;
}
.store-grid-skeleton-line--text2 {
    width: 76%;
}
.store-grid-skeleton-price {
    width: 56%;
    height: 20px;
    border-radius: 999px;
    margin-top: auto;
}
@media (max-width: 768px) {
    .store-grid-skeleton-body {
        padding: 9px;
        gap: 7px;
    }
    .store-grid-skeleton-pill {
        width: 62px;
        height: 16px;
    }
    .store-grid-skeleton-badge {
        width: 34px;
        height: 16px;
    }
    .store-grid-skeleton-line--title {
        width: 92%;
    }
    .store-grid-skeleton-price {
        width: 68%;
        height: 18px;
    }
}
.live-search-results.is-loading .ls-item--skeleton .ls-img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: transparent;
}
.live-search-results.is-loading .ls-item--skeleton .ls-platform {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    justify-self: end;
    background: transparent;
}
.live-search-results.is-loading .ls-item--skeleton .ls-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.live-search-results.is-loading .ls-item--skeleton .ls-skeleton-line {
    display: block;
    height: 14px;
    border-radius: 999px;
    background: transparent;
}
.live-search-results.is-loading .ls-item--skeleton .ls-skeleton-line--title {
    width: 78%;
}
.live-search-results.is-loading .ls-item--skeleton .ls-skeleton-line--price {
    width: 54%;
}
@media (max-width: 768px) {
    body.is-page-loading .hero-slide,
    body.is-page-loading .dual-banner,
    body.is-page-loading .fullwidth-banner,
    body.is-page-loading .promo-banner,
    body.is-page-loading .benefit-item,
    body.is-page-loading .home-section-head,
    body.is-page-loading .catalog-header {
        min-height: 110px;
    }
    body.is-page-loading .product-card {
        min-height: 320px;
    }
    body.is-page-loading .product-main-visual {
        min-height: 290px;
    }
    .live-search-results.is-loading .ls-item--skeleton {
        grid-template-columns: 58px minmax(0, 1fr) 28px;
        gap: 12px;
        padding: 12px 14px;
    }
    .live-search-results.is-loading .ls-item--skeleton .ls-img {
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }
}


.catalog-products-column {
    min-width: 0;
}

.catalog-section-banner {
    display: block;
    width: 100%;
    margin: 0 0 1.5rem;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-color, #dde3ed);
    background: #e9edf3;
    box-shadow: none;
}

.catalog-section-banner.is-link {
    text-decoration: none;
}

.catalog-section-banner img {
    display: block;
    width: 100%;
    height: clamp(140px, 18vw, 220px);
    object-fit: contain;
    background: #fff;
}

@media (max-width: 768px) {
    .catalog-section-banner {
        margin-bottom: 1rem;
        border-radius: 14px;
    }

    .catalog-section-banner img {
        height: clamp(110px, 30vw, 160px);
    }
}

/* ============================================================
   MENU BACKDROP (OVERLAY)
   ============================================================ */
#menu-backdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 280; /* Abaixo dos painéis (300), acima do conteúdo */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}
#menu-backdrop.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ============================================================
   DARK MODE COHERENCE
   ============================================================ */
html[data-theme="dark"] {
    --dark-surface: #171b22;
    --dark-surface-2: #10151d;
    --dark-surface-3: #1c222c;
    --dark-text-strong: #f8fafc;
    --dark-text: #d6e0ea;
    --dark-text-soft: #aebaca;
    --dark-accent-soft: rgba(var(--accent-rgb),0.12);
    --dark-accent-border: rgba(var(--accent-rgb),0.38);
}

html[data-theme="dark"] span,
html[data-theme="dark"] small {
    color: inherit;
}

html[data-theme="dark"] body,
html[data-theme="dark"] p,
html[data-theme="dark"] li,
html[data-theme="dark"] td,
html[data-theme="dark"] th {
    color: var(--dark-text) !important;
}

html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4,
html[data-theme="dark"] h5,
html[data-theme="dark"] h6,
html[data-theme="dark"] strong,
html[data-theme="dark"] b,
html[data-theme="dark"] label,
html[data-theme="dark"] .section-title,
html[data-theme="dark"] .page-title,
html[data-theme="dark"] .home-section-title,
html[data-theme="dark"] .catalog-header h1,
html[data-theme="dark"] .catalog-header h2,
html[data-theme="dark"] .product-title,
html[data-theme="dark"] .product-name,
html[data-theme="dark"] .product-card-title,
html[data-theme="dark"] .footer-column h3,
html[data-theme="dark"] .benefit-item strong,
html[data-theme="dark"] .hero-slide-title,
html[data-theme="dark"] .hero-copy h1,
html[data-theme="dark"] .hero-copy h2 {
    color: var(--dark-text-strong) !important;
}

html[data-theme="dark"] .section-head p,
html[data-theme="dark"] .section-subtitle,
html[data-theme="dark"] .home-section-head p,
html[data-theme="dark"] .benefit-copy,
html[data-theme="dark"] .footer-column a,
html[data-theme="dark"] .footer-company-meta span,
html[data-theme="dark"] .profile-helper-text,
html[data-theme="dark"] .product-price-note,
html[data-theme="dark"] .product-price-sub,
html[data-theme="dark"] .hero-slide-copy p {
    color: var(--dark-text-soft) !important;
}

html[data-theme="dark"] .hero-slide-pill,
html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] .product-card-price,
html[data-theme="dark"] .product-price-main,
html[data-theme="dark"] .pm-price,
html[data-theme="dark"] .header-promo-cta,
html[data-theme="dark"] .price-highlight,
html[data-theme="dark"] .price-current,
html[data-theme="dark"] .catalog-price-current {
    color: var(--accent,#ff6a1c) !important;
}

html[data-theme="dark"] .platform-nav-link.active,
html[data-theme="dark"] .platform-nav-item.is-open .platform-nav-link,
html[data-theme="dark"] .mnav-dept-btn:hover,
html[data-theme="dark"] .header-icon:hover {
    border-color: rgba(var(--accent-rgb),0.24);
}

html[data-theme="dark"] .btn-secondary,
html[data-theme="dark"] .product-buy-secondary,
html[data-theme="dark"] .btn-outline {
    background: var(--dark-surface-2) !important;
    border-color: #2a313d !important;
    color: var(--dark-text-strong) !important;
}

html[data-theme="dark"] .ck2-pay-label input:checked + .ck2-pay-card,
html[data-theme="dark"] .ck2-step-body .ck2-pay-card[style*="fff7f4"],
html[data-theme="dark"] .ck2-step-body .ck2-pay-card[style*="var(--accent)"] {
    background: var(--dark-accent-soft) !important;
    border-color: var(--dark-accent-border) !important;
}

/* ============================================================
   DARK MODE SAFE ZONES - HERO / BANNERS / CAROUSELS / OFFERS
   ============================================================ */
html[data-theme="dark"] .container {
    background: transparent !important;
}

html[data-theme="dark"] .promo-card-cta {
    background: #171b22 !important;
    border-color: var(--price, #0f5bd4) !important;
}
html[data-theme="dark"] .promo-card-cta__label,
html[data-theme="dark"] .promo-card-cta__value {
    color: #f8fafc !important;
}
html[data-theme="dark"] .promo-card-cta__label {
    color: rgba(255, 177, 125, 0.92) !important;
}
html[data-theme="dark"] .promo-card-cta__icon,
html[data-theme="dark"] .promo-card-cta__buy {
    background: var(--price, #0f5bd4) !important;
    color: #ffffff !important;
}
html[data-theme="dark"] .promo-card-cta__buy span,
html[data-theme="dark"] .promo-card-cta__buy i {
    color: #ffffff !important;
}

html[data-theme="dark"] .hero-slider-section,
html[data-theme="dark"] .dual-banner-section,
html[data-theme="dark"] .fullwidth-banner-section,
html[data-theme="dark"] .promo-banner-section,
html[data-theme="dark"] .brands-carousel-section,
html[data-theme="dark"] .category-image-carousel-section {
    background: #0c0f14 !important;
}

html[data-theme="dark"] .dual-banner-section .container,
html[data-theme="dark"] .fullwidth-banner-section .container,
html[data-theme="dark"] .promo-banner-section .container,
html[data-theme="dark"] .brands-carousel-section .container,
html[data-theme="dark"] .category-image-carousel-section .container {
    background: transparent !important;
}

html[data-theme="dark"] .hero-slider {
    background: transparent !important;
}
html[data-theme="dark"] .hero-slide:not(.has-bg-image):not(.visual-only) {
    background: linear-gradient(120deg,#0f2041 0%,#1a3561 55%,#0d1835 100%) !important;
}
html[data-theme="dark"] .hero-slide.theme-product:not(.has-bg-image):not(.visual-only) {
    background: linear-gradient(120deg,#0e1f3c 0%,#1b3768 55%,#0c1c38 100%) !important;
}
html[data-theme="dark"] .hero-slide.theme-category:not(.has-bg-image):not(.visual-only) {
    background: linear-gradient(120deg,#0c1e38 0%,#172f5a 55%,#0a1828 100%) !important;
}
html[data-theme="dark"] .hero-slide.has-bg-image {
    background-blend-mode: normal !important;
}
html[data-theme="dark"] .hero-slide.has-bg-image::before {
    content: none !important;
    display: none !important;
}
html[data-theme="dark"] .hero-slide-frame,
html[data-theme="dark"] .hero-slide.visual-only .hero-slide-frame,
html[data-theme="dark"] .hero-slide.visual-only .hero-slide-frame img {
    background: transparent !important;
    box-shadow: none !important;
}
html[data-theme="dark"] .hero-slide.visual-only .hero-slide-frame img,
html[data-theme="dark"] .dual-banner--image-only img {
    filter: none !important;
}
html[data-theme="dark"] .hero-slider-arrow {
    background: rgba(0,0,0,0.38) !important;
    border: none !important;
    box-shadow: none !important;
}
html[data-theme="dark"] .hero-slider-arrow:hover {
    background: rgba(0,0,0,0.62) !important;
}
html[data-theme="dark"] .hero-slider-dots button {
    background: rgba(255,255,255,0.35) !important;
}

html[data-theme="dark"] .dual-banner {
    box-shadow: none !important;
}
html[data-theme="dark"] .dual-banner--blue:not(.dual-banner--image-only) {
    background: linear-gradient(120deg, color-mix(in srgb, var(--hero-surface) 86%, black) 0%, var(--button-primary, var(--accent)) 60%, color-mix(in srgb, var(--button-primary, var(--accent)) 74%, white) 100%) !important;
}
html[data-theme="dark"] .dual-banner--purple:not(.dual-banner--image-only) {
    background: linear-gradient(120deg, #1a0b55 0%, #5e2be8 60%, #7c4df5 100%) !important;
}
html[data-theme="dark"] .dual-banner--image-only {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
html[data-theme="dark"] .dual-banner-text small {
    color: rgba(255,255,255,0.65) !important;
}
html[data-theme="dark"] .dual-banner-badge {
    background: rgba(255,255,255,0.18) !important;
    border-color: rgba(255,255,255,0.25) !important;
}

html[data-theme="dark"] .fullwidth-banner.fullwidth-banner--image-only {
    background-color: color-mix(in srgb, var(--hero-surface) 82%, #08101e) !important;
    box-shadow: 0 18px 42px -24px rgba(6, 13, 25, 0.42) !important;
    border: none !important;
}
html[data-theme="dark"] .fullwidth-banner.fullwidth-banner--placeholder {
    background-image: linear-gradient(135deg, color-mix(in srgb, var(--hero-surface) 90%, black) 0%, color-mix(in srgb, var(--accent) 44%, var(--hero-surface)) 100%) !important;
}

html[data-theme="dark"] .promo-banner:not(.promo-banner--image-only) {
    background: linear-gradient(120deg, color-mix(in srgb, var(--hero-surface) 90%, black) 0%, var(--button-primary, var(--accent)) 100%) !important;
    border: none !important;
    box-shadow: none !important;
}
html[data-theme="dark"] .promo-banner.promo-banner--image-only {
    background-color: transparent !important;
    background-image: inherit;
    box-shadow: 0 18px 42px -24px rgba(6, 13, 25, 0.42) !important;
    color: #fff !important;
}
html[data-theme="dark"] .promo-banner-left .promo-banner-tag {
    color: rgba(255,255,255,0.55) !important;
}
html[data-theme="dark"] .promo-banner-left h3 strong {
    color: var(--accent,#ff6a1c) !important;
}

html[data-theme="dark"] .catalog-section-banner {
    background: #171b22 !important;
    border-color: #2a313d !important;
}
html[data-theme="dark"] .catalog-section-banner img {
    background: #10151d !important;
}

html[data-theme="dark"] .brands-carousel-section {
    background: #0c0f14 !important;
    border-bottom-color: #2a313d !important;
}
html[data-theme="dark"] .brands-carousel-shell,
html[data-theme="dark"] .brands-carousel-viewport,
html[data-theme="dark"] .brands-carousel-track,
html[data-theme="dark"] .brand-carousel-item {
    background: transparent !important;
}
html[data-theme="dark"] .brand-carousel-icon {
    color: #f8fafc !important;
}
html[data-theme="dark"] .brands-carousel-arrow {
    color: var(--primary, var(--accent,#ff6a1c)) !important;
}

html[data-theme="dark"] .category-image-carousel-section {
    background: #0c0f14 !important;
    border-bottom-color: #2a313d !important;
}
html[data-theme="dark"] .category-image-carousel-shell,
html[data-theme="dark"] .category-image-carousel-viewport,
html[data-theme="dark"] .category-image-carousel-track,
html[data-theme="dark"] .category-image-card,
html[data-theme="dark"] .category-image-card-media {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
}
html[data-theme="dark"] .category-image-card-copy h3 {
    color: #f8fafc !important;
}
html[data-theme="dark"] .category-image-carousel-arrow {
    color: var(--blue) !important;
}
html[data-theme="dark"] .benefit-strip {
    background: #171b22 !important;
    border-bottom-color: #2a313d !important;
}
html[data-theme="dark"] .benefit-item {
    background: #171b22 !important;
    border-right-color: #2a313d !important;
}
html[data-theme="dark"] .benefit-item h3 {
    color: #f8fafc !important;
}
html[data-theme="dark"] .benefit-item p {
    color: #cfd8e3 !important;
}
html[data-theme="dark"] .product-card-shell:hover .product-card,
html[data-theme="dark"] .product-card-shell:focus-within .product-card,
html[data-theme="dark"] .product-card:hover {
    background: var(--bg-card) !important;
    border-color: rgba(255,255,255,0.12) !important;
}
html[data-theme="dark"] .product-card .product-media {
    background: #1a1f29 !important;
}
html[data-theme="dark"] .product-card .product-media img[data-white-bg-mask-state="pending"],
html[data-theme="dark"] .product-card .product-media img[data-white-bg-mask-state="processing"],
html[data-theme="dark"] .cart-glass-item .cgi-media img[data-white-bg-mask-state="pending"],
html[data-theme="dark"] .cart-glass-item .cgi-media img[data-white-bg-mask-state="processing"],
html[data-theme="dark"] #product-main-image[data-white-bg-mask-state="pending"],
html[data-theme="dark"] #product-main-image[data-white-bg-mask-state="processing"],
html[data-theme="dark"] .product-thumb img[data-white-bg-mask-state="pending"],
html[data-theme="dark"] .product-thumb img[data-white-bg-mask-state="processing"],
html[data-theme="dark"] .product-gallery-item img[data-white-bg-mask-state="pending"],
html[data-theme="dark"] .product-gallery-item img[data-white-bg-mask-state="processing"],
html[data-theme="dark"] .product-hero-media-card img[data-white-bg-mask-state="pending"],
html[data-theme="dark"] .product-hero-media-card img[data-white-bg-mask-state="processing"],
html[data-theme="dark"] .purchase-item img[data-white-bg-mask-state="pending"],
html[data-theme="dark"] .purchase-item img[data-white-bg-mask-state="processing"],
html[data-theme="dark"] .orders-history-item img[data-white-bg-mask-state="pending"],
html[data-theme="dark"] .orders-history-item img[data-white-bg-mask-state="processing"] {
    opacity: 0;
    transition: opacity 0.18s ease;
}
html[data-theme="dark"] .product-card .product-media img[data-white-bg-mask-state="ready"],
html[data-theme="dark"] .cart-glass-item .cgi-media img[data-white-bg-mask-state="ready"],
html[data-theme="dark"] #product-main-image[data-white-bg-mask-state="ready"],
html[data-theme="dark"] .product-thumb img[data-white-bg-mask-state="ready"],
html[data-theme="dark"] .product-gallery-item img[data-white-bg-mask-state="ready"],
html[data-theme="dark"] .product-hero-media-card img[data-white-bg-mask-state="ready"],
html[data-theme="dark"] .purchase-item img[data-white-bg-mask-state="ready"],
html[data-theme="dark"] .orders-history-item img[data-white-bg-mask-state="ready"] {
    opacity: 1;
}


/* Correção v15 — segurança para Bootstrap Icons: não deixa controles de fonte herdarem para o ícone. */
i.bi, span.bi, i[class^="bi-"], i[class*=" bi-"], span[class^="bi-"], span[class*=" bi-"] {
    font-family: "bootstrap-icons" !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 1;
}
i.bi::before, span.bi::before, i[class^="bi-"]::before, i[class*=" bi-"]::before, span[class^="bi-"]::before, span[class*=" bi-"]::before {
    font-family: "bootstrap-icons" !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 1;
}

/* Correção v16 — proteção final: palhetas de fonte do menu não podem trocar a fonte dos ícones. */
.site-header i.fa,
.site-header i.fas,
.site-header i.fa-solid,
.mobile-drawer i.fa,
.mobile-drawer i.fas,
.mobile-drawer i.fa-solid,
.site-header span.fa,
.site-header span.fas,
.site-header span.fa-solid,
.mobile-drawer span.fa,
.mobile-drawer span.fas,
.mobile-drawer span.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
    font-style: normal !important;
    font-weight: 900 !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}
.site-header i.far,
.site-header i.fa-regular,
.mobile-drawer i.far,
.mobile-drawer i.fa-regular,
.site-header span.far,
.site-header span.fa-regular,
.mobile-drawer span.far,
.mobile-drawer span.fa-regular {
    font-family: "Font Awesome 6 Free" !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}
.site-header i.fab,
.site-header i.fa-brands,
.mobile-drawer i.fab,
.mobile-drawer i.fa-brands,
.site-header span.fab,
.site-header span.fa-brands,
.mobile-drawer span.fab,
.mobile-drawer span.fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
}
.site-header i.bi,
.site-header span.bi,
.mobile-drawer i.bi,
.mobile-drawer span.bi,
.site-header i.bi::before,
.site-header span.bi::before,
.mobile-drawer i.bi::before,
.mobile-drawer span.bi::before {
    font-family: "bootstrap-icons" !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

/* ============================================================
   PRODUTO RESPONSIVO — miniaturas da galeria abaixo da imagem
   Mantem a estrutura original e apenas reorganiza no mobile.
   ============================================================ */
@media (max-width: 760px) {
    .product-single-gallery {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .product-single-gallery .product-main-visual {
        order: 1 !important;
        width: 100% !important;
    }

    .product-single-gallery .psg-thumb-wrap {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 8px !important;
    }

    .product-single-gallery .psg-thumb-viewport {
        width: 100% !important;
        height: 68px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        padding: 2px 1px 6px !important;
    }

    .product-single-gallery .psg-thumb-viewport::-webkit-scrollbar {
        height: 4px;
    }

    .product-single-gallery .psg-thumb-viewport::-webkit-scrollbar-thumb {
        background: rgba(var(--accent-rgb), 0.28);
        border-radius: 999px;
    }

    .product-single-gallery .psg-thumb-track {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        width: max-content !important;
        transform: none !important;
    }

    .product-single-gallery .product-thumb {
        width: 60px !important;
        height: 60px !important;
        flex: 0 0 60px !important;
        scroll-snap-align: start;
    }

    .product-single-gallery .psg-arrow {
        display: none !important;
    }
}


/* ============================================================
   PRODUTO RESPONSIVO OTIMIZADO V24
   Ajustes leves somente para mobile. Desktop permanece igual.
   ============================================================ */
@media (max-width: 760px) {
    .product-single-wrap {
        padding: 0 0 28px !important;
    }

    .product-breadcrumbs {
        padding: 9px 2px 7px !important;
        font-size: 0.72rem !important;
        line-height: 1.35 !important;
    }

    .product-single-hero {
        padding: 12px !important;
        gap: 14px !important;
        border-radius: 16px !important;
        box-shadow: none !important;
    }

    .product-single-gallery {
        gap: 8px !important;
    }

    .product-single-gallery .product-main-visual {
        aspect-ratio: 4 / 3 !important;
        height: clamp(218px, 68vw, 318px) !important;
        min-height: 0 !important;
        border-radius: 14px !important;
        cursor: default !important;
    }

    .product-single-gallery .product-main-visual img,
    .product-main-visual img {
        width: 82% !important;
        height: 82% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        transform: none !important;
        will-change: auto !important;
    }

    .product-main-visual:hover img {
        transform: none !important;
    }

    .psg-zoom-hint {
        display: none !important;
    }

    .product-freight-badge {
        top: 8px !important;
        left: 8px !important;
        min-height: 24px !important;
        padding: 0 9px !important;
        font-size: 0.62rem !important;
        border-radius: 7px !important;
    }

    .product-single-gallery .psg-thumb-wrap {
        gap: 6px !important;
    }

    .product-single-gallery .psg-thumb-viewport {
        height: 56px !important;
        padding: 1px 1px 5px !important;
    }

    .product-single-gallery .psg-thumb-track {
        gap: 7px !important;
    }

    .product-single-gallery .product-thumb {
        width: 50px !important;
        height: 50px !important;
        flex-basis: 50px !important;
        border-width: 1px !important;
        border-radius: 10px !important;
        transform: none !important;
    }

    .product-single-summary {
        gap: 11px !important;
    }

    .product-summary-top {
        padding-right: 82px !important;
        gap: 5px !important;
    }

    .product-corner-actions {
        top: 0 !important;
        right: 0 !important;
        gap: 5px !important;
    }

    .product-corner-btn {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        font-size: 0.78rem !important;
        box-shadow: none !important;
    }

    .product-corner-btn svg {
        width: 17px !important;
        height: 17px !important;
    }

    .product-summary-platform {
        padding: 3px 8px !important;
        font-size: 0.68rem !important;
        gap: 5px !important;
    }

    .product-single-summary h1 {
        font-size: clamp(1.08rem, 5vw, 1.34rem) !important;
        line-height: 1.16 !important;
        letter-spacing: -0.01em !important;
    }

    .product-summary-mini {
        gap: 6px !important;
        font-size: 0.7rem !important;
        line-height: 1.35 !important;
    }

    .product-price-box {
        padding: 12px !important;
        border-radius: 14px !important;
        gap: 5px !important;
    }

    .product-price-main {
        font-size: clamp(1.55rem, 8vw, 2.05rem) !important;
        line-height: 1 !important;
    }

    .product-price-sub,
    .product-price-note {
        font-size: 0.68rem !important;
    }

    .product-payment-toggle,
    .payment-options-btn,
    #btn-show-payments {
        min-height: 42px !important;
        padding: 9px 0 !important;
        margin-top: 2px !important;
        gap: 7px !important;
        font-size: 0.84rem !important;
        line-height: 1.2 !important;
    }

    .product-payment-toggle i,
    .payment-options-btn i,
    #btn-show-payments i {
        font-size: 1.04rem !important;
    }

    .product-buy-box {
        gap: 8px !important;
    }

    .product-buy-primary,
    .product-buy-secondary,
    .product-whatsapp-btn {
        min-height: 46px !important;
        padding: 0 13px !important;
        border-radius: 10px !important;
        font-size: 0.88rem !important;
        gap: 8px !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .product-buy-secondary i,
    .product-whatsapp-btn i {
        font-size: 0.94rem !important;
    }

    .product-seal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    .product-seal-card {
        min-height: 82px !important;
        padding: 12px 8px 10px !important;
        border-radius: 12px !important;
    }

    .product-seal-icon {
        margin-bottom: 4px !important;
        font-size: 1.08rem !important;
    }

    .product-seal-line,
    .product-seal-line--strong {
        font-size: 0.62rem !important;
        line-height: 1.3 !important;
        letter-spacing: 0.01em !important;
    }

    .product-shipping-form {
        grid-template-columns: 1fr 64px !important;
        gap: 7px !important;
    }

    .product-shipping-form input,
    .product-shipping-form button {
        min-height: 42px !important;
        font-size: 0.82rem !important;
        border-radius: 10px !important;
    }

    .product-detail-tabs {
        gap: 6px !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 4px !important;
    }

    .product-tab-btn {
        min-height: 38px !important;
        padding: 0 12px !important;
        font-size: 0.76rem !important;
        white-space: nowrap !important;
        border-radius: 999px !important;
    }

    .product-detail-card,
    .product-review-summary-card,
    .product-copy-block {
        padding: 14px !important;
        border-radius: 14px !important;
        box-shadow: none !important;
    }
}

@media (max-width: 420px) {
    .product-single-hero {
        padding: 10px !important;
    }

    .product-single-gallery .product-main-visual {
        height: clamp(196px, 66vw, 270px) !important;
    }

    .product-single-gallery .product-main-visual img,
    .product-main-visual img {
        width: 80% !important;
        height: 80% !important;
    }

    .product-summary-top {
        padding-right: 76px !important;
    }

    .product-corner-btn {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
    }

    .product-price-main {
        font-size: clamp(1.42rem, 8vw, 1.82rem) !important;
    }

    .product-buy-primary,
    .product-buy-secondary,
    .product-whatsapp-btn {
        min-height: 44px !important;
        font-size: 0.84rem !important;
    }
}

/* ============================================================
   PRODUTO LIGHTBOX RESPONSIVO — alinhamento mobile
   Ajuste aditivo: centraliza o modal da galeria sem alterar o desktop.
   ============================================================ */
@media (max-width: 760px) {
    #psg-lightbox {
        align-items: center !important;
        justify-content: center !important;
        padding: 16px !important;
        box-sizing: border-box !important;
    }

    #psg-lightbox .lb-backdrop {
        backdrop-filter: none !important;
    }

    #psg-lightbox .lb-box {
        width: 100% !important;
        max-width: calc(100vw - 32px) !important;
        max-height: calc(100dvh - 32px) !important;
        display: grid !important;
        place-items: center !important;
        gap: 0 !important;
        padding: 38px 0 32px !important;
        box-sizing: border-box !important;
        animation: none !important;
    }

    #psg-lightbox .lb-img {
        width: auto !important;
        max-width: min(76vw, 380px) !important;
        max-height: calc(100dvh - 132px) !important;
        object-fit: contain !important;
        border-radius: 14px !important;
        background: #fff !important;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32) !important;
        margin: 0 auto !important;
    }

    #psg-lightbox .lb-close {
        top: 4px !important;
        right: 4px !important;
        width: 34px !important;
        height: 34px !important;
        transform: none !important;
    }

    #psg-lightbox .lb-close:hover {
        transform: none !important;
    }

    #psg-lightbox .lb-nav {
        position: absolute !important;
        top: 50% !important;
        width: 38px !important;
        height: 38px !important;
        transform: translateY(-50%) !important;
        z-index: 2 !important;
    }

    #psg-lightbox .lb-prev {
        left: 2px !important;
    }

    #psg-lightbox .lb-next {
        right: 2px !important;
    }

    #psg-lightbox .lb-nav:hover {
        transform: translateY(-50%) !important;
    }

    #psg-lightbox .lb-counter {
        position: static !important;
        transform: none !important;
        margin-top: 12px !important;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.72) !important;
    }
}

@media (max-width: 420px) {
    #psg-lightbox {
        padding: 12px !important;
    }

    #psg-lightbox .lb-box {
        max-width: calc(100vw - 24px) !important;
        max-height: calc(100dvh - 24px) !important;
        padding: 36px 0 30px !important;
    }

    #psg-lightbox .lb-img {
        max-width: min(74vw, 320px) !important;
        max-height: calc(100dvh - 126px) !important;
        border-radius: 13px !important;
    }

    #psg-lightbox .lb-nav {
        width: 36px !important;
        height: 36px !important;
    }
}

/* ============================================================
   PRODUTO MOBILE — trava a galeria dentro da tela quando há muitas imagens
   Correção aditiva: mantém a galeria abaixo da imagem e evita estouro horizontal.
   ============================================================ */
@media (max-width: 760px) {
    .product-single-page {
        overflow-x: hidden !important;
    }

    .product-single-page .product-single-wrap,
    .product-single-page .product-single-hero,
    .product-single-page .product-single-gallery {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .product-single-page .product-single-hero,
    .product-single-page .product-single-gallery {
        overflow-x: clip !important;
    }

    .product-single-page .product-single-gallery .psg-thumb-wrap {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        padding: 0 !important;
    }

    .product-single-page .product-single-gallery .psg-thumb-viewport {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        flex: 1 1 auto !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        overscroll-behavior-x: contain !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-x !important;
        box-sizing: border-box !important;
    }

    .product-single-page .product-single-gallery .psg-thumb-track {
        display: inline-flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        width: max-content !important;
        max-width: none !important;
        min-width: 0 !important;
        transform: none !important;
        will-change: auto !important;
    }

    .product-single-page .product-single-gallery .product-thumb {
        flex: 0 0 50px !important;
        width: 50px !important;
        height: 50px !important;
        max-width: 50px !important;
        max-height: 50px !important;
    }
}

@supports not (overflow: clip) {
    @media (max-width: 760px) {
        .product-single-page .product-single-hero,
        .product-single-page .product-single-gallery {
            overflow-x: hidden !important;
        }
    }
}

@media (max-width: 420px) {
    .product-single-page .product-single-gallery .psg-thumb-viewport {
        height: 52px !important;
        padding-bottom: 4px !important;
    }

    .product-single-page .product-single-gallery .product-thumb {
        flex-basis: 46px !important;
        width: 46px !important;
        height: 46px !important;
        max-width: 46px !important;
        max-height: 46px !important;
    }
}


/* ============================================================
   V27 — Botões da página do produto com cor dinâmica
   Ajuste aditivo: não remove regras anteriores; apenas força os
   botões restantes a usarem a palheta de botões configurada.
   ============================================================ */
:root {
    --store-button-bg-dynamic: var(--header-button-bg-color, var(--button-primary, var(--accent)));
    --store-button-text-dynamic: var(--header-button-text-color, var(--button-primary-text, #ffffff));
    --store-button-icon-dynamic: var(--header-button-icon-color, var(--store-button-text-dynamic));
}

.product-single-page .product-buy-primary,
.product-single-page .product-shipping-submit,
.product-single-page .product-review-submit,
.product-single-page .product-buy-btn {
    background: var(--store-button-bg-dynamic) !important;
    border-color: var(--store-button-bg-dynamic) !important;
    color: var(--store-button-text-dynamic) !important;
}

.product-single-page .product-buy-primary i,
.product-single-page .product-buy-primary svg,
.product-single-page .product-shipping-submit i,
.product-single-page .product-shipping-submit svg,
.product-single-page .product-review-submit i,
.product-single-page .product-review-submit svg,
.product-single-page .product-buy-btn i,
.product-single-page .product-buy-btn svg {
    color: var(--store-button-icon-dynamic) !important;
}

.product-single-page .product-buy-primary:hover,
.product-single-page .product-shipping-submit:hover,
.product-single-page .product-review-submit:hover,
.product-single-page .product-buy-btn:hover {
    background: color-mix(in srgb, var(--store-button-bg-dynamic) 86%, #000000) !important;
    border-color: color-mix(in srgb, var(--store-button-bg-dynamic) 86%, #000000) !important;
    color: var(--store-button-text-dynamic) !important;
}

.product-single-page .product-buy-secondary,
.product-single-page .product-review-login,
.product-single-page .product-corner-btn,
.product-single-page .psg-arrow,
.product-single-page .lb-nav,
.product-single-page .lb-close {
    border-color: color-mix(in srgb, var(--store-button-bg-dynamic) 26%, transparent) !important;
    background: color-mix(in srgb, var(--store-button-bg-dynamic) 8%, #ffffff) !important;
    color: var(--store-button-bg-dynamic) !important;
}

.product-single-page .product-buy-secondary i,
.product-single-page .product-buy-secondary svg,
.product-single-page .product-review-login i,
.product-single-page .product-review-login svg,
.product-single-page .product-corner-btn i,
.product-single-page .product-corner-btn svg,
.product-single-page .psg-arrow i,
.product-single-page .psg-arrow svg,
.product-single-page .lb-nav i,
.product-single-page .lb-nav svg,
.product-single-page .lb-close i,
.product-single-page .lb-close svg {
    color: var(--store-button-bg-dynamic) !important;
}

.product-single-page .product-buy-secondary:hover,
.product-single-page .product-review-login:hover,
.product-single-page .product-corner-btn:hover,
.product-single-page .product-corner-btn--favorite.is-favorite,
.product-single-page .psg-arrow:hover,
.product-single-page .lb-nav:hover,
.product-single-page .lb-close:hover {
    background: var(--store-button-bg-dynamic) !important;
    border-color: var(--store-button-bg-dynamic) !important;
    color: var(--store-button-text-dynamic) !important;
}

.product-single-page .product-buy-secondary:hover i,
.product-single-page .product-buy-secondary:hover svg,
.product-single-page .product-review-login:hover i,
.product-single-page .product-review-login:hover svg,
.product-single-page .product-corner-btn:hover i,
.product-single-page .product-corner-btn:hover svg,
.product-single-page .product-corner-btn--favorite.is-favorite i,
.product-single-page .product-corner-btn--favorite.is-favorite svg,
.product-single-page .psg-arrow:hover i,
.product-single-page .psg-arrow:hover svg,
.product-single-page .lb-nav:hover i,
.product-single-page .lb-nav:hover svg,
.product-single-page .lb-close:hover i,
.product-single-page .lb-close:hover svg {
    color: var(--store-button-icon-dynamic) !important;
}

.product-single-page .product-payment-toggle,
.product-single-page .payment-options-btn,
.product-single-page #btn-show-payments,
.product-single-page .cep-kabum-btn {
    color: var(--store-button-bg-dynamic) !important;
}

.product-single-page .product-payment-toggle i,
.product-single-page .payment-options-btn i,
.product-single-page #btn-show-payments i,
.product-single-page .cep-kabum-btn i {
    color: var(--store-button-bg-dynamic) !important;
}

.product-single-page .product-tab-buttons button.is-active {
    color: var(--store-button-bg-dynamic) !important;
    border-bottom-color: var(--store-button-bg-dynamic) !important;
    background: color-mix(in srgb, var(--store-button-bg-dynamic) 7%, transparent) !important;
}

.product-single-page .product-tab-buttons button.is-active i,
.product-single-page .product-tab-buttons button:hover i {
    color: var(--store-button-bg-dynamic) !important;
}

.support-chat-fab-icon,
.support-chat-fab-badge,
.support-chat-submit,
.support-chat-composer button {
    background: var(--store-button-bg-dynamic) !important;
    color: var(--store-button-text-dynamic) !important;
}

.support-chat-fab-icon i,
.support-chat-submit i,
.support-chat-composer button i {
    color: var(--store-button-icon-dynamic) !important;
}

.support-chat-submit:hover,
.support-chat-composer button:hover {
    background: color-mix(in srgb, var(--store-button-bg-dynamic) 86%, #000000) !important;
    color: var(--store-button-text-dynamic) !important;
}


/* v28 - Paginação da biblioteca e histórico de pedidos do perfil */
.profile-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}
.profile-page-link {
    min-width: 38px;
    height: 38px;
    padding: 0 13px;
    border: 1px solid var(--border-color, var(--border));
    border-radius: 999px;
    background: var(--bg-card);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-weight: 700;
    font-size: .86rem;
    text-decoration: none;
    transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.profile-page-link:hover,
.profile-page-link.active {
    background: var(--button-primary);
    color: var(--button-primary-text);
    border-color: var(--button-primary);
    transform: translateY(-1px);
}
.profile-page-link.prev,
.profile-page-link.next {
    min-width: 104px;
}
@media (max-width: 640px) {
    .profile-pagination {
        gap: 6px;
        margin-top: 14px;
    }
    .profile-page-link {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
        font-size: .8rem;
    }
    .profile-page-link.prev,
    .profile-page-link.next {
        min-width: auto;
    }
}

/* ============================================================
   v29 - Perfil: botões dinâmicos e formulário mais compacto
   ============================================================ */
body.profile-page .profile-panel .btn,
body.profile-page .profile-panel button.btn,
body.profile-page .profile-panel label.btn,
body.profile-page .profile-panel a.btn,
body.profile-page .profile-upload-actions .btn,
body.profile-page .profile-form-actions .btn,
body.profile-page .add-address-btn,
body.profile-page .profile-pagination a,
body.profile-page .profile-pagination span.current {
    background: var(--header-button-bg-color, var(--button-primary, var(--accent))) !important;
    border-color: color-mix(in srgb, var(--header-button-bg-color, var(--button-primary, var(--accent))) 65%, transparent) !important;
    color: var(--header-button-text-color, var(--button-primary-text, #ffffff)) !important;
    font-size: var(--header-button-font-size, 0.88rem) !important;
    font-weight: var(--header-button-font-weight, 700) !important;
    box-shadow: 0 8px 18px -14px color-mix(in srgb, var(--header-button-bg-color, var(--button-primary, var(--accent))) 80%, transparent) !important;
}
body.profile-page .profile-panel .btn i,
body.profile-page .profile-upload-actions .btn i,
body.profile-page .profile-form-actions .btn i,
body.profile-page .add-address-btn i,
body.profile-page .profile-pagination a i,
body.profile-page .profile-pagination span.current i {
    color: var(--header-button-icon-color, var(--header-button-text-color, var(--button-primary-text, #ffffff))) !important;
    font-size: var(--header-button-icon-size, 0.95rem) !important;
}
body.profile-page .profile-panel .btn:hover,
body.profile-page .profile-panel button.btn:hover,
body.profile-page .profile-panel label.btn:hover,
body.profile-page .profile-panel a.btn:hover,
body.profile-page .profile-upload-actions .btn:hover,
body.profile-page .profile-form-actions .btn:hover,
body.profile-page .add-address-btn:hover,
body.profile-page .profile-pagination a:hover {
    background: color-mix(in srgb, var(--header-button-bg-color, var(--button-primary, var(--accent))) 88%, #000000) !important;
    color: var(--header-button-text-color, var(--button-primary-text, #ffffff)) !important;
    border-color: color-mix(in srgb, var(--header-button-bg-color, var(--button-primary, var(--accent))) 78%, transparent) !important;
}
body.profile-page .profile-panel .profile-form-grid {
    gap: 12px 16px !important;
    margin-bottom: 12px !important;
}
body.profile-page .profile-panel .profile-field {
    margin-bottom: 12px !important;
}
body.profile-page .profile-panel .profile-field label {
    margin-bottom: 5px !important;
    line-height: 1.25 !important;
}
body.profile-page .profile-panel .profile-field input,
body.profile-page .profile-panel .profile-field select,
body.profile-page .profile-panel .profile-select {
    min-height: 38px !important;
    padding: 9px 12px !important;
}
body.profile-page .profile-panel .profile-field .field-ok-icon {
    top: 32px !important;
}
body.profile-page .profile-panel.profile-form-panel,
body.profile-page .profile-form-panel {
    padding: 18px !important;
}
body.profile-page .profile-form-panel .profile-panel-head {
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
}
body.profile-page .profile-upload-card {
    margin-top: 2px !important;
    gap: 12px !important;
}
body.profile-page .profile-form-actions {
    margin-top: 4px !important;
}
body.profile-page .profile-map-card {
    margin: 8px 0 12px !important;
}
@media (max-width: 768px) {
    body.profile-page .profile-panel.profile-form-panel,
    body.profile-page .profile-form-panel {
        padding: 14px !important;
    }
    body.profile-page .profile-panel .profile-form-grid {
        gap: 10px !important;
        margin-bottom: 10px !important;
    }
    body.profile-page .profile-panel .profile-field {
        margin-bottom: 10px !important;
    }
    body.profile-page .profile-panel .profile-field input,
    body.profile-page .profile-panel .profile-field select,
    body.profile-page .profile-panel .profile-select {
        min-height: 36px !important;
        padding: 8px 11px !important;
    }
    body.profile-page .profile-panel .profile-field .field-ok-icon {
        top: 31px !important;
    }
}


/* ============================================================
   AJUSTE V37 — Loja mais larga no desktop
   Mantém o responsivo original e apenas amplia a área útil da loja.
   ============================================================ */
:root {
    --container: var(--store-container-width, 1360px);
}

@media (min-width: 1025px) {
    .container,
    .header-promo-bar,
    .header-topbar,
    .floating-nav-inner {
        width: min(calc(100% - 28px), var(--container)) !important;
        max-width: var(--container) !important;
    }

    .topbar-center.search-wrapper {
        max-width: min(620px, calc(var(--container) * 0.44)) !important;
    }
}

@media (min-width: 1401px) {
    .home-product-grid,
    .product-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (min-width: 1501px) {
    .product-single-hero {
        grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    }

    .cart-layout,
    .checkout-layout,
    .profile-layout {
        grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    }
}

/* ============================================================
   v40 - Perfil: card "Adicionar endereço" deve permanecer branco
   Mantém o botão de adicionar endereço como card neutro, sem herdar
   a cor dinâmica dos botões principais do sistema.
   ============================================================ */
body.profile-page .add-address-btn {
    background: #ffffff !important;
    border: 2px dashed #cbd5e1 !important;
    color: #64748b !important;
    box-shadow: none !important;
}
body.profile-page .add-address-btn:hover {
    background: #ffffff !important;
    border-color: #94a3b8 !important;
    color: #475569 !important;
    box-shadow: none !important;
}
body.profile-page .add-address-btn span {
    color: #64748b !important;
}
body.profile-page .add-address-btn:hover span {
    color: #475569 !important;
}
body.profile-page .add-address-btn .add-address-circle {
    background: #1e293b !important;
    color: #ffffff !important;
}
body.profile-page .add-address-btn:hover .add-address-circle {
    background: #0f172a !important;
}
body.profile-page .add-address-btn .add-address-circle i {
    color: #ffffff !important;
}

/* Ajuste v39: ícones do atendimento/rastreio seguindo a cor dinâmica da loja. */
.site-header .header-utility-row-icon,
.header-utility-row-icon {
    color: var(--accent, #ff6a1c) !important;
    background: rgba(var(--accent-rgb, 255,106,28), 0.10) !important;
    border-color: rgba(var(--accent-rgb, 255,106,28), 0.28) !important;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.site-header .header-utility-row-icon i,
.header-utility-row-icon i {
    color: var(--accent, #ff6a1c) !important;
    transition: color 180ms ease;
}
.site-header .header-utility-row:hover .header-utility-row-icon,
.header-utility-row:hover .header-utility-row-icon {
    color: #ffffff !important;
    background: var(--accent, #ff6a1c) !important;
    border-color: var(--accent, #ff6a1c) !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(var(--accent-rgb, 255,106,28), 0.18);
}
.site-header .header-utility-row:hover .header-utility-row-icon i,
.header-utility-row:hover .header-utility-row-icon i {
    color: #ffffff !important;
}
.site-header .header-utility-row-copy a:hover,
.site-header .header-utility-row-copy a:focus-visible,
.header-utility-row-copy a:hover,
.header-utility-row-copy a:focus-visible {
    color: var(--accent, #ff6a1c) !important;
}
.site-header .header-track-field button,
.header-track-field button {
    color: #ffffff !important;
    background: var(--accent, #ff6a1c) !important;
    border-left-color: var(--accent, #ff6a1c) !important;
}
.site-header .header-track-field button:hover,
.site-header .header-track-field button:focus-visible,
.header-track-field button:hover,
.header-track-field button:focus-visible {
    color: #ffffff !important;
    background: color-mix(in srgb, var(--accent, #ff6a1c) 88%, #000000) !important;
}

/* ============================================================
   AJUSTE RESPONSIVO DO SLIDER — não altera desktop
   ============================================================ */
@media (max-width: 920px) {
    .hero-slider-section {
        width: 100%;
        overflow: hidden;
    }

    .hero-slider {
        width: 100%;
        border-radius: 0;
    }

    .hero-slide {
        width: 100%;
        min-height: auto;
        padding: 20px 18px 54px;
        gap: 16px;
        align-items: center;
        justify-content: center;
    }

    .hero-slide:not(.visual-only) {
        flex-direction: column;
        text-align: center;
    }

    .hero-slide-copy {
        width: 100%;
        max-width: 640px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-slide-copy h1 {
        font-size: clamp(1.45rem, 5vw, 2.15rem);
        line-height: 1.08;
        margin-bottom: 8px;
    }

    .hero-slide-copy p {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.9rem;
        line-height: 1.45;
    }

    .hero-slide-meta,
    .hero-slide-actions {
        justify-content: center;
    }

    .hero-slide-visual {
        width: min(100%, 420px) !important;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-slide-frame,
    .hero-slide-frame img {
        width: 100%;
    }

    .hero-slide-frame img {
        height: auto;
        max-height: 320px;
        object-fit: contain;
    }

    .hero-slide.visual-only {
        min-height: auto;
        padding: 0 0 42px;
        background: transparent;
    }

    .hero-slide.visual-only .hero-slide-visual,
    .hero-slide.visual-only .hero-slide-media-link,
    .hero-slide.visual-only .hero-slide-frame {
        width: 100% !important;
        max-width: none;
        height: auto;
        margin: 0;
        border-radius: 0;
    }

    .hero-slide.visual-only .hero-slide-frame img {
        display: block;
        width: 100%;
        height: clamp(150px, 32vw, 260px);
        min-height: 0;
        max-height: none;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center;
    }

    .hero-slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
        z-index: 10;
    }

    .hero-slider-arrow.prev { left: 10px; }
    .hero-slider-arrow.next { right: 10px; }

    .hero-slider-dots {
        bottom: 14px;
        z-index: 11;
    }
}

@media (max-width: 560px) {
    .hero-slide {
        padding: 18px 14px 48px;
        gap: 12px;
    }

    .hero-slide-copy h1 {
        font-size: clamp(1.25rem, 7vw, 1.65rem);
    }

    .hero-slide-copy p {
        font-size: 0.84rem;
        line-height: 1.38;
    }

    .hero-slide-eyebrow,
    .hero-slide-pill {
        max-width: 100%;
        justify-content: center;
        white-space: normal;
    }

    .hero-slide-visual {
        width: min(100%, 310px) !important;
    }

    .hero-slide-frame img {
        max-height: 240px;
    }

    .hero-slide-actions {
        width: 100%;
        gap: 8px;
    }

    .hero-slide-actions > * {
        flex: 1 1 100%;
        min-height: 40px;
        justify-content: center;
    }

    .hero-slide.visual-only {
        padding-bottom: 36px;
    }

    .hero-slide.visual-only .hero-slide-frame img {
        height: clamp(130px, 44vw, 190px);
        object-fit: cover;
    }

    .hero-slider-arrow {
        width: 28px;
        height: 28px;
    }

    .hero-slider-arrow.prev { left: 8px; }
    .hero-slider-arrow.next { right: 8px; }

    .hero-slider-dots {
        bottom: 11px;
    }
}

@media (max-width: 400px) {
    .hero-slide-copy h1 {
        font-size: 1.18rem;
    }

    .hero-slide.visual-only .hero-slide-frame img {
        height: clamp(118px, 42vw, 165px);
    }
}

/* Ajuste: imagem menor nos cards de produto no responsivo */
@media (max-width: 480px) {
    .product-card .product-media img {
        max-width: 78%;
        max-height: 78%;
    }
}

/* ============================================================
   AJUSTE FINAL — slider maior no responsivo
   Mantém desktop intacto e só amplia a altura do banner no mobile.
   ============================================================ */
@media (max-width: 760px) {
    .hero-slider-section {
        width: 100%;
        overflow: hidden;
    }

    .hero-slider {
        width: 100%;
        min-height: clamp(250px, 74vw, 380px) !important;
    }

    .hero-slide {
        min-height: clamp(250px, 74vw, 380px) !important;
        padding: 20px 14px 54px !important;
        gap: 16px !important;
    }

    .hero-slide.visual-only {
        min-height: clamp(250px, 74vw, 380px) !important;
        padding: 0 0 48px !important;
    }

    .hero-slide.visual-only .hero-slide-visual,
    .hero-slide.visual-only .hero-slide-media-link,
    .hero-slide.visual-only .hero-slide-frame {
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        min-height: clamp(250px, 74vw, 380px) !important;
        margin: 0 !important;
    }

    .hero-slide.visual-only .hero-slide-frame img {
        width: 100% !important;
        height: clamp(250px, 74vw, 380px) !important;
        min-height: clamp(250px, 74vw, 380px) !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
    }

    .hero-slide:not(.visual-only) .hero-slide-visual {
        width: min(100%, 360px) !important;
    }

    .hero-slide:not(.visual-only) .hero-slide-frame img {
        max-height: 280px !important;
    }

    .hero-slider-arrow {
        width: 34px !important;
        height: 34px !important;
    }

    .hero-slider-dots {
        bottom: 16px !important;
    }
}

@media (max-width: 560px) {
    .hero-slider,
    .hero-slide,
    .hero-slide.visual-only,
    .hero-slide.visual-only .hero-slide-visual,
    .hero-slide.visual-only .hero-slide-media-link,
    .hero-slide.visual-only .hero-slide-frame {
        min-height: clamp(235px, 82vw, 340px) !important;
    }

    .hero-slide.visual-only .hero-slide-frame img {
        height: clamp(235px, 82vw, 340px) !important;
        min-height: clamp(235px, 82vw, 340px) !important;
    }

    .hero-slide:not(.visual-only) .hero-slide-visual {
        width: min(100%, 330px) !important;
    }
}

@media (max-width: 400px) {
    .hero-slider,
    .hero-slide,
    .hero-slide.visual-only,
    .hero-slide.visual-only .hero-slide-visual,
    .hero-slide.visual-only .hero-slide-media-link,
    .hero-slide.visual-only .hero-slide-frame {
        min-height: clamp(220px, 86vw, 310px) !important;
    }

    .hero-slide.visual-only .hero-slide-frame img {
        height: clamp(220px, 86vw, 310px) !important;
        min-height: clamp(220px, 86vw, 310px) !important;
    }
}

/* ============================================================
   Ajuste: alinhamento vertical da imagem nos cards de produto
   Mantém a imagem menor, mas desce levemente para não ficar colada
   aos badges/ícones superiores do card.
   ============================================================ */
.product-card .product-media img {
    object-position: center center !important;
    transform: translateY(12px);
}

@media (max-width: 760px) {
    .product-card .product-media img {
        transform: translateY(9px);
    }
}


/* Ajuste solicitado: diminuir o slider no responsivo sem alterar desktop */
@media (max-width: 760px) {
    .hero-slide.visual-only .hero-slide-frame img {
        min-height: 140px;
        max-height: 185px;
    }
}
@media (max-width: 480px) {
    .hero-slide.visual-only .hero-slide-frame img {
        min-height: 126px;
        max-height: 160px;
    }
}
