/* products/static/css/styles.css - VERSÃO LIMPA */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

:root {
    --main-color: #FF7C03;
    --main-light-color: #FF8B1F;
    --ds-frost-border: rgba(214, 235, 253, 0.19);
    --ds-frost-ring: rgba(176, 199, 217, 0.145);
    --ds-dark-surface: rgba(255, 255, 255, 0.055);
    --ds-dark-surface-strong: rgba(15, 23, 42, 0.82);
}

/* Scrollbar personalizada */
html {
    scrollbar-color: var(--brand-primary, var(--main-color)) transparent;
}

html::-webkit-scrollbar {
    width: 0.5rem;
    background: transparent;
}

html::-webkit-scrollbar-track {
    background: color-mix(in srgb, var(--brand-primary, var(--main-color)) 12%, transparent);
}

html::-webkit-scrollbar-thumb {
    border-radius: 2rem;
    background: var(--brand-primary, var(--main-color));
    border: 2px solid transparent;
}

html::-webkit-scrollbar-thumb:hover {
    background: color-mix(in srgb, var(--brand-primary, var(--main-color)) 82%, black 18%);
}

body[data-store-theme="dark"] {
    scrollbar-color: var(--brand-primary, var(--main-color)) rgba(255, 255, 255, 0.04);
}

body[data-store-theme="dark"]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
}

/* Apenas estilos essenciais que não conflitam com Tailwind */
.btn-custom {
    background: var(--main-color);
    color: white;
    transition: all 0.3s ease;
}

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

/* Design system storefront refinements */
.ds-frost-panel {
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

body[data-store-theme="dark"] .ds-frost-panel {
    border-color: var(--ds-frost-border);
    background: var(--ds-dark-surface);
    box-shadow: 0 0 0 1px var(--ds-frost-ring);
}

.ds-pill {
    border-radius: 9999px;
}

.ds-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 640ms ease, transform 640ms ease;
}

.ds-reveal.ds-reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.ds-page-shell {
    position: relative;
    isolation: isolate;
}

.ds-page-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 24rem;
    pointer-events: none;
    background:
        radial-gradient(circle at 16% 18%, color-mix(in srgb, var(--brand-primary, var(--main-color)) 16%, transparent), transparent 36%),
        radial-gradient(circle at 84% 12%, color-mix(in srgb, var(--brand-secondary, var(--main-light-color)) 13%, transparent), transparent 34%);
    opacity: 0.58;
    z-index: -1;
}

body[data-store-theme="dark"] .ds-page-shell::before {
    opacity: 0.36;
}

.ds-card {
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
}

body[data-store-theme="dark"] .ds-card {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.68);
    box-shadow: 0 24px 70px rgba(2, 6, 23, 0.36);
}

.ds-action-primary,
.ds-action-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.ds-action-primary {
    background: var(--brand-primary, var(--main-color));
    color: white;
    box-shadow: 0 14px 34px color-mix(in srgb, var(--brand-primary, var(--main-color)) 24%, transparent);
}

.ds-action-primary:hover {
    background: var(--brand-secondary, var(--main-light-color));
    transform: translateY(-1px);
}

.ds-action-secondary {
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.74);
    color: #334155;
}

.ds-action-secondary:hover {
    border-color: var(--brand-primary, var(--main-color));
    color: var(--brand-primary, var(--main-color));
    transform: translateY(-1px);
}

body[data-store-theme="dark"] .ds-action-secondary {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    color: #e2e8f0;
}

body[data-store-theme="dark"] .ds-action-secondary:hover {
    border-color: color-mix(in srgb, var(--brand-primary, var(--main-color)) 60%, white 0%);
    color: var(--brand-primary, var(--main-color));
}

.ds-input-surface {
    border-radius: 1rem;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

body[data-store-theme="dark"] .ds-card label {
    color: #e2e8f0;
}

body[data-store-theme="dark"] .ds-card .ds-input-surface {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    color: #f8fafc;
}

body[data-store-theme="dark"] .ds-card .ds-input-surface::placeholder {
    color: #94a3b8;
}

.ds-input-surface:focus,
.ds-input-surface:focus-within {
    border-color: var(--brand-primary, var(--main-color)) !important;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary, var(--main-color)) 18%, transparent);
}

