/* ===================================================================
   OneView Store — Public CSS
   =================================================================== */
:root {
    --ovs-primary:       var(--adm-plugin-primary, #4F46E5);
    --ovs-primary-rgb:   var(--adm-plugin-primary-rgb, 79, 70, 229);
    --ovs-primary-light: var(--adm-plugin-primary-light, #6366F1);
    --ovs-primary-dark:  var(--adm-plugin-primary-dark, #3730A3);
    --ovs-white:   #FFFFFF;
    --ovs-gray-50: #F9FAFB;
    --ovs-gray-100:#F3F4F6;
    --ovs-gray-200:#E5E7EB;
    --ovs-gray-300:#D1D5DB;
    --ovs-gray-400:#9CA3AF;
    --ovs-gray-500:#6B7280;
    --ovs-gray-600:#4B5563;
    --ovs-gray-700:#374151;
    --ovs-gray-800:#1F2937;
    --ovs-gray-900:#111827;
    --ovs-green: #10B981;
    --ovs-red:   #EF4444;
    --ovs-radius:     12px;
    --ovs-radius-sm:  8px;
    --ovs-radius-lg:  16px;
    --ovs-shadow:    0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
    --ovs-shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    --ovs-shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
    --ovs-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ── Global ─────────────────────────────────────────────────── */
.ovs-catalog, .ovs-single-product, .ovs-cart-page, .ovs-checkout, .ovs-order-status {
    font-family: var(--ovs-font);
    color: var(--ovs-gray-800);
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* ── Buttons (Public) ───────────────────────────────────────── */
.ovs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.25rem;
    border-radius: 20px;
    font-family: inherit;
    font-size: .9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}
.ovs-btn--primary { background: var(--ovs-primary); color: #fff; }
.ovs-btn--primary:hover { background: var(--ovs-primary-dark); color: #fff; }
.ovs-btn--outline { background: transparent; border: 1px solid var(--ovs-gray-200); color: var(--ovs-gray-600); }
.ovs-btn--outline:hover { border-color: var(--ovs-gray-300); color: var(--ovs-gray-800); }
.ovs-btn--sm { padding: .5rem 1rem; font-size: .8125rem; }
.ovs-btn--lg { padding: .875rem 1.5rem; }
.ovs-btn--full { width: 100%; }
.ovs-btn:disabled { opacity: .5; cursor: not-allowed; }

/* ── Theme Override (.ov-page__content a) ────────────────────── */
/* O tema OneView aplica underline e cor primária em links dentro
   de .ov-page__content — sobrescrever para elementos da loja. */
.ov-page__content .ovs-btn,
.ov-page__content .ovs-btn:hover { text-decoration: none; }
.ov-page__content .ovs-btn--primary,
.ov-page__content .ovs-btn--primary:hover { color: #fff; }
.ov-page__content .ovs-btn--outline { color: var(--ovs-gray-600); }
.ov-page__content .ovs-btn--outline:hover { color: var(--ovs-gray-800); }
.ov-page__content .ovs-product-card-public__name a { text-decoration: none; color: inherit; }
.ov-page__content .ovs-product-card-public__name a:hover { color: var(--ovs-primary); }
.ov-page__content a.ovs-product-card-public__image { text-decoration: none; }
.ov-page__content .ovs-pagination__item { text-decoration: none; }
.ov-page__content .ovs-floating-cart,
.ov-page__content .ovs-floating-cart:hover { color: #fff; text-decoration: none; }
.ov-page__content .ovs-download-item { text-decoration: none; }

/* Neutraliza regras globais do tema em cards da loja */
.ov-page__content .ovs-product-card-public__image img {
    margin: 0 !important;
    border-radius: 0 !important;
    display: block;
}
.ov-page__content .ovs-product-card-public__name {
    margin: 0 !important;
    font-size: 1rem;
    line-height: 1.3;
}
.ov-page__content .ovs-product-card-public__desc {
    margin: 0 !important;
    font-size: .8125rem;
    line-height: 1.4;
}

/* ── Selectors Carousel (Marketplace Style) ─────────────────── */
.ovs-selectors-wrap {
    width: 100%;
    margin: 0 0 1.25rem;
}
.ovs-selectors-wrap .ovs-selectors {
    margin-bottom: 0;
    box-sizing: border-box;
}

/* Fora do container central: faixa horizontal alinhada ao topo */
.ov-page__content .ovs-selectors-wrap {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Largura igual ao ov-header: full-width sem limite interno */
.ov-page__content .ovs-selectors-wrap .ovs-selectors {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .ov-page__content .ovs-selectors-wrap {
        padding: 0 1rem;
    }
}

/* Forca largura identica ao header/menu no tema OneView */
body.wp-theme-oneview-universal .ov-page__container > .ov-page__content > .ovs-selectors-wrap {
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    width: 100vw !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    box-sizing: border-box !important;
}

body.wp-theme-oneview-universal .ov-page__container > .ov-page__content > .ovs-selectors-wrap > .ovs-selectors {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    body.wp-theme-oneview-universal .ov-page__container > .ov-page__content > .ovs-selectors-wrap {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

.ovs-selectors {
    margin-bottom: 1.25rem;
    border-radius: var(--ovs-radius-lg);
    padding: 1rem;
}
.ovs-selectors--glass {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--ovs-shadow);
}
.ov-page__content .ovs-selectors.ovs-selectors--glass {
    border-radius: 0;
    margin-top: 0;
}
.ovs-selectors--solid {
    background: var(--ovs-white);
    border: 1px solid var(--ovs-gray-200);
    box-shadow: var(--ovs-shadow);
}
.ovs-selectors--none {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
}

.ovs-selectors__header {
    margin-bottom: .875rem;
}
.ovs-selectors__title {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--ovs-gray-900);
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
.ov-page__content .ovs-selectors__title::before,
.ov-page__content .ovs-selectors__title::after {
    content: none !important;
    display: none !important;
}
.ovs-selectors__subtitle {
    margin: .25rem 0 0;
    font-size: .8125rem;
    color: var(--ovs-gray-500);
    line-height: 1.35;
    text-decoration: none !important;
    border-bottom: none !important;
}

.ov-page__content .ovs-selector-item__label,
.ov-page__content .ovs-selector-item__label:hover {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.ovs-selectors__carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.ovs-selectors__track {
    display: flex;
    align-items: stretch;
    gap: .625rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: .125rem .125rem .375rem;
    flex: 1;
}
.ovs-selectors__track::-webkit-scrollbar { display: none; }

.ovs-selector-item {
    flex: 0 0 auto;
    width: 136px;
    min-height: 84px;
    border-radius: 14px;
    border: 1px solid var(--ovs-gray-200);
    background: var(--ovs-white);
    color: var(--ovs-gray-700);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .625rem .5rem;
    text-align: center;
    transition: all .2s ease;
}
.ovs-selector-item:hover {
    border-color: rgba(var(--ovs-primary-rgb), .35);
    box-shadow: var(--ovs-shadow-md);
    transform: translateY(-1px);
}
.ovs-selector-item.is-active {
    border-color: rgba(var(--ovs-primary-rgb), .5);
    background: rgba(var(--ovs-primary-rgb), .08);
    color: var(--ovs-primary);
}

.ovs-selector-item__media {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--ovs-primary-rgb), .08);
    flex-shrink: 0;
}
.ovs-selector-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
    border-radius: 0 !important;
}
.ovs-selector-item__media--icon i {
    font-size: 1.25rem;
    color: var(--ovs-primary);
}

.ovs-selector-item__label {
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.25;
    color: currentColor;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ovs-selector-item__desc {
    font-size: .625rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--ovs-gray-500);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ovs-selector-item.is-active .ovs-selector-item__desc {
    color: rgba(var(--ovs-primary-rgb), .86);
}

.ovs-selectors__nav {
    width: 34px;
    height: 34px;
    border-radius: 9999px;
    border: 1px solid var(--ovs-gray-200);
    background: var(--ovs-white);
    color: var(--ovs-gray-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    flex-shrink: 0;
}
.ovs-selectors__nav:hover {
    border-color: rgba(var(--ovs-primary-rgb), .4);
    color: var(--ovs-primary);
}
.ovs-selectors__nav:disabled {
    opacity: .35;
    cursor: not-allowed;
}

/* ── Catalog Grid ───────────────────────────────────────────── */
.ovs-catalog__grid {
    display: grid;
    gap: var(--ovs-grid-gap, 1.25rem);
}
.ovs-gap--compact { --ovs-grid-gap: 0.75rem; }
.ovs-gap--normal  { --ovs-grid-gap: 1.25rem; }
.ovs-gap--wide    { --ovs-grid-gap: 2rem; }
.ovs-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ovs-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ovs-grid--4 { grid-template-columns: repeat(4, 1fr); }

.ovs-catalog__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 1rem;
    color: var(--ovs-gray-400);
}
.ovs-catalog__empty i { font-size: 3rem; }

/* ── Product Card (Public) ──────────────────────────────────── */
.ovs-product-card-public {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--ovs-radius);
    box-shadow: var(--ovs-shadow);
    overflow: hidden;
    transition: all .2s ease;
}
/* Hover variants */
.ovs-hover--lift .ovs-product-card-public:hover { box-shadow: var(--ovs-shadow-md); transform: translateY(-4px); }
.ovs-hover--scale .ovs-product-card-public:hover { box-shadow: var(--ovs-shadow-md); transform: scale(1.03); }
.ovs-hover--shadow .ovs-product-card-public:hover { box-shadow: var(--ovs-shadow-lg); transform: none; }
.ovs-hover--none .ovs-product-card-public:hover { box-shadow: var(--ovs-shadow); transform: none; }
/* Default hover (fallback when no class applied) */
.ovs-product-card-public:hover { box-shadow: var(--ovs-shadow-md); transform: translateY(-2px); }
a.ovs-product-card-public__image { display: block; text-decoration: none; }
.ovs-product-card-public__name a { color: inherit; text-decoration: none; }
.ovs-product-card-public__name a:hover { color: var(--ovs-primary); }
.ovs-product-card-public__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--ovs-gray-100);
    line-height: 0;
}
.ovs-product-card-public__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: none;
}
.ovs-product-card-public:hover .ovs-product-card-public__image img {
    transform: none;
}
.ovs-product-card-public__badge {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 600;
    color: #fff;
}
.ovs-product-card-public__badge--sale { background: var(--ovs-green); }
.ovs-product-card-public__badge--out  { background: var(--ovs-gray-500); }

.ovs-product-card-public__body {
    display: flex;
    flex-direction: column;
    gap: .4375rem;
    padding: .625rem .875rem .875rem;
    flex: 1;
}
.ovs-product-card-public__name {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ovs-gray-800);
    margin: 0;
}
.ovs-product-card-public__desc {
    font-size: .8125rem;
    color: var(--ovs-gray-500);
    margin: 0;
    line-height: 1.4;
}
.ovs-product-card-public__price {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .125rem;
    margin-bottom: .125rem;
}

/* ── Card Style Variants ────────────────────────────────────── */
/* Flat: sem sombra */
.ovs-card-style--flat {
    box-shadow: none;
    border: 1px solid var(--ovs-gray-100);
}
.ovs-card-style--flat:hover {
    box-shadow: none;
    border-color: var(--ovs-gray-200);
}
/* Bordered: borda visível */
.ovs-card-style--bordered {
    box-shadow: none;
    border: 1px solid var(--ovs-gray-200);
}
.ovs-card-style--bordered:hover {
    box-shadow: var(--ovs-shadow);
    border-color: var(--ovs-gray-300);
}

/* ── Card Radius Variants ───────────────────────────────────── */
.ovs-card-radius--none { border-radius: 0; }
.ovs-card-radius--none .ovs-product-card-public__badge { border-radius: 4px; }
.ovs-card-radius--normal { border-radius: var(--ovs-radius); }
.ovs-card-radius--rounded { border-radius: 20px; }
.ovs-card-radius--rounded .ovs-product-card-public__badge { border-radius: 12px; }

/* ── Image Ratio Variants ───────────────────────────────────── */
.ovs-ratio--1_1  { aspect-ratio: 1 / 1; }
.ovs-ratio--4_3  { aspect-ratio: 4 / 3; }
.ovs-ratio--16_9 { aspect-ratio: 16 / 9; }

/* ── Card Size Variants ─────────────────────────────────────── */
.ovs-card-size--large .ovs-product-card-public__body {
    padding: .625rem .875rem .875rem;
    gap: .4375rem;
}
.ovs-card-size--large .ovs-product-card-public__name {
    font-size: 1rem;
}
.ovs-card-size--large .ovs-product-card-public__desc {
    font-size: .8125rem;
}
.ovs-card-size--large .ovs-product-card-public__price .ovs-price,
.ovs-card-size--large .ovs-product-card-public__price .ovs-price--sale {
    font-size: 1.125rem;
}

.ovs-card-size--medium .ovs-product-card-public__body {
    padding: .5rem .75rem .75rem;
    gap: .375rem;
}
.ovs-card-size--medium .ovs-product-card-public__name {
    font-size: .9375rem;
}
.ovs-card-size--medium .ovs-product-card-public__desc {
    font-size: .75rem;
}
.ovs-card-size--medium .ovs-product-card-public__price .ovs-price,
.ovs-card-size--medium .ovs-product-card-public__price .ovs-price--sale {
    font-size: 1rem;
}
.ovs-card-size--medium .ovs-product-card-public__price .ovs-price--old {
    font-size: .75rem;
}

.ovs-card-size--small .ovs-product-card-public__body {
    padding: .4375rem .625rem .625rem;
    gap: .3125rem;
}
.ovs-card-size--small .ovs-product-card-public__name {
    font-size: .875rem;
}
.ovs-card-size--small .ovs-product-card-public__desc {
    font-size: .6875rem;
    line-height: 1.3;
}
.ovs-card-size--small .ovs-product-card-public__price .ovs-price,
.ovs-card-size--small .ovs-product-card-public__price .ovs-price--sale {
    font-size: .9375rem;
}
.ovs-card-size--small .ovs-product-card-public__price .ovs-price--old {
    font-size: .6875rem;
}
.ovs-card-size--small .ovs-btn {
    padding: .5rem .625rem;
    font-size: .75rem;
    border-radius: 14px;
    gap: .25rem;
}
.ovs-card-size--small .ovs-btn i {
    font-size: .875rem;
}

/* ── Prices ──────────────────────────────────────────────────── */
.ovs-price { font-size: 1.125rem; font-weight: 700; color: var(--ovs-gray-900); }
.ovs-price--old { text-decoration: line-through; color: var(--ovs-gray-400); font-size: .875rem; }
.ovs-price--sale { color: var(--ovs-green); font-weight: 700; font-size: 1.125rem; }
.ovs-price--lg { font-size: 1.75rem; }

/* ── Card Preset: Oferta (Marketplace) ──────────────────────── */
/* O preset Oferta controla APENAS o conteúdo interno do card:
   imagem 1:1, badge pill, nome 2-line clamp, layout de preço split,
   botão quiet. Estilo (shadow/flat/bordered), arredondamento e
   tamanho são controlados pelas classes card_style, card_radius
   e card_size independentemente. */
.ovs-product-card-public.ovs-card-preset--offer {
    overflow: hidden;
}
.ovs-card-preset--offer .ovs-product-card-public__image {
    border-radius: 0;
    background: #fff;
    aspect-ratio: 1/1;
}
.ovs-card-preset--offer .ovs-product-card-public__badge--sale {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    border-radius: 9999px;
    font-size: .625rem;
    letter-spacing: .02em;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    background: var(--ovs-offer-badge-bg, #2968C8);
    color: var(--ovs-offer-badge-color, #fff);
    border: 1px solid rgba(255, 255, 255, .24);
    box-shadow: 0 1px 2px rgba(0,0,0,.14);
    padding: .23rem .5rem .23rem .28rem;
    max-width: calc(100% - 16px);
}
.ovs-product-card-public__badge-icon {
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    flex-shrink: 0;
}
.ovs-product-card-public__badge-icon i {
    font-size: .58rem;
    line-height: 1;
}
.ovs-product-card-public__badge-text {
    display: inline-block;
    transform: translateY(-.4px);
    text-align: center;
    white-space: nowrap;
}
.ovs-product-card-public__badge--offer-no-icon {
    padding: .23rem .5rem;
}

/* Variantes de estilo do selo */
.ovs-product-card-public__badge--offer-style-solid {
    background: var(--ovs-offer-badge-bg, #2968C8);
    color: var(--ovs-offer-badge-color, #fff);
    border-color: rgba(255,255,255,.24);
}
.ovs-product-card-public__badge--offer-style-soft {
    background: color-mix(in srgb, var(--ovs-offer-badge-bg, #2968C8) 18%, #ffffff);
    color: var(--ovs-offer-badge-bg, #2968C8);
    border-color: color-mix(in srgb, var(--ovs-offer-badge-bg, #2968C8) 28%, #ffffff);
    box-shadow: none;
}
.ovs-product-card-public__badge--offer-style-outline {
    background: rgba(255,255,255,.92);
    color: var(--ovs-offer-badge-bg, #2968C8);
    border-color: var(--ovs-offer-badge-bg, #2968C8);
    box-shadow: none;
}
.ovs-product-card-public__badge--offer-style-glass {
    background: color-mix(in srgb, var(--ovs-offer-badge-bg, #2968C8) 72%, transparent);
    color: var(--ovs-offer-badge-color, #fff);
    border-color: rgba(255,255,255,.36);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.ovs-product-card-public__badge--offer-style-gradient {
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--ovs-offer-badge-bg, #2968C8) 82%, #ffffff) 0%,
        var(--ovs-offer-badge-bg, #2968C8) 55%,
        color-mix(in srgb, var(--ovs-offer-badge-bg, #2968C8) 76%, #000000) 100%);
    color: var(--ovs-offer-badge-color, #fff);
    border-color: rgba(255,255,255,.22);
}
.ovs-product-card-public__badge--offer-style-dark {
    background: #111827;
    color: #f9fafb;
    border-color: #374151;
    box-shadow: 0 2px 6px rgba(0,0,0,.28);
}
.ovs-product-card-public__badge--offer-style-neon {
    background: #0f172a;
    color: #e0f2fe;
    border-color: color-mix(in srgb, var(--ovs-offer-badge-bg, #2968C8) 70%, #ffffff);
    box-shadow:
        0 0 0 1px color-mix(in srgb, var(--ovs-offer-badge-bg, #2968C8) 36%, transparent),
        0 0 8px color-mix(in srgb, var(--ovs-offer-badge-bg, #2968C8) 45%, transparent);
}

/* Contraste do ícone por estilo */
.ovs-product-card-public__badge--offer-style-soft .ovs-product-card-public__badge-icon,
.ovs-product-card-public__badge--offer-style-outline .ovs-product-card-public__badge-icon {
    background: color-mix(in srgb, var(--ovs-offer-badge-bg, #2968C8) 16%, #ffffff);
}

/* Posição do selo */
.ovs-product-card-public__badge--offer-pos-top_left { top: 10px; left: 10px; right: auto; bottom: auto; }
.ovs-product-card-public__badge--offer-pos-top_right { top: 10px; right: 10px; left: auto; bottom: auto; }
.ovs-product-card-public__badge--offer-pos-bottom_left { bottom: 10px; left: 10px; top: auto; right: auto; }
.ovs-product-card-public__badge--offer-pos-bottom_right { bottom: 10px; right: 10px; top: auto; left: auto; }

/* Faixa diagonal estilo profissional */
.ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tl,
.ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tr {
    top: 10px !important;
    left: 0;
    right: auto;
    bottom: auto;
    min-width: 182px;
    width: 182px;
    max-width: none;
    justify-content: center;
    border-radius: 0 !important;
    padding: .28rem .62rem;
    transform-origin: center;
    z-index: 2;
}
.ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tl {
    left: -66px !important;
    transform: rotate(-38deg) !important;
}
.ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tr {
    left: auto;
    right: -20px !important;
    transform: rotate(38deg) !important;
}

.ovs-product-card-public__badge--sale.ovs-product-card-public__badge--offer-pos-diagonal_tl,
.ovs-product-card-public__badge--sale.ovs-product-card-public__badge--offer-pos-diagonal_tr {
    border-radius: 0 !important;
}
.ovs-product-card-public__badge--offer-pos-diagonal_tl .ovs-product-card-public__badge-text,
.ovs-product-card-public__badge--offer-pos-diagonal_tr .ovs-product-card-public__badge-text {
    text-align: center !important;
}

/* Override dedicado do FRONT real: selo dentro da imagem do card */
.ovs-product-card-public.ovs-card-preset--offer .ovs-product-card-public__image > .ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tl,
.ovs-product-card-public.ovs-card-preset--offer .ovs-product-card-public__image > .ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tr {
    top: 6px !important;
    width: 176px !important;
    min-width: 176px !important;
    border-radius: 0 !important;
    padding: .26rem .56rem !important;
}
.ovs-product-card-public.ovs-card-preset--offer .ovs-product-card-public__image > .ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tl {
    left: -62px !important;
    transform: rotate(-37deg) !important;
}
.ovs-product-card-public.ovs-card-preset--offer .ovs-product-card-public__image > .ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tr {
    right: -8px !important;
    transform: rotate(37deg) !important;
}

/* Alinhamento do conteúdo do selo */
.ovs-product-card-public__badge--offer-align-left {
    justify-content: flex-start;
    text-align: left;
}
.ovs-product-card-public__badge--offer-align-center {
    justify-content: center;
    text-align: center;
}
.ovs-product-card-public__badge--offer-align-right {
    justify-content: flex-end;
    text-align: right;
}

.ovs-product-card-public__badge--offer-align-left .ovs-product-card-public__badge-text,
.ovs-product-card-public__badge--offer-align-center .ovs-product-card-public__badge-text,
.ovs-product-card-public__badge--offer-align-right .ovs-product-card-public__badge-text {
    text-align: inherit;
}
.ovs-card-preset--offer .ovs-product-card-public__name {
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ovs-card-preset--offer .ovs-offer-price {
    display: flex;
    flex-direction: column;
    gap: .18rem;
}
.ovs-card-preset--offer .ovs-offer-price__old {
    font-size: .74rem;
    color: #9ca3af;
    text-decoration: line-through;
}
.ovs-card-preset--offer .ovs-offer-price__current-wrap {
    display: inline-flex;
    align-items: flex-start;
    gap: .14rem;
    line-height: 1;
}
.ovs-card-preset--offer .ovs-offer-price__currency {
    margin-top: .36rem;
    font-size: .8rem;
    color: #111827;
    font-weight: 500;
}
.ovs-card-preset--offer .ovs-offer-price__whole {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}
.ovs-card-preset--offer .ovs-offer-price__cents {
    margin-top: .22rem;
    font-size: .7rem;
    font-weight: 700;
    color: #111827;
}
.ovs-card-preset--offer .ovs-offer-price__discount {
    margin-left: .38rem;
    margin-top: .3rem;
    background: #ecfdf3;
    color: #15803d;
    border-radius: 9999px;
    border: 1px solid #bbf7d0;
    font-size: .66rem;
    font-weight: 700;
    padding: .16rem .42rem;
}
.ovs-btn--offer-quiet {
    background: #eaf3ff;
    color: #2563eb;
    border: 1px solid #cfe3ff;
}
.ovs-btn--offer-quiet:hover {
    background: #deecff;
    color: #1d4ed8;
    border-color: #b9d6ff;
}
.ovs-card-preset--offer .ovs-btn {
    border-radius: 8px;
}

/* ── Pagination ──────────────────────────────────────────────── */
.ovs-pagination {
    display: flex;
    justify-content: center;
    gap: .375rem;
    margin-top: 2rem;
}
.ovs-pagination__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px; height: 40px;
    border-radius: var(--ovs-radius-sm);
    font-size: .875rem;
    font-weight: 500;
    color: var(--ovs-gray-500);
    text-decoration: none;
    border: 1px solid var(--ovs-gray-200);
    transition: all .2s ease;
}
.ovs-pagination__item:hover { border-color: var(--ovs-primary); color: var(--ovs-primary); }
.ovs-pagination__item.is-active {
    background: var(--ovs-primary); border-color: var(--ovs-primary); color: #fff;
}

/* ── Single Product ──────────────────────────────────────────── */
.ovs-single-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
.ovs-single-product__topbar {
    grid-column: 1 / -1;
    margin-bottom: -.5rem;
}
.ovs-single-product__back-btn {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
}
.ovs-single-product__back-btn i {
    font-size: 1rem;
}
.ovs-single-product__description {
    grid-column: 1 / -1;
    padding-top: 2rem;
    border-top: 1px solid var(--ovs-gray-200);
}
.ovs-single-product__main-image {
    border-radius: var(--ovs-radius-lg);
    overflow: hidden;
    background: transparent;
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.22), 0 6px 14px rgba(17, 24, 39, 0.18);
}
.ovs-single-product__main-image img {
    width: 100%;
    display: block;
    margin: 0 !important;
    border-radius: 0 !important;
}
.ovs-single-product__thumbs {
    display: flex;
    gap: .5rem;
    margin-top: .75rem;
}
.ovs-thumb {
    width: 64px; height: 64px;
    border-radius: var(--ovs-radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0; background: none;
    box-shadow: var(--ovs-shadow);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.ovs-thumb.is-active, .ovs-thumb:hover {
    border-color: var(--ovs-primary);
    box-shadow: var(--ovs-shadow-md);
}
.ovs-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
    border-radius: 0 !important;
}

.ovs-single-product__name {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 .5rem;
    color: var(--ovs-gray-900);
}
.ovs-single-product__short-desc {
    font-size: .9375rem;
    color: var(--ovs-gray-500);
    line-height: 1.5;
    margin: 0 0 1rem;
}
.ovs-single-product__price {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
}
.ovs-single-product__sku { font-size: .8125rem; color: var(--ovs-gray-400); margin-top: 1rem; }
.ovs-single-product__stock-alert {
    display: flex;
    align-items: center;
    gap: .375rem;
    font-size: .8125rem;
    color: #D97706;
    margin-top: .75rem;
}
.ovs-single-product__content { line-height: 1.7; color: var(--ovs-gray-700); }
.ovs-single-product__content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 .75rem;
}

/* Variations */
.ovs-single-product__variations { margin-bottom: 1.5rem; }
.ovs-single-product__variations label { font-size: .875rem; font-weight: 500; color: var(--ovs-gray-600); margin-bottom: .5rem; display: block; }
.ovs-variation-options { display: flex; flex-wrap: wrap; gap: .5rem; }
.ovs-variation-btn {
    padding: .5rem 1rem;
    border: 1.5px solid var(--ovs-gray-200);
    border-radius: var(--ovs-radius-sm);
    font-family: inherit;
    font-size: .8125rem;
    font-weight: 500;
    background: #fff;
    cursor: pointer;
    transition: all .2s ease;
    color: var(--ovs-gray-700);
}
.ovs-variation-btn:hover { border-color: var(--ovs-primary); color: var(--ovs-primary); }
.ovs-variation-btn.is-active {
    border-color: var(--ovs-primary);
    background: rgba(var(--ovs-primary-rgb), .08);
    color: var(--ovs-primary);
    font-weight: 600;
}

/* Qty Control */
.ovs-single-product__actions { display: flex; gap: 1rem; align-items: center; }
.ovs-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--ovs-gray-200);
    border-radius: var(--ovs-radius-sm);
    overflow: hidden;
}
.ovs-qty-btn {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    font-size: 1.125rem;
    cursor: pointer;
    color: var(--ovs-gray-600);
    transition: background .2s ease;
}
.ovs-qty-btn:hover { background: var(--ovs-gray-100); }
.ovs-qty-control input {
    width: 48px;
    text-align: center;
    border: none;
    background: transparent;
    box-shadow: none;
    font-size: .9375rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--ovs-gray-800);
    appearance: textfield;
    -moz-appearance: textfield;
}
.ovs-qty-control input::-webkit-outer-spin-button,
.ovs-qty-control input::-webkit-inner-spin-button {
    -webkit-appearance: none; margin: 0;
}
.ovs-qty-control--sm .ovs-qty-btn { width: 32px; height: 32px; font-size: 1rem; }
.ovs-qty-control--sm input { width: 32px; font-size: .8125rem; }

/* ── Cart Page ───────────────────────────────────────────────── */
.ovs-cart-page__title, .ovs-checkout__title, .ovs-order-status__title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
}
.ovs-cart-page__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 1rem;
    color: var(--ovs-gray-400);
    text-align: center;
}
.ovs-cart-page__empty i { font-size: 3rem; }
.ovs-cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--ovs-gray-100);
}
.ovs-cart-item:last-child { border-bottom: none; }
.ovs-cart-item__image {
    width: 80px; height: 80px;
    border-radius: var(--ovs-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--ovs-gray-100);
}
.ovs-cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.ovs-cart-item__info { flex: 1; }
.ovs-cart-item__info h4 { margin: 0 0 .25rem; font-size: .9375rem; font-weight: 600; }
.ovs-cart-item__info small { color: var(--ovs-gray-400); font-size: .75rem; }
.ovs-cart-item__price { font-size: .875rem; color: var(--ovs-gray-500); margin-top: .25rem; }
.ovs-cart-item__total { font-size: 1rem; font-weight: 600; min-width: 100px; text-align: right; }
.ovs-cart-remove {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ovs-gray-200);
    border-radius: var(--ovs-radius-sm);
    background: none;
    color: var(--ovs-gray-400);
    cursor: pointer;
    transition: all .2s ease;
}
.ovs-cart-remove:hover { color: var(--ovs-red); border-color: rgba(239,68,68,.2); }

.ovs-cart-summary {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--ovs-gray-50);
    border-radius: var(--ovs-radius);
    border: 1px solid var(--ovs-gray-200);
}
.ovs-cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    font-size: .9375rem;
}
.ovs-cart-summary__actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-end;
}

/* ── Checkout ────────────────────────────────────────────────── */
.ovs-checkout__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}
.ovs-checkout-section {
    background: #fff;
    border-radius: var(--ovs-radius);
    border: 1px solid var(--ovs-gray-200);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}
.ovs-checkout-section h3 {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 1rem;
}
.ovs-checkout-section h3 i { color: var(--ovs-primary); }

/* Form fields reuse */
.ovs-checkout .ovs-field { margin-bottom: 1rem; }
.ovs-checkout .ovs-field:last-child { margin-bottom: 0; }
.ovs-checkout .ovs-field label {
    display: block;
    font-size: .8125rem;
    font-weight: 500;
    color: var(--ovs-gray-600);
    margin-bottom: .375rem;
}
.ovs-checkout .ovs-field input,
.ovs-checkout .ovs-field select {
    width: 100%;
    padding: .625rem .875rem;
    border: 1px solid var(--ovs-gray-200);
    border-radius: var(--ovs-radius-sm);
    font-size: .875rem;
    font-family: inherit;
    color: var(--ovs-gray-800);
    background: #fff;
    box-sizing: border-box;
    transition: border-color .2s;
}
.ovs-checkout .ovs-field input:focus,
.ovs-checkout .ovs-field select:focus {
    outline: none;
    border-color: var(--ovs-primary);
    box-shadow: 0 0 0 3px rgba(var(--ovs-primary-rgb), .1);
}
.ovs-checkout .ovs-field-row { display: flex; gap: 1rem; }
.ovs-checkout .ovs-field-row .ovs-field { flex: 1; }

/* Coupon Field */
.ovs-coupon-field { display: flex; gap: .75rem; }
.ovs-coupon-field input { flex: 1; padding: .625rem .875rem; border: 1px solid var(--ovs-gray-200); border-radius: var(--ovs-radius-sm); font-size: .875rem; font-family: inherit; }
.ovs-coupon-field input:focus { outline: none; border-color: var(--ovs-primary); }

/* Shipping options */
.ovs-shipping-options h4 { font-size: .9375rem; font-weight: 600; margin: 1rem 0 .75rem; }
.ovs-shipping-option {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border: 1.5px solid var(--ovs-gray-200);
    border-radius: var(--ovs-radius-sm);
    cursor: pointer;
    margin-bottom: .5rem;
    transition: border-color .2s;
}
.ovs-shipping-option:hover, .ovs-shipping-option.is-selected { border-color: var(--ovs-primary); }
.ovs-shipping-option input[type="radio"] { accent-color: var(--ovs-primary); }

/* Checkout Summary */
.ovs-checkout-summary {
    background: #fff;
    border-radius: var(--ovs-radius);
    border: 1px solid var(--ovs-gray-200);
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
}
.ovs-checkout-summary h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 1rem;
}
.ovs-checkout-summary__item {
    display: flex;
    justify-content: space-between;
    padding: .375rem 0;
    font-size: .8125rem;
    color: var(--ovs-gray-600);
}
.ovs-checkout-summary__totals { border-top: 1px solid var(--ovs-gray-200); margin-top: .75rem; padding-top: .75rem; }
.ovs-checkout-summary__row { display: flex; justify-content: space-between; padding: .375rem 0; font-size: .9375rem; }
.ovs-checkout-summary__row--total { font-size: 1.125rem; font-weight: 700; padding-top: .75rem; border-top: 1px solid var(--ovs-gray-200); margin-top: .5rem; }

/* Alerts */
.ovs-alert {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--ovs-radius);
    font-size: .875rem;
}
.ovs-alert i { font-size: 1.25rem; flex-shrink: 0; }
.ovs-alert--warning { background: rgba(245,158,11,.08); color: #D97706; border: 1px solid rgba(245,158,11,.2); }
.ovs-alert--success { background: rgba(16,185,129,.08); color: #059669; border: 1px solid rgba(16,185,129,.2); }
.ovs-text-green { color: #10B981 !important; }

/* ── PIX Modal ───────────────────────────────────────────────── */
.ovs-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.ovs-modal-overlay.is-open { display: flex; }
.ovs-modal {
    background: #fff;
    border-radius: var(--ovs-radius-lg);
    width: 100%;
    max-width: 440px;
    box-shadow: var(--ovs-shadow-lg);
    overflow: hidden;
}
.ovs-modal__header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--ovs-gray-200);
}
.ovs-modal__header h3 { margin: 0; font-size: 1.0625rem; font-weight: 600; }
.ovs-modal__body { padding: 1.5rem; }

.ovs-pix-body { text-align: center; }
.ovs-pix-qr { margin-bottom: 1rem; }
.ovs-pix-qr img { max-width: 220px; border-radius: var(--ovs-radius); }
.ovs-pix-instructions { font-size: .875rem; color: var(--ovs-gray-500); margin: 0 0 1rem; }
.ovs-pix-copy { display: flex; gap: .5rem; margin-bottom: 1rem; }
.ovs-pix-copy input {
    flex: 1; padding: .5rem .75rem; border: 1px solid var(--ovs-gray-200);
    border-radius: var(--ovs-radius-sm); font-size: .75rem; font-family: monospace;
    background: var(--ovs-gray-50); color: var(--ovs-gray-700);
}
.ovs-pix-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem;
    border-radius: var(--ovs-radius-sm);
    background: rgba(59,130,246,.08);
    color: #2563EB;
    font-size: .875rem;
    font-weight: 500;
}
.ovs-pix-status i { animation: ovsSpin 1s linear infinite; }
@keyframes ovsSpin { to { transform: rotate(360deg); } }
.ovs-pix-status.is-paid { background: rgba(16,185,129,.08); color: #059669; }
.ovs-pix-status.is-paid i { animation: none; }
.ovs-pix-total { font-size: .9375rem; margin-top: 1rem; color: var(--ovs-gray-600); }
.ovs-pix-total strong { font-size: 1.25rem; color: var(--ovs-gray-900); }

/* ── Order Status Page ───────────────────────────────────────── */
.ovs-order-lookup {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}
.ovs-order-lookup .ovs-field { flex: 1; margin: 0; }
.ovs-order-lookup .ovs-field label { display: block; font-size: .8125rem; font-weight: 500; color: var(--ovs-gray-600); margin-bottom: .375rem; }
.ovs-order-lookup .ovs-field input {
    width: 100%; padding: .625rem .875rem; border: 1px solid var(--ovs-gray-200);
    border-radius: var(--ovs-radius-sm); font-size: .875rem; font-family: inherit; box-sizing: border-box;
}

.ovs-order-detail-public {
    background: #fff;
    border-radius: var(--ovs-radius);
    border: 1px solid var(--ovs-gray-200);
    padding: 1.5rem;
}
.ovs-order-detail-public__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.ovs-order-detail-public__header h3 { margin: 0; font-size: 1.25rem; font-weight: 600; }
.ovs-order-detail-public__header small { color: var(--ovs-gray-400); font-size: .8125rem; }

/* Badge */
.ovs-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--badge-color, var(--ovs-gray-500));
    background: color-mix(in srgb, var(--badge-color, var(--ovs-gray-500)) 12%, transparent);
}
.ovs-badge--lg { padding: 5px 14px; font-size: .8125rem; }

/* Timeline */
.ovs-order-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 1.5rem;
    position: relative;
}
.ovs-order-timeline::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px; right: 18px;
    height: 3px;
    background: var(--ovs-gray-200);
    z-index: 0;
}
.ovs-timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    position: relative;
    z-index: 1;
}
.ovs-timeline-step__icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: var(--ovs-gray-200);
    color: var(--ovs-gray-400);
    transition: all .3s ease;
}
.ovs-timeline-step span { font-size: .75rem; color: var(--ovs-gray-400); font-weight: 500; }
.ovs-timeline-step.is-done .ovs-timeline-step__icon {
    background: var(--ovs-primary);
    color: #fff;
}
.ovs-timeline-step.is-done span { color: var(--ovs-primary); }
.ovs-timeline-step.is-current .ovs-timeline-step__icon {
    box-shadow: 0 0 0 4px rgba(var(--ovs-primary-rgb), .2);
}

.ovs-order-tracking {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    background: rgba(59,130,246,.06);
    border: 1px solid rgba(59,130,246,.15);
    border-radius: var(--ovs-radius-sm);
    font-size: .875rem;
    color: #2563EB;
    margin-bottom: 1.5rem;
}

/* Order Items */
.ovs-order-items-public { margin-bottom: 1.5rem; }
.ovs-order-items-public h4 { font-size: .9375rem; font-weight: 600; margin: 0 0 .75rem; }
.ovs-order-item-public {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 0;
    border-bottom: 1px solid var(--ovs-gray-100);
    font-size: .875rem;
}
.ovs-order-item-public:last-child { border-bottom: none; }
.ovs-order-item-public__name { flex: 1; }
.ovs-order-item-public__name small { color: var(--ovs-gray-400); }
.ovs-order-item-public__qty { color: var(--ovs-gray-400); min-width: 40px; text-align: center; }
.ovs-order-item-public__price { font-weight: 600; min-width: 100px; text-align: right; }

/* Order Totals */
.ovs-order-totals-public { border-top: 1px solid var(--ovs-gray-200); padding-top: .75rem; }
.ovs-order-totals-public__row { display: flex; justify-content: space-between; padding: .375rem 0; font-size: .9375rem; }
.ovs-order-totals-public__row--total { font-size: 1.125rem; font-weight: 700; border-top: 1px solid var(--ovs-gray-200); padding-top: .75rem; margin-top: .5rem; }

/* Order Downloads (Digital Products) */
.ovs-order-downloads {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ovs-gray-200);
}
.ovs-order-downloads h4 {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9375rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--ovs-primary, #4F46E5);
}
.ovs-order-downloads h4 i { font-size: 1.125rem; }
.ovs-download-list { display: flex; flex-direction: column; gap: .5rem; }
.ovs-download-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .875rem 1rem;
    background: rgba(var(--ovs-primary-rgb, 79,70,229), .04);
    border: 1px solid rgba(var(--ovs-primary-rgb, 79,70,229), .12);
    border-radius: var(--ovs-radius, 12px);
    text-decoration: none;
    color: inherit;
    transition: all .2s ease;
}
.ovs-download-item:hover {
    background: rgba(var(--ovs-primary-rgb, 79,70,229), .08);
    border-color: rgba(var(--ovs-primary-rgb, 79,70,229), .25);
    transform: translateY(-1px);
}
.ovs-download-item__icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(var(--ovs-primary-rgb, 79,70,229), .1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ovs-download-item__icon i {
    font-size: 1.25rem;
    color: var(--ovs-primary, #4F46E5);
}
.ovs-download-item__info { flex: 1; min-width: 0; }
.ovs-download-item__name {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--ovs-gray-800, #1f2937);
}
.ovs-download-item__file {
    display: block;
    font-size: .75rem;
    color: var(--ovs-gray-400, #9CA3AF);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ovs-download-item__arrow {
    font-size: 1.125rem;
    color: var(--ovs-primary, #4F46E5);
    flex-shrink: 0;
}

/* ===================================================================
   Floating Cart Button
   =================================================================== */
.ovs-floating-cart {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ovs-primary, #4F46E5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
    cursor: pointer;
}
.ovs-floating-cart:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(0,0,0,0.22), 0 3px 8px rgba(0,0,0,0.12);
    color: #fff;
}
.ovs-floating-cart:active {
    transform: scale(0.95);
}
.ovs-floating-cart i {
    font-size: 1.5rem;
}
.ovs-floating-cart__badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    background: #FF3B30;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 4px rgba(255,59,48,0.3);
    line-height: 1;
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Pulse animation when badge updates */
@keyframes ovs-cart-pulse {
    0% { transform: scale(1); }
    40% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.ovs-floating-cart--pulse {
    animation: ovs-cart-pulse 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

/* ===================================================================
   RESPONSIVE — Tablet (≤768px)
   =================================================================== */
@media (max-width: 768px) {
    /* ── Global containers ── */
    .ovs-catalog, .ovs-single-product, .ovs-cart-page, .ovs-checkout, .ovs-order-status {
        padding: 1rem .75rem;
    }

    /* ── Page Titles ── */
    .ovs-cart-page__title,
    .ovs-checkout__title,
    .ovs-order-status__title {
        font-size: 1.25rem;
        gap: .375rem;
        margin-bottom: 1.25rem;
    }
    .ovs-cart-page__title i,
    .ovs-checkout__title i,
    .ovs-order-status__title i {
        font-size: 1.25rem;
    }

    /* ── Catalog Grid ── */
    .ovs-grid--3, .ovs-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .ovs-gap--compact { --ovs-grid-gap: 0.5rem; }
    .ovs-gap--normal  { --ovs-grid-gap: 0.75rem; }
    .ovs-gap--wide    { --ovs-grid-gap: 1.25rem; }

    .ovs-selectors {
        margin-bottom: .875rem;
        padding: .75rem;
    }
    .ovs-selectors__title {
        font-size: .9375rem;
    }
    .ovs-selectors__subtitle {
        font-size: .75rem;
    }
    .ovs-selector-item {
        width: 108px;
        min-height: 76px;
        gap: .375rem;
        padding: .5rem .375rem;
    }
    .ovs-selector-item__media {
        width: 36px;
        height: 36px;
        border-radius: 9px;
    }
    .ovs-selector-item__media--icon i {
        font-size: 1rem;
    }
    .ovs-selector-item__label {
        font-size: .6875rem;
    }
    .ovs-selector-item__desc {
        font-size: .59375rem;
    }
    .ovs-selectors__nav {
        width: 30px;
        height: 30px;
    }

    /* ── Product Cards ── */
    .ovs-product-card-public__body {
        padding: .5rem .625rem .6875rem;
        gap: .375rem;
    }
    .ovs-product-card-public__name {
        font-size: .8125rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .ovs-product-card-public__desc {
        font-size: .6875rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .ovs-product-card-public__price {
        gap: .25rem;
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    .ovs-product-card-public__price .ovs-price { font-size: .875rem; }
    .ovs-product-card-public__price .ovs-price--old { font-size: .6875rem; }
    .ovs-product-card-public__price .ovs-price--sale { font-size: .875rem; }

    /* Card Buy Button — compact, sem quebra de linha */
    .ovs-product-card-public .ovs-btn {
        padding: .5rem .625rem;
        font-size: .75rem;
        border-radius: 14px;
        gap: .25rem;
        white-space: nowrap;
    }
    .ovs-product-card-public .ovs-btn i { font-size: .875rem; }

    /* Badges */
    .ovs-product-card-public__badge {
        top: 6px; left: 6px;
        padding: 3px 7px;
        font-size: .625rem;
    }

    /* ── Single Product ── */
    .ovs-single-product { grid-template-columns: 1fr; gap: 1.25rem; }
    .ovs-single-product__name { font-size: 1.25rem; }
    .ovs-single-product__short-desc { font-size: .875rem; }
    .ovs-single-product__price { margin-bottom: 1rem; }
    .ovs-price--lg { font-size: 1.375rem; }
    .ovs-thumb { width: 52px; height: 52px; }

    .ovs-single-product__actions {
        flex-direction: column;
        gap: .75rem;
    }
    .ovs-single-product__actions .ovs-btn { width: 100%; justify-content: center; }

    .ovs-variation-btn {
        padding: .375rem .75rem;
        font-size: .75rem;
    }

    .ovs-single-product__content h3 { font-size: 1.0625rem; }
    .ovs-single-product__description { padding-top: 1.25rem; }

    /* ── Cart Items — Grid layout ── */
    .ovs-cart-item {
        display: grid;
        grid-template-columns: 56px 1fr auto;
        grid-template-rows: auto auto;
        gap: .375rem .625rem;
        align-items: center;
        padding: .75rem 0;
    }
    .ovs-cart-item__image {
        width: 56px; height: 56px;
        grid-row: 1 / 3;
        border-radius: 8px;
    }
    .ovs-cart-item__info {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
    }
    .ovs-cart-item__info h4 {
        font-size: .8125rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .ovs-cart-item__info small { font-size: .6875rem; }
    .ovs-cart-item__price { font-size: .75rem; margin-top: .125rem; }
    .ovs-cart-item__qty {
        grid-column: 2;
        grid-row: 2;
    }
    .ovs-cart-item__total {
        grid-column: 3;
        grid-row: 1;
        text-align: right;
        min-width: auto;
        font-size: .8125rem;
    }
    .ovs-cart-remove {
        grid-column: 3;
        grid-row: 2;
        width: 30px; height: 30px;
        justify-self: end;
    }
    .ovs-cart-remove i { font-size: .875rem; }

    /* Cart Summary */
    .ovs-cart-summary { padding: 1rem; margin-top: 1rem; }
    .ovs-cart-summary__row { font-size: .875rem; }
    .ovs-cart-summary__actions {
        flex-direction: column;
        gap: .5rem;
    }
    .ovs-cart-summary__actions .ovs-btn {
        width: 100%;
        justify-content: center;
    }

    /* ── Checkout ── */
    .ovs-checkout__grid { grid-template-columns: 1fr; gap: 1rem; }
    .ovs-checkout-section { padding: 1rem; margin-bottom: 1rem; }
    .ovs-checkout-section h3 { font-size: .9375rem; }
    .ovs-checkout .ovs-field-row { flex-direction: column; gap: 0; }
    .ovs-checkout-summary { position: static; padding: 1rem; }
    .ovs-checkout-summary h3 { font-size: .9375rem; }
    .ovs-coupon-field { flex-direction: column; gap: .5rem; }
    .ovs-coupon-field .ovs-btn { width: 100%; justify-content: center; }

    /* Shipping */
    .ovs-shipping-option { padding: .625rem .75rem; gap: .5rem; font-size: .8125rem; }

    /* ── Order Status ── */
    .ovs-order-lookup { flex-direction: column; gap: .75rem; }
    .ovs-order-detail-public { padding: 1rem; }
    .ovs-order-detail-public__header {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
    }
    .ovs-order-detail-public__header h3 { font-size: 1.0625rem; }

    /* Timeline — vertical em mobile */
    .ovs-order-timeline {
        flex-direction: column;
        gap: .75rem;
    }
    .ovs-order-timeline::before { display: none; }
    .ovs-timeline-step {
        flex-direction: row;
        flex: none;
        width: auto;
        gap: .75rem;
    }
    .ovs-timeline-step__icon { width: 32px; height: 32px; font-size: .875rem; }
    .ovs-timeline-step span { font-size: .75rem; }

    /* Order Items */
    .ovs-order-item-public { font-size: .8125rem; padding: .625rem 0; }
    .ovs-order-item-public__price { min-width: 80px; font-size: .8125rem; }
    .ovs-order-totals-public__row { font-size: .875rem; }
    .ovs-order-totals-public__row--total { font-size: 1rem; }

    /* Tracking */
    .ovs-order-tracking { font-size: .8125rem; padding: .625rem .75rem; }

    /* ── Downloads ── */
    .ovs-download-item { padding: .75rem; gap: .5rem; }
    .ovs-download-item__icon { width: 36px; height: 36px; border-radius: 8px; }
    .ovs-download-item__icon i { font-size: 1rem; }
    .ovs-download-item__name { font-size: .8125rem; }
    .ovs-download-item__file { font-size: .6875rem; }

    /* ── PIX Modal ── */
    .ovs-modal__header { padding: 1rem; }
    .ovs-modal__body { padding: 1rem; }
    .ovs-pix-copy { flex-direction: column; }
    .ovs-pix-copy .ovs-btn { width: 100%; justify-content: center; }

    /* ── Floating Cart ── */
    .ovs-floating-cart { bottom: 16px; right: 16px; width: 50px; height: 50px; }
    .ovs-floating-cart i { font-size: 1.25rem; }
    .ovs-floating-cart__badge { min-width: 20px; height: 20px; font-size: .6875rem; }

    /* ── Pagination ── */
    .ovs-pagination { gap: .25rem; margin-top: 1.5rem; }
    .ovs-pagination__item { min-width: 34px; height: 34px; font-size: .8125rem; }

    /* ── Buttons genéricos mobile ── */
    .ovs-btn { padding: .625rem 1rem; font-size: .875rem; }
    .ovs-btn--sm { padding: .4375rem .75rem; font-size: .75rem; }
    .ovs-btn--lg { padding: .75rem 1.25rem; font-size: .875rem; }

    /* ── Alerts ── */
    .ovs-alert { padding: .75rem 1rem; font-size: .8125rem; gap: .5rem; }
    .ovs-alert i { font-size: 1rem; }
}

/* ===================================================================
   RESPONSIVE — Small Mobile (≤480px)
   =================================================================== */
@media (max-width: 480px) {
    .ovs-catalog, .ovs-single-product, .ovs-cart-page, .ovs-checkout, .ovs-order-status {
        padding: .75rem .5rem;
    }

    /* Grid gap mais apertado */
    .ovs-gap--compact { --ovs-grid-gap: 0.375rem; }
    .ovs-gap--normal  { --ovs-grid-gap: 0.5rem; }
    .ovs-gap--wide    { --ovs-grid-gap: 0.75rem; }

    .ovs-selectors {
        padding: .625rem;
    }
    .ovs-selector-item {
        width: 96px;
        min-height: 70px;
    }
    .ovs-selector-item__desc {
        display: none;
    }

    /* Card — mais compacto */
    .ovs-product-card-public__body {
        padding: .5rem .5rem .625rem;
        gap: .25rem;
    }
    .ovs-product-card-public__name { font-size: .75rem; }
    .ovs-product-card-public__desc { display: none; }

    .ovs-product-card-public__price { gap: .1875rem; }
    .ovs-product-card-public__price .ovs-price { font-size: .8125rem; }
    .ovs-product-card-public__price .ovs-price--old { font-size: .625rem; }
    .ovs-product-card-public__price .ovs-price--sale { font-size: .8125rem; }

    .ovs-product-card-public .ovs-btn {
        padding: .375rem .5rem;
        font-size: .6875rem;
        border-radius: 12px;
        gap: .1875rem;
    }
    .ovs-product-card-public .ovs-btn i { font-size: .75rem; }

    .ovs-product-card-public__badge {
        top: 4px; left: 4px;
        padding: 2px 6px;
        font-size: .5625rem;
        border-radius: 6px;
    }

    /* Titles */
    .ovs-cart-page__title,
    .ovs-checkout__title,
    .ovs-order-status__title {
        font-size: 1.0625rem;
        margin-bottom: 1rem;
    }

    /* Cart items — imagem menor */
    .ovs-cart-item { grid-template-columns: 48px 1fr auto; gap: .25rem .5rem; }
    .ovs-cart-item__image { width: 48px; height: 48px; }

    /* Single product */
    .ovs-single-product__name { font-size: 1.125rem; }
    .ovs-price--lg { font-size: 1.25rem; }
    .ovs-thumb { width: 44px; height: 44px; }

    /* Qty control smaller */
    .ovs-qty-control--sm .ovs-qty-btn { width: 28px; height: 28px; font-size: .875rem; }
    .ovs-qty-control--sm input { width: 28px; font-size: .75rem; }

    /* Pagination wrap */
    .ovs-pagination { flex-wrap: wrap; justify-content: center; }
    .ovs-pagination__item { min-width: 32px; height: 32px; font-size: .75rem; }

    /* Checkout sections */
    .ovs-checkout-section { padding: .875rem; }
    .ovs-checkout-section h3 { font-size: .875rem; gap: .375rem; }
    .ovs-checkout-section h3 i { font-size: 1rem; }
}

/* ===================================================================
   CARD SIZE — Proporcional (override final)
   =================================================================== */

/* Grande */
.ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__body {
    padding: .625rem .875rem .875rem;
    gap: .4375rem;
}
.ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__name {
    font-size: 1rem;
    line-height: 1.3;
}
.ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__desc {
    font-size: .8125rem;
    line-height: 1.4;
}
.ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__price .ovs-price,
.ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__price .ovs-price--sale {
    font-size: 1.125rem;
}
.ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__price .ovs-price--old {
    font-size: .875rem;
}

/* Médio */
.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__body {
    padding: .5rem .75rem .75rem;
    gap: .375rem;
}
.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__name {
    font-size: .9375rem;
    line-height: 1.28;
}
.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__desc {
    font-size: .75rem;
    line-height: 1.35;
}
.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__price {
    gap: .375rem;
}
.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__price .ovs-price,
.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__price .ovs-price--sale {
    font-size: 1rem;
}
.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__price .ovs-price--old {
    font-size: .75rem;
}
.ovs-product-card-public.ovs-card-size--medium .ovs-btn {
    padding: .5625rem .75rem;
    font-size: .8125rem;
    border-radius: 16px;
    gap: .3125rem;
}
.ovs-product-card-public.ovs-card-size--medium .ovs-btn i {
    font-size: .9375rem;
}
.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__badge {
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    font-size: .6875rem;
}

/* Pequeno */
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__body {
    padding: .4375rem .625rem .625rem;
    gap: .3125rem;
}
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__name {
    font-size: .875rem;
    line-height: 1.25;
}
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__desc {
    font-size: .6875rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__price {
    gap: .25rem;
}
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__price .ovs-price,
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__price .ovs-price--sale {
    font-size: .9375rem;
}
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__price .ovs-price--old {
    font-size: .6875rem;
}
.ovs-product-card-public.ovs-card-size--small .ovs-btn {
    padding: .5rem .625rem;
    font-size: .75rem;
    border-radius: 14px;
    gap: .25rem;
}
.ovs-product-card-public.ovs-card-size--small .ovs-btn i {
    font-size: .875rem;
}
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__badge {
    top: 6px;
    left: 6px;
    padding: 2px 7px;
    font-size: .625rem;
}

/* Mobile <= 768 */
@media (max-width: 768px) {
    .ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__body {
        padding: .625rem .625rem .75rem;
    }
    .ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__name {
        font-size: .8125rem;
    }
    .ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__desc {
        font-size: .6875rem;
    }

    .ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__body {
        padding: .5rem .5625rem .625rem;
    }
    .ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__name {
        font-size: .78125rem;
    }
    .ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__desc {
        font-size: .65625rem;
    }
    .ovs-product-card-public.ovs-card-size--medium .ovs-btn {
        padding: .4375rem .5625rem;
        font-size: .71875rem;
    }

    .ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__body {
        padding: .4375rem .5rem .5625rem;
    }
    .ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__name {
        font-size: .75rem;
    }
    .ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__desc {
        display: none;
    }
    .ovs-product-card-public.ovs-card-size--small .ovs-btn {
        padding: .375rem .5rem;
        font-size: .6875rem;
    }
}

/* Mobile <= 480 */
@media (max-width: 480px) {
    .ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__name {
        font-size: .75rem;
    }
    .ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__price .ovs-price,
    .ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__price .ovs-price--sale {
        font-size: .875rem;
    }

    .ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__name {
        font-size: .71875rem;
    }
    .ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__price .ovs-price,
    .ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__price .ovs-price--sale {
        font-size: .8125rem;
    }
}

/* ===================================================================
   CARD SIZE — HARD OVERRIDE (diferença visual forte)
   =================================================================== */

.ovs-catalog__grid .ovs-product-card-public.ovs-card-size--large {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.ovs-catalog__grid .ovs-product-card-public.ovs-card-size--medium {
    width: 92% !important;
    max-width: 92% !important;
    margin: 0 auto !important;
}

.ovs-catalog__grid .ovs-product-card-public.ovs-card-size--small {
    width: 84% !important;
    max-width: 84% !important;
    margin: 0 auto !important;
}

.ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__body {
    padding: .75rem .95rem .95rem !important;
}
.ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__name {
    font-size: 1.03rem !important;
}
.ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__desc {
    font-size: .84rem !important;
}
.ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__price .ovs-price,
.ovs-product-card-public.ovs-card-size--large .ovs-product-card-public__price .ovs-price--sale {
    font-size: 1.16rem !important;
}

.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__body {
    padding: .52rem .72rem .72rem !important;
}
.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__name {
    font-size: .9rem !important;
}
.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__desc {
    font-size: .73rem !important;
}
.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__price .ovs-price,
.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__price .ovs-price--sale {
    font-size: .98rem !important;
}
.ovs-product-card-public.ovs-card-size--medium .ovs-product-card-public__price .ovs-price--old {
    font-size: .72rem !important;
}
.ovs-product-card-public.ovs-card-size--medium .ovs-btn {
    padding: .5rem .66rem !important;
    font-size: .78rem !important;
}

.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__body {
    padding: .4rem .56rem .56rem !important;
    gap: .26rem !important;
}
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__name {
    font-size: .8rem !important;
    line-height: 1.22 !important;
}
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__desc {
    font-size: .64rem !important;
    line-height: 1.25 !important;
}
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__price .ovs-price,
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__price .ovs-price--sale {
    font-size: .86rem !important;
}
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__price .ovs-price--old {
    font-size: .62rem !important;
}
.ovs-product-card-public.ovs-card-size--small .ovs-btn {
    padding: .34rem .5rem !important;
    font-size: .66rem !important;
    border-radius: 11px !important;
    gap: .2rem !important;
}
.ovs-product-card-public.ovs-card-size--small .ovs-btn i {
    font-size: .74rem !important;
}
.ovs-product-card-public.ovs-card-size--small .ovs-product-card-public__badge {
    top: 4px !important;
    left: 4px !important;
    padding: 2px 6px !important;
    font-size: .56rem !important;
}

@media (max-width: 768px) {
    .ovs-catalog__grid .ovs-product-card-public.ovs-card-size--medium {
        width: 96% !important;
        max-width: 96% !important;
    }
    .ovs-catalog__grid .ovs-product-card-public.ovs-card-size--small {
        width: 90% !important;
        max-width: 90% !important;
    }
}

/* Preset Oferta — ajustes mobile */
@media (max-width: 782px) {
    .ovs-card-preset--offer .ovs-offer-price__whole {
        font-size: 1.34rem;
    }
    .ovs-card-preset--offer .ovs-offer-price__discount {
        font-size: .62rem;
        padding: .14rem .36rem;
    }
    .ovs-card-preset--offer .ovs-product-card-public__badge--sale {
        gap: .26rem;
        padding: .2rem .44rem .2rem .24rem;
        font-size: .58rem;
    }
    .ovs-product-card-public__badge-icon {
        width: 12px;
        height: 12px;
    }
    .ovs-product-card-public__badge-icon i {
        font-size: .52rem;
    }

    .ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tl,
    .ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tr {
        min-width: 160px;
        width: 160px;
        top: 8px !important;
        font-size: .55rem;
        padding: .24rem .52rem;
        border-radius: 0 !important;
    }
    .ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tl {
        left: -58px !important;
        transform: rotate(-36deg) !important;
    }
    .ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tr {
        right: -16px !important;
        transform: rotate(36deg) !important;
    }

    .ovs-product-card-public.ovs-card-preset--offer .ovs-product-card-public__image > .ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tl,
    .ovs-product-card-public.ovs-card-preset--offer .ovs-product-card-public__image > .ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tr {
        top: 4px !important;
        width: 154px !important;
        min-width: 154px !important;
        padding: .22rem .46rem !important;
    }
    .ovs-product-card-public.ovs-card-preset--offer .ovs-product-card-public__image > .ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tl {
        left: -52px !important;
        transform: rotate(-35deg) !important;
    }
    .ovs-product-card-public.ovs-card-preset--offer .ovs-product-card-public__image > .ovs-product-card-public__badge.ovs-product-card-public__badge--offer-pos-diagonal_tr {
        right: -6px !important;
        transform: rotate(35deg) !important;
    }
}