.ds-premium-hero {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background:
        radial-gradient(circle at 12% 12%, color-mix(in srgb, var(--brand-primary, var(--main-color)) 20%, transparent), transparent 34%),
        radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--brand-secondary, var(--main-light-color)) 16%, transparent), transparent 32%),
        rgba(255, 255, 255, 0.82);
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.1);
}

body[data-store-theme="dark"] .ds-premium-hero {
    border-color: rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 12% 12%, color-mix(in srgb, var(--brand-primary, var(--main-color)) 28%, transparent), transparent 34%),
        radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--brand-secondary, var(--main-light-color)) 20%, transparent), transparent 32%),
        linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.88));
    box-shadow: 0 34px 110px rgba(2, 6, 23, 0.48);
}

.ds-premium-hero::after {
    content: "";
    position: absolute;
    inset: auto 8% -35% 8%;
    height: 18rem;
    border-radius: 9999px;
    background: color-mix(in srgb, var(--brand-primary, var(--main-color)) 12%, transparent);
    filter: blur(46px);
    pointer-events: none;
}

.ds-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(255, 255, 255, 0.72);
    padding: 0.5rem 0.875rem;
    color: var(--brand-primary, var(--main-color));
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body[data-store-theme="dark"] .ds-kicker {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
}

.ds-section-title {
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.02;
}

.ds-total-panel {
    border-radius: 1.5rem;
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary, var(--main-color)) 14%, white), rgba(255, 255, 255, 0.92));
    border: 1px solid color-mix(in srgb, var(--brand-primary, var(--main-color)) 20%, transparent);
}

body[data-store-theme="dark"] .ds-total-panel {
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary, var(--main-color)) 18%, rgba(15, 23, 42, 0.95)), rgba(15, 23, 42, 0.9));
    border-color: color-mix(in srgb, var(--brand-primary, var(--main-color)) 26%, transparent);
}

.ds-step-label {
    display: inline-flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: var(--brand-primary, var(--main-color));
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
}

.ds-auth-grid {
    display: grid;
    min-height: calc(100vh - 6rem);
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .ds-auth-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    }
}

/* Storefront editorial system: solid surfaces, precise lines, less glass. */
.store-editorial-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

body[data-store-theme="dark"] .store-editorial-hero {
    background:
        linear-gradient(180deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.94) 62%, rgba(15, 23, 42, 0.98)),
        #020617;
}

body[data-store-theme="light"] .store-editorial-hero {
    background:
        linear-gradient(180deg, #ffffff, #f8fafc 68%, #eef2f7),
        #ffffff;
}

.store-editorial-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(148, 163, 184, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
    z-index: -2;
}

.store-editorial-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -18rem;
    width: min(76rem, 92vw);
    height: 30rem;
    transform: translateX(-50%);
    border-radius: 9999px;
    background: radial-gradient(ellipse at center, color-mix(in srgb, var(--brand-primary, var(--main-color)) 16%, transparent), transparent 68%);
    filter: blur(12px);
    pointer-events: none;
    z-index: -1;
}

.store-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid currentColor;
    padding-bottom: 0.35rem;
    color: var(--brand-primary, var(--main-color));
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.store-display-title {
    letter-spacing: 0;
    line-height: 0.96;
    font-weight: 950;
}

.store-price-lockup {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    border-left: 3px solid var(--brand-primary, var(--main-color));
    padding: 0.25rem 0 0.25rem 1rem;
    color: var(--brand-primary, var(--main-color));
    font-weight: 900;
}

.store-button-primary,
.store-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.75rem;
    min-height: 3rem;
    font-weight: 800;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.store-button-primary {
    background: var(--brand-primary, var(--main-color));
    color: white;
}

.store-button-primary:hover {
    background: var(--brand-secondary, var(--main-light-color));
    transform: translateY(-1px);
}

.store-button-secondary {
    border: 1px solid rgba(148, 163, 184, 0.34);
}

body[data-store-theme="dark"] .store-button-secondary {
    color: #e2e8f0;
    background: #020617;
}

body[data-store-theme="light"] .store-button-secondary {
    color: #0f172a;
    background: #ffffff;
}

.store-button-secondary:hover {
    border-color: var(--brand-primary, var(--main-color));
    color: var(--brand-primary, var(--main-color));
    transform: translateY(-1px);
}

.store-product-stage {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        #080b12;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 32px 90px rgba(2, 6, 23, 0.32);
}

body[data-store-theme="light"] .store-product-stage {
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 24px 70px rgba(15, 23, 42, 0.12);
}

.store-product-stage::before {
    content: "";
    position: absolute;
    inset: auto 10% 8% 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--brand-primary, var(--main-color)) 55%, transparent), transparent);
}

.store-offer-band {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 1.5rem;
}

body[data-store-theme="dark"] .store-offer-band {
    background: #05070d;
}

body[data-store-theme="light"] .store-offer-band {
    background: #ffffff;
}

.store-product-card {
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

body[data-store-theme="dark"] .store-product-card {
    border-color: rgba(255, 255, 255, 0.1);
    background: #070a12;
}

body[data-store-theme="dark"] #shop .store-product-card,
body[data-store-theme="dark"] #special-offers .store-product-card {
    border-color: rgba(255, 255, 255, 0.1) !important;
    background: #070a12 !important;
    box-shadow: none !important;
}

body[data-store-theme="light"] #shop .store-product-card,
body[data-store-theme="light"] #special-offers .store-product-card {
    background: #ffffff !important;
    box-shadow: none !important;
}

.store-product-card:hover {
    border-color: color-mix(in srgb, var(--brand-primary, var(--main-color)) 38%, rgba(148, 163, 184, 0.28));
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

body[data-store-theme="dark"] .store-product-card:hover {
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.store-catalog-section {
    position: relative;
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.store-newsletter-panel {
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: #ffffff;
}

body[data-store-theme="dark"] .store-newsletter-panel {
    border-color: rgba(255, 255, 255, 0.1);
    background: #05070d;
}

/* MultiVendas storefront v2: editorial commerce, no generic floating cards. */
.mv-editorial-page {
    --mv-line: rgba(148, 163, 184, 0.22);
    --mv-muted: #64748b;
}

body[data-store-theme="dark"] .mv-editorial-page {
    --mv-line: rgba(214, 235, 253, 0.16);
    --mv-muted: #94a3b8;
}

.mv-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-bottom: 1px solid var(--mv-line);
}

body[data-store-theme="dark"] .mv-hero {
    background: #000;
}

body[data-store-theme="light"] .mv-hero {
    background: #fff;
}

.mv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to right, transparent 0, transparent calc(50% - 1px), var(--mv-line) 50%, transparent calc(50% + 1px)),
        linear-gradient(to bottom, transparent 0, transparent 72%, color-mix(in srgb, var(--brand-primary, var(--main-color)) 16%, transparent));
    opacity: 0.55;
    z-index: -1;
}

.mv-hero-kicker,
.mv-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mv-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.mv-hero-title {
    max-width: 15ch;
    font-weight: 850;
    letter-spacing: -0.026em;
    line-height: 0.96;
}

.mv-hero-description {
    max-width: 38rem;
    color: var(--mv-muted);
}

.mv-hero-price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    color: var(--brand-primary, var(--main-color));
    font-weight: 700;
}

.mv-hero-action,
.mv-hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    border-radius: 9999px;
    padding-inline: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mv-hero-action {
    background: var(--brand-primary, var(--main-color));
    color: #fff;
}

body[data-store-theme="light"] .mv-hero-action {
    color: #fff;
}

body[data-store-theme="dark"] .mv-hero-action {
    color: #fff;
    background: var(--brand-primary, var(--main-color));
}

.mv-newsletter .mv-hero-action {
    background: var(--brand-primary, var(--main-color)) !important;
    color: #fff !important;
}

.mv-newsletter .mv-hero-action:hover {
    background: var(--brand-secondary, var(--main-light-color)) !important;
}

.mv-hero-link {
    border: 1px solid var(--mv-line);
    color: inherit;
}

.mv-hero-action:hover,
.mv-hero-link:hover {
    transform: translateY(-1px);
}

.mv-product-specimen {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 28rem;
}

.mv-product-specimen::before,
.mv-product-specimen::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mv-line), transparent);
}

.mv-product-specimen::before {
    top: 16%;
}

.mv-product-specimen::after {
    bottom: 16%;
}

.mv-product-specimen img {
    position: relative;
    z-index: 1;
    border-radius: 1.4rem;
    filter: drop-shadow(0 32px 38px rgba(0, 0, 0, 0.28));
}

.mv-section {
    border-top: 1px solid var(--mv-line);
}

.mv-section-heading {
    font-weight: 850;
    letter-spacing: -0.024em;
    line-height: 1.02;
}

.mv-rail-shell {
    border-top: 1px solid var(--mv-line);
    border-bottom: 1px solid var(--mv-line);
    padding-block: 1.25rem;
}

.mv-product-tile {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid var(--mv-line) !important;
    border-radius: 1.15rem;
    padding: 0.55rem;
    box-shadow: none !important;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

body[data-store-theme="dark"] .mv-product-tile {
    background: rgba(255, 255, 255, 0.02) !important;
}

body[data-store-theme="light"] .mv-product-tile {
    background: #fff !important;
}

.mv-product-tile:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--brand-primary, var(--main-color)) 55%, var(--mv-line)) !important;
    box-shadow: none !important;
}

.mv-product-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 0.8rem;
    background: #f4f6f8;
}

body[data-store-theme="dark"] .mv-product-media {
    background: #070707;
}

.mv-product-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: var(--mv-line);
}

.mv-product-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

.mv-product-meta {
    border-top: 0;
    padding: 0.85rem 0.25rem 0.25rem;
}

.mv-price {
    color: var(--brand-primary, var(--main-color));
    font-weight: 700;
}

.mv-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--mv-line);
    border-radius: 9999px;
    padding: 0.35rem 0.75rem;
}

.mv-newsletter {
    border-top: 1px solid var(--mv-line);
    border-bottom: 1px solid var(--mv-line);
}

.mv-public-page {
    --mv-line: rgba(148, 163, 184, 0.22);
    --mv-muted: #64748b;
}

body[data-store-theme="dark"] .mv-public-page {
    --mv-line: rgba(214, 235, 253, 0.16);
    --mv-muted: #94a3b8;
}

@media (max-width: 767px) {
    button.fixed.bottom-8.right-8:has(.bx-chevron-up) {
        display: none !important;
    }
}

.mv-public-page .ds-premium-hero {
    border-radius: 0;
    border-inline: 0;
    border-top: 1px solid var(--mv-line);
    border-bottom: 1px solid var(--mv-line);
    box-shadow: none;
}

body[data-store-theme="light"] .mv-public-page .ds-premium-hero {
    background: #fff;
}

body[data-store-theme="dark"] .mv-public-page .ds-premium-hero {
    background: #000;
}

.mv-public-page .ds-premium-hero::after {
    display: none;
}

.mv-public-page .ds-kicker {
    border: 0;
    border-bottom: 1px solid currentColor;
    border-radius: 0;
    background: transparent;
    padding-inline: 0;
    padding-bottom: 0.35rem;
    letter-spacing: 0.08em;
}

.mv-public-page .ds-section-title {
    letter-spacing: -0.024em;
    line-height: 1.02;
}

.mv-public-page .ds-card {
    border-color: var(--mv-line);
    box-shadow: none;
    backdrop-filter: none;
}

body[data-store-theme="light"] .mv-public-page .ds-card {
    background: #fff;
}

body[data-store-theme="dark"] .mv-public-page .ds-card {
    background: rgba(255, 255, 255, 0.02);
}

.mv-public-page .ds-card:hover {
    border-color: color-mix(in srgb, var(--brand-primary, var(--main-color)) 45%, var(--mv-line));
}

.mv-offer-shortcuts {
    border-top: 1px solid var(--mv-line);
    border-bottom: 1px solid var(--mv-line);
}

.mv-offer-hotlinks {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.2rem 0 0.45rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.mv-offer-hotlinks::-webkit-scrollbar {
    display: none;
}

.mv-offer-shortcut-card {
    display: flex;
    width: 5.35rem;
    flex: 0 0 5.35rem;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    scroll-snap-align: start;
    text-align: center;
    transition: transform 160ms ease, color 160ms ease;
}

@media (min-width: 768px) {
    .mv-offer-hotlinks {
        justify-content: space-around;
        gap: 1.2rem;
    }

    .mv-offer-shortcut-card {
        width: 6.3rem;
        flex-basis: 6.3rem;
    }
}

.mv-offer-shortcut-card:hover {
    transform: translateY(-2px);
    color: var(--brand-primary, var(--main-color));
}

.mv-offer-shortcut-media {
    position: relative;
    display: grid;
    width: 3.95rem;
    height: 3.95rem;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--mv-line);
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand-primary, var(--main-color)) 8%, #f8fafc);
}

@media (min-width: 768px) {
    .mv-offer-shortcut-media {
        width: 5.6rem;
        height: 5.6rem;
    }
}

body[data-store-theme="dark"] .mv-offer-shortcut-media {
    background: color-mix(in srgb, var(--brand-primary, var(--main-color)) 14%, #050505);
}

.mv-offer-shortcut-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 220ms ease;
}

.mv-offer-shortcut-card:hover .mv-offer-shortcut-media img {
    transform: scale(1.06);
}

.mv-offer-shortcut-fallback {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--brand-primary, var(--main-color));
    font-size: 2.75rem;
}

.mv-offer-shortcut-label {
    display: -webkit-box;
    min-height: 2rem;
    max-width: 100%;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.15;
}

@media (min-width: 768px) {
    .mv-offer-shortcut-label {
        font-size: 0.82rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ds-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.storefront-pro-hero {
    isolation: isolate;
    overflow: hidden;
}

.storefront-pro-hero::before {
    content: "";
    position: absolute;
    inset: -25% -10% auto -10%;
    height: 85%;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 24%, color-mix(in srgb, var(--brand-primary, var(--main-color)) 30%, transparent), transparent 34%),
        radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--brand-secondary, var(--main-light-color)) 22%, transparent), transparent 36%);
    opacity: 0.72;
    filter: blur(18px);
    z-index: -1;
}

body[data-store-theme="dark"] .storefront-pro-hero {
    background:
        linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.94)),
        #020617;
}

body[data-store-theme="light"] .storefront-pro-hero {
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--brand-primary, var(--main-color)) 9%, white), #ffffff 48%, color-mix(in srgb, var(--brand-secondary, var(--main-light-color)) 8%, white));
}

.storefront-hero-media {
    animation: storefront-float 6s ease-in-out infinite;
}

@keyframes storefront-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
    .storefront-hero-media {
        animation: none;
    }
}



.bx-telemedicina {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url('/static/icons/health.svg') no-repeat center;
  background-size: contain;
}

/* ============================================
   CATEGORY BAR — mv-cat-*
   ============================================ */

.mv-cat-bar {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
}

body[data-store-theme="dark"] .mv-cat-bar {
    background: rgba(2, 6, 23, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.07);
}

/* O scroll fica no viewport (o .container ja da o padding lateral, igual ao
   conteudo da pagina). Assim os chips rolam desde o primeiro, sem cortar. */
.mv-cat-bar__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.mv-cat-bar__viewport::-webkit-scrollbar {
    display: none;
}

.mv-cat-bar__track {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0;
    /* Largura natural dos chips: quando cabe, margin auto centraliza;
       quando estoura, a margem vira 0 e o viewport rola do inicio ao fim,
       sem deixar os primeiros itens inacessiveis. */
    width: max-content;
    margin-inline: auto;
}

/* Chip base */
.mv-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4375rem 0.875rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: #374151;
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    line-height: 1;
}

.mv-cat-chip i {
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.mv-cat-chip:hover {
    border-color: var(--brand-primary, var(--main-color));
    color: var(--brand-primary, var(--main-color));
    background: color-mix(in srgb, var(--brand-primary, var(--main-color)) 6%, transparent);
}

/* Active chip */
.mv-cat-chip--active {
    background: var(--brand-primary, var(--main-color));
    border-color: var(--brand-primary, var(--main-color));
    color: #ffffff;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--brand-primary, var(--main-color)) 35%, transparent);
}

.mv-cat-chip--active:hover {
    background: var(--brand-primary, var(--main-color));
    color: #ffffff;
    filter: brightness(1.06);
}

/* Dark mode */
body[data-store-theme="dark"] .mv-cat-chip {
    border-color: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

body[data-store-theme="dark"] .mv-cat-chip:hover {
    border-color: var(--brand-primary, var(--main-color));
    color: var(--brand-primary, var(--main-color));
    background: color-mix(in srgb, var(--brand-primary, var(--main-color)) 10%, transparent);
}

body[data-store-theme="dark"] .mv-cat-chip--active {
    color: #ffffff;
    filter: none;
}

body[data-store-theme="dark"] .mv-cat-chip--active:hover {
    filter: brightness(1.08);
}

