@charset "UTF-8";

.oz-slider {
    position: relative;
    width: 100%;
}

.oz-slider__track {
    display: flex;
    gap: var(--oz-gap, 16px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.oz-slide {
    flex: 0 0 calc((100% - (var(--oz-gap, 16px) * (var(--oz-cols, 1) - 1))) / var(--oz-cols, 1));
    scroll-snap-align: start;
}

.oz-slider--center .oz-slide {
    scroll-snap-align: center;
}

.oz-slider--no-drag .oz-slider__track {
    overflow-x: hidden;
}

.oz-slider--align-left {
    text-align: left;
}

.oz-slider--align-center {
    text-align: center;
}

.oz-slider--align-right {
    text-align: right;
}

.oz-slide__media {
    width: 100%;
    aspect-ratio: var(--oz-ratio, auto);
    height: var(--oz-height, auto);
    overflow: hidden;
    position: relative;
}

.oz-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: var(--oz-img-fit, cover);
}

.oz-slide__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.oz-slide__overlay--light {
    background: rgba(255, 255, 255, 0.6);
}

.oz-slide__overlay--custom {
    background: rgba(0, 0, 0, 0.5);
}

.oz-slide__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    text-align: center;
    color: #fff;
}

.oz-slide__button {
    display: inline-block;
    margin-top: 10px;
    color: inherit;
}

.oz-slide__media--shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.oz-slide__media--shadow-md {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.oz-slide__caption {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #666;
}

/* Imágenes simples: tarjeta con foto + título + descripción dentro */
.ozs--images-card {
    --oz-img-card-bg: #f0f0f6;
    --oz-img-card-title: #002d8e;
    --oz-img-card-accent: #009e18;
    --oz-img-card-text: #6b7280;
}

/* Sin subrayado al hover (plantillas suelen forzar underline / border en enlaces) */
.ozs--images-card .ozs-simple-card__link,
.ozs--images-card .ozs-simple-card__link:hover,
.ozs--images-card .ozs-simple-card__link:focus,
.ozs--images-card .ozs-simple-card__link:focus-visible,
.ozs--images-card .ozs-simple-card__link:active,
.ozs--images-card .ozs-simple-card__media-link:hover,
.ozs--images-card .ozs-simple-card__media-link:focus,
.ozs--images-card .ozs-simple-card__media-link:focus-visible,
.ozs--images-card .ozs-simple-card__media-link:active {
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
}

.ozs--images-card .ozs-simple-card__link .ozs-simple-card__title,
.ozs--images-card .ozs-simple-card__link .ozs-simple-card__desc,
.ozs--images-card .ozs-simple-card__link:hover .ozs-simple-card__title,
.ozs--images-card .ozs-simple-card__link:hover .ozs-simple-card__desc,
.ozs--images-card .ozs-simple-card__link:focus .ozs-simple-card__title,
.ozs--images-card .ozs-simple-card__link:focus .ozs-simple-card__desc {
    text-decoration: none !important;
    text-decoration-line: none !important;
}

.ozs--images-card .ozs__slide {
    display: flex;
    min-width: 0;
    min-height: 0;
}

.ozs-simple-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    background: var(--oz-img-card-bg);
    overflow: hidden;
    box-sizing: border-box;
    border: none;
    outline: none;
    box-shadow: none;
    text-decoration: none;
    color: inherit;
}

.ozs--images-card .ozs-simple-card {
    border: none !important;
    outline: none;
}

.ozs-simple-card--shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ozs-simple-card--shadow-md {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ozs-simple-card__link {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    text-decoration: none;
    color: inherit;
}

.ozs-simple-card__inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.ozs-simple-card__media-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
}

.ozs-simple-card__media {
    flex: 1 1 auto;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px 12px;
    background: transparent;
    overflow: hidden;
}

.ozs-simple-card__media .ozs__img {
    max-width: 100%;
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.ozs-simple-card__body {
    flex-shrink: 0;
    text-align: center;
    padding: 0 14px 18px;
}

.ozs-simple-card__rule {
    display: block;
    width: 36px;
    height: 4px;
    margin: 0 auto 12px;
    background: var(--oz-img-card-accent);
    border-radius: 2px;
}

.ozs-simple-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--oz-img-card-title);
    margin: 0 0 8px;
}

.ozs-simple-card__desc {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--oz-img-card-text);
    font-weight: 400;
}

.oz-slider__nav {
    position: absolute;
    top: var(--ozs-nav-top, 50%);
    transform: translateY(-50%);
    width: var(--oz-nav-size, 36px);
    height: var(--oz-nav-size, 36px);
    border: var(--oz-nav-border, none);
    border-radius: var(--oz-nav-radius, 50%);
    background: var(--oz-nav-bg, rgba(0, 0, 0, 0.5));
    cursor: pointer;
}

.oz-slider__nav::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin: 0 auto;
}

.oz-slider__nav--prev {
    left: var(--oz-nav-offset, 8px);
}

.oz-slider__nav--prev::before {
    transform: rotate(-135deg);
}

.oz-slider__nav--next {
    right: var(--oz-nav-offset, 8px);
}
.oz-slider--has-header .oz-slider__track {
    margin-top: 6px;
}

.oz-slider__header {
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.oz-slider__header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.oz-slider__header-nav {
    display: flex;
    gap: 6px;
}

.oz-slider__header-nav .oz-slider__nav {
    position: static;
    transform: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #e1e1e1;
}

.oz-slider__header-nav .oz-slider__nav::before {
    border-color: #111;
}

.oz-slider__title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #e0b24d;
    margin-top: 6px;
}

.oz-slider__nav--next::before {
    transform: rotate(45deg);
}

.oz-slider__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.oz-slider__dot {
    width: var(--oz-dot-size, 8px);
    height: var(--oz-dot-size, 8px);
    border-radius: 50%;
    border: none;
    background: #c7c7c7;
    cursor: pointer;
}

.oz-slider__dot.is-active {
    background: #333;
}

.oz-dots-pill .oz-slider__dot {
    width: calc(var(--oz-dot-size, 8px) * 2);
    border-radius: 999px;
}

.oz-dots-classic .oz-slider__dot {
    border: 1px solid #999;
    background: transparent;
}

.oz-dots-classic .oz-slider__dot.is-active {
    background: #111;
}

.oz-nav-light .oz-slider__nav {
    background: rgba(255, 255, 255, 0.8);
}

.oz-nav-light .oz-slider__nav::before {
    border-color: #111;
}

.oz-nav-dark .oz-slider__nav {
    background: rgba(0, 0, 0, 0.7);
}

.oz-card,
.oz-blog-card,
.oz-wc-card,
.oz-testimonial {
    background: var(--oz-card-bg, #fff);
    border: 1px solid var(--oz-card-border, #eee);
    border-radius: var(--oz-card-radius, 8px);
    overflow: hidden;
    position: relative;
}

.ozs-blog,
.ozs-blog.oz-blog-card {
    background: var(--oz-card-bg, #fff);
    border: 1px solid var(--oz-card-border, #eee);
    border-radius: var(--oz-card-radius, 8px);
    overflow: hidden;
}

.oz-slider__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.oz-slider__header--center {
    justify-content: center;
    text-align: center;
}

.oz-slider__header--right {
    justify-content: flex-end;
    text-align: right;
}

.oz-slider__title {
    font-size: var(--oz-title-size, 20px);
    margin: 0;
}

.oz-slider__subtitle {
    font-size: var(--oz-subtitle-size, 14px);
    margin: 4px 0 0;
    color: #666;
}

.oz-slider__header-button {
    font-size: 13px;
    text-decoration: none;
}

.oz-layout-minimal .oz-card,
.oz-layout-minimal .oz-wc-card,
.oz-layout-minimal .oz-blog-card,
.oz-layout-minimal .oz-testimonial {
    border: none;
    box-shadow: none;
}

.oz-layout-logo_strip .oz-slide__media {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oz-layout-logo_strip .oz-slide__media img {
    object-fit: contain;
}

.oz-layout-quote_center .oz-testimonial {
    text-align: center;
}

.oz-card__body,
.oz-blog-card__body,
.oz-wc-card__link,
.oz-testimonial {
    padding: 16px;
}

.oz-card__button {
    display: inline-block;
    margin-top: 12px;
}

.oz-card__button--primary {
    padding: 8px 14px;
    background: var(--oz-accent, #111);
    color: #fff;
    border-radius: 4px;
}

.oz-card__button--outline {
    padding: 8px 14px;
    border: 1px solid var(--oz-accent, #111);
    color: var(--oz-accent, #111);
    border-radius: 4px;
}

.oz-card__button--link {
    color: inherit;
    text-decoration: underline;
}

.oz-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #111;
    color: #fff;
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 12px;
}

/* Hover animations for cards */
.ozs--hover-zoom .oz-card,
.ozs--hover-zoom .oz-blog-card,
.ozs--hover-zoom .oz-wc-card,
.ozs--hover-zoom .oz-testimonial {
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.ozs--hover-zoom .oz-card:hover,
.ozs--hover-zoom .oz-blog-card:hover,
.ozs--hover-zoom .oz-wc-card:hover,
.ozs--hover-zoom .oz-testimonial:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.ozs--hover-glow .oz-card,
.ozs--hover-glow .oz-blog-card,
.ozs--hover-glow .oz-wc-card,
.ozs--hover-glow .oz-testimonial {
    transition: box-shadow 220ms ease;
}

.ozs--hover-glow .oz-card:hover,
.ozs--hover-glow .oz-blog-card:hover,
.ozs--hover-glow .oz-wc-card:hover,
.ozs--hover-glow .oz-testimonial:hover {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35), 0 0 24px rgba(255, 255, 255, 0.45);
}

.ozs--hover-lift .oz-card,
.ozs--hover-lift .oz-blog-card,
.ozs--hover-lift .oz-wc-card,
.ozs--hover-lift .oz-testimonial {
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.ozs--hover-lift .oz-card:hover,
.ozs--hover-lift .oz-blog-card:hover,
.ozs--hover-lift .oz-wc-card:hover,
.ozs--hover-lift .oz-testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

/* Entry animations */
.ozs--entry-fade .ozs__slide {
    animation: ozs-fade-in 480ms ease both;
}

.ozs--entry-slide-up .ozs__slide {
    animation: ozs-slide-up 520ms ease both;
}

.ozs--entry-scale .ozs__slide {
    animation: ozs-scale-in 520ms ease both;
}

.ozs--entry-fade .ozs__slide,
.ozs--entry-slide-up .ozs__slide,
.ozs--entry-scale .ozs__slide {
    animation-delay: calc(var(--ozs-idx, 0) * 40ms);
}

@keyframes ozs-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes ozs-slide-up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ozs-scale-in {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .ozs--entry-fade .ozs__slide,
    .ozs--entry-slide-up .ozs__slide,
    .ozs--entry-scale .ozs__slide {
        animation: none;
    }
    .ozs--hover-zoom .oz-card,
    .ozs--hover-zoom .oz-blog-card,
    .ozs--hover-zoom .oz-wc-card,
    .ozs--hover-zoom .oz-testimonial,
    .ozs--hover-glow .oz-card,
    .ozs--hover-glow .oz-blog-card,
    .ozs--hover-glow .oz-wc-card,
    .ozs--hover-glow .oz-testimonial,
    .ozs--hover-lift .oz-card,
    .ozs--hover-lift .oz-blog-card,
    .ozs--hover-lift .oz-wc-card,
    .ozs--hover-lift .oz-testimonial {
        transition: none;
    }
}

.oz-card__title,
.oz-card__subtitle {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.oz-wc-card__media {
    position: relative;
}

.oz-wc-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 4px;
    background: #111;
    color: #fff;
}

.oz-wc-card__badge--sale {
    background: #d63638;
}

.oz-wc-card__badge--featured {
    background: #1e73be;
}

.oz-wc-card__button {
    display: inline-block;
    margin-top: 8px;
}

.oz-testimonial__avatar img {
    border-radius: 50%;
    object-fit: cover;
    width: 48px;
    height: 48px;
}

.oz-blog-card__media img,
.oz-card__img,
.oz-slide__img,
.oz-wc-card__media img,
.oz-wc-cat__img,
.oz-wc-brand__img {
    display: block;
    width: 100%;
    height: auto;
}

.ozs-wc-brand--logo-only .ozs-wc-brand__link,
.oz-wc-brand--logo-only .oz-wc-brand__link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.oz-blog-card--compact .oz-blog-card__link {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.oz-blog-card--compact .oz-blog-card__media {
    flex: 0 0 40%;
}

.oz-testimonial__stars {
    color: var(--oz-star-color, #f2b01e);
    margin-bottom: 8px;
}

.oz-testimonial--quote {
    text-align: center;
}

.oz-slider__notice {
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 6px;
}

/* OZ Sliders base v2 (.ozs) */
.ozs {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    /* Canal lateral cuando nav "fuera": flechas dentro del bloque, carril más estrecho (--oz-nav-gutter en :root) */
    padding-top: var(--ozs-container-padding, 0px);
    padding-bottom: var(--ozs-container-padding, 0px);
    padding-left: calc(var(--ozs-container-padding, 0px) + var(--oz-nav-gutter, 0px));
    padding-right: calc(var(--ozs-container-padding, 0px) + var(--oz-nav-gutter, 0px));
}

/* Ocultar flechas en móvil: quitar carril lateral reservado para "nav fuera" (JS añade la clase bajo el mismo breakpoint que tablet) */
.ozs.ozs--hide-nav-mobile {
    padding-left: var(--ozs-container-padding, 0px);
    padding-right: var(--ozs-container-padding, 0px);
}

/* Sin contain:paint ni clip duro: recortaban sombras y el último slide al borde del bloque */
.ozs:not(.ozs--banner) .ozs__viewport {
    padding-inline-end: max(12px, min(28px, calc(var(--ozs-gap, 16px) * 0.85)));
    box-sizing: border-box;
}

.ozs__viewport {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    overflow-y: hidden;
    position: relative;
}

/* Prev | carril | next: flechas fuera del viewport (no banner; banner sigue con nav absoluto) */
.ozs--nav-track-wrap {
    --oz-nav-gutter: 0px;
    padding-left: var(--ozs-container-padding, 0px);
    padding-right: var(--ozs-container-padding, 0px);
}

.ozs__track-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.ozs[data-rtl="true"] .ozs__track-wrap,
html[dir="rtl"] .ozs[data-rtl="auto"] .ozs__track-wrap {
    flex-direction: row-reverse;
}

.ozs__track-wrap .ozs__nav--side {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.ozs__track-wrap .ozs__nav--side .ozs__nav-btn {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin: 0;
}

.ozs__track-wrap .ozs__viewport {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: none;
}

/* Mismo inset que padding-inline-end del carril, para alinear ambos lados */
.ozs--nav-track-wrap:not(.ozs--banner) .ozs__viewport {
    padding-inline-start: max(12px, min(28px, calc(var(--ozs-gap, 16px) * 0.85)));
}

.ozs__track {
    display: flex;
    gap: var(--ozs-gap, var(--oz-gap, 16px));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline-end: max(12px, min(28px, calc(var(--ozs-gap, 16px) * 0.85)));
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ozs__track.ozs__track--list {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.ozs__track::-webkit-scrollbar {
    display: none;
}

.ozs--banner .ozs__track {
    gap: 0;
    padding-bottom: 0;
    scroll-padding-inline-end: 0;
}

.ozs--banner,
.ozs--banner .ozs__viewport,
.ozs--banner .ozs__track,
.ozs--banner .ozs__slide,
.ozs--banner .ozs__media {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

.ozs--banner.ozs--peek .ozs__track {
    padding-left: 0;
    padding-right: 0;
}

.ozs--banner.ozs--peek .ozs__slide {
    flex-basis: 100%;
}

/* Peek adjacent slides: show part of previous/next slides */
.ozs--peek .ozs__track {
    padding-left: var(--ozs-peek, 60px);
    padding-right: var(--ozs-peek, 60px);
}
.ozs--peek .ozs__slide {
    flex: 0 0 calc(100% - (var(--ozs-peek, 60px) * 2));
}

/* Image and container padding control */
.ozs__media {
    padding: var(--ozs-img-padding, 0);
    box-sizing: border-box;
}
/* Hero responsive like theme container behavior */
.ozs--banner {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.ozs--banner .ozs__viewport,
.ozs--banner .ozs__track,
.ozs--banner .ozs__slide {
    width: 100%;
}

.ozs--banner .ozs__media {
    height: auto;
    aspect-ratio: auto;
}

.ozs--banner .ozs__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Enlace del slide: solo zona central (título/CTA/imagen central), no todo el ancho — evita conflicto con flechas */
.ozs--banner .ozs__media-link {
    inset: auto;
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(1200px, calc(100% - clamp(100px, 16vw, 220px)));
    height: 100%;
    max-width: calc(100% - clamp(100px, 16vw, 220px));
}

/*
 * Apilamiento del banner: el viewport queda en una capa base.
 * Importante: NO usar position:relative en .ozs__nav aquí — si no, los .ozs__nav-btn
 * (position:absolute) toman como referencia un contenedor de altura 0 bajo el viewport
 * y las flechas desaparecen del área visible.
 */
.ozs--banner .ozs__viewport {
    z-index: 0;
}

.ozs--banner .ozs__nav-btn {
    z-index: 16;
}

.ozs__slide {
    /* --ozs-slide-flex-basis (px) lo fija JS según track.clientWidth para que N columnas + gaps quepan sin recorte */
    /* Fallback: calc + --ozs-slide-epsilon evita asomar el slide vecino cuando aún no hay medición */
    flex: 0 0 var(--ozs-slide-flex-basis, calc((100% - (var(--ozs-gap, var(--oz-gap, 16px)) * (var(--ozs-cols, var(--oz-cols, 1)) - 1)) + var(--ozs-slide-epsilon, 0px)) / var(--ozs-cols, var(--oz-cols, 1))));
    scroll-snap-align: start;
    box-sizing: border-box;
}

.ozs--center .ozs__slide {
    scroll-snap-align: center;
}

.ozs--no-drag .ozs__track {
    overflow-x: hidden;
}

.ozs--align-left {
    text-align: left;
}

.ozs--align-center {
    text-align: center;
}

.ozs--align-right {
    text-align: right;
}

.ozs__media {
    width: 100%;
    aspect-ratio: var(--ozs-ratio, var(--oz-ratio, auto));
    height: var(--ozs-height, var(--oz-height, auto));
    overflow: hidden;
    position: relative;
}

.ozs__media-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.ozs__media img {
    width: 100%;
    height: 100%;
    object-fit: var(--ozs-img-fit, var(--oz-img-fit, cover));
}

.ozs__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.ozs__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    text-align: center;
    color: #fff;
    z-index: 3;
    pointer-events: none;
}

.ozs__content--left {
    align-items: flex-start;
    text-align: left;
}

.ozs__content--right {
    align-items: flex-end;
    text-align: right;
}

.ozs__button {
    display: inline-block;
    margin-top: 10px;
    color: inherit;
    pointer-events: auto;
    position: relative;
    z-index: 4;
}

.ozs__caption {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #666;
}

.ozs__nav {
    pointer-events: none;
}

.ozs__nav-btn {
    position: absolute;
    top: var(--ozs-nav-top, 50%);
    transform: translateY(-50%);
    width: var(--oz-nav-size, 36px);
    height: var(--oz-nav-size, 36px);
    border: var(--oz-nav-border, none);
    border-radius: var(--oz-nav-radius, 50%);
    background: var(--oz-nav-bg, rgba(0, 0, 0, 0.5));
    cursor: pointer;
    pointer-events: auto;
}

.ozs--equal-height .ozs__track {
    align-items: stretch;
}

.ozs--equal-height .ozs__slide {
    display: flex;
}

.ozs--equal-height .ozs__slide > * {
    height: 100%;
    width: 100%;
}

@media (max-width: 767px) {
    .ozs--stack-mobile.ozs--is-stacked-mobile .ozs__viewport {
        overflow: visible;
    }

    .ozs--stack-mobile.ozs--is-stacked-mobile .ozs__track {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        overflow: visible;
        scroll-snap-type: none;
    }

    .ozs--stack-mobile.ozs--is-stacked-mobile .ozs__slide {
        flex: 1 1 auto;
    }

    .ozs--stack-mobile.ozs--is-stacked-mobile .ozs__nav,
    .ozs--stack-mobile.ozs--is-stacked-mobile .ozs__dots {
        display: none;
    }
}

.ozs-blog__readmore,
.oz-blog-card__readmore {
    display: inline-block;
    margin-top: auto;
    padding: 8px 16px;
    border: 1px solid var(--oz-accent, #111);
    border-radius: 4px;
    color: var(--oz-accent, #111);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: background .2s, color .2s;
}

.ozs-blog__readmore:hover,
.oz-blog-card__readmore:hover {
    background: var(--oz-accent, #111);
    color: #fff;
}

.ozs-blog__link,
.oz-blog-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ozs-blog__body,
.oz-blog-card .oz-blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 16px 16px;
}

.ozs-blog__title,
.oz-blog-card__title {
    font-size: 16px;
    margin: 0 0 6px;
    color: var(--oz-heading-color, inherit);
}

.ozs-blog__excerpt,
.oz-blog-card__excerpt {
    font-size: 13px;
    color: var(--oz-text-muted, #666);
    margin: 0 0 12px;
    flex: 1;
}

.ozs-blog__meta,
.oz-blog-card__meta {
    font-size: 12px;
    color: var(--oz-text-muted, #999);
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
}

.ozs--hide-nav-mobile .ozs__nav,
.ozs--hide-nav-mobile .ozs__nav-btn,
.oz-slider.ozs--hide-nav-mobile .oz-slider__nav {
    display: none !important;
}

.ozs-tabs--hide-nav-mobile [data-ozs-tabs-arrows],
.ozs-tabs--hide-nav-mobile [data-ozs-tabs-arrows] .ozs__nav-btn {
    display: none !important;
}

.ozs__nav-btn::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    margin: 0 auto;
}

.ozs__nav-btn--prev {
    left: var(--oz-nav-offset, 8px);
}

.ozs__nav-btn--prev::before {
    transform: rotate(-135deg);
}

.ozs__nav-btn--next {
    right: var(--oz-nav-offset, 8px);
}

.ozs__nav-btn--next::before {
    transform: rotate(45deg);
}

/* Carrusel simple (imágenes / tarjetas / categorías Woo): flechas laterales = mismo aspecto que pestañas (.ozs-tabs__arrows) */
.ozs--images .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn,
.ozs--cards .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn,
.ozs--wc-categories .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: #fff;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.ozs--images .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn::before,
.ozs--cards .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn::before,
.ozs--wc-categories .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn::before {
    border-color: #9ca3af;
    transition: border-color 0.2s ease;
}

.ozs--images .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn:hover,
.ozs--images .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn:focus-visible,
.ozs--cards .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn:hover,
.ozs--cards .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn:focus-visible,
.ozs--wc-categories .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn:hover,
.ozs--wc-categories .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn:focus-visible {
    border-color: var(--ozs-heading-green, #009e18);
    background: var(--ozs-heading-green, #009e18);
    outline: none;
}

.ozs--images .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn:hover::before,
.ozs--images .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn:focus-visible::before,
.ozs--cards .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn:hover::before,
.ozs--cards .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn:focus-visible::before,
.ozs--wc-categories .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn:hover::before,
.ozs--wc-categories .ozs__nav:not(.ozs__nav--in-header) .ozs__nav-btn:focus-visible::before {
    border-color: #fff;
}

.ozs__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.ozs__dot {
    width: var(--oz-dot-size, 8px);
    height: var(--oz-dot-size, 8px);
    border-radius: 50%;
    border: none;
    background: #c7c7c7;
    cursor: pointer;
}

/* Tabs carousel */
.ozs-tabs {
    --ozs-tabs-green: #009e18;
    --ozs-tabs-blue: #002d8e;
    --ozs-tabs-muted: #6b7280;
    --ozs-tabs-rule: #e5e7eb;
    --ozs-heading-blue: #002d8e;
    --ozs-heading-green: #009e18;
    --ozs-heading-muted: #6b7280;
    margin: 12px 0 28px;
}

.ozs-tabs__bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

/* Cabecera: título + flechas en la misma línea (agrupados); subtítulo debajo */
.ozs-tabs__header-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.ozs-tabs__header-row--left {
    align-items: flex-start;
}

.ozs-tabs__header-row--right {
    align-items: flex-end;
}

.ozs-tabs__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.ozs-tabs__header-row--left .ozs-tabs__heading {
    align-items: flex-start;
}

.ozs-tabs__header-row--right .ozs-tabs__heading {
    align-items: flex-end;
}

/* Título + flechas: mismas clases que carruseles .ozs--header-unified */
.ozs-tabs .ozs__title-line {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ozs-tabs__header-row--left .ozs__title-line {
    justify-content: flex-start;
}

.ozs-tabs__header-row--right .ozs__title-line {
    justify-content: flex-end;
}

.ozs-tabs__heading .ozs__title {
    margin: 0;
}

.ozs-tabs .ozs__heading-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.ozs-tabs .ozs__heading-title::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 8px;
    background: var(--ozs-heading-blue);
    border-radius: 1px;
}

.ozs-tabs__header-row--center .ozs__heading-title::after {
    margin-left: auto;
    margin-right: auto;
}

.ozs-tabs .ozs__title-part--primary {
    color: var(--ozs-heading-blue);
}

.ozs-tabs .ozs__title-part--accent {
    color: var(--ozs-heading-green);
}

.ozs-tabs .ozs__header-subtitle,
.ozs-tabs__subtitle {
    margin-top: 10px;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: var(--ozs-heading-muted);
    font-weight: 400;
    text-align: center;
    width: 100%;
    max-width: 42rem;
}

.ozs-tabs__header-row--left .ozs__header-subtitle,
.ozs-tabs__header-row--left .ozs-tabs__subtitle {
    text-align: left;
}

.ozs-tabs__header-row--right .ozs__header-subtitle,
.ozs-tabs__header-row--right .ozs-tabs__subtitle {
    text-align: right;
}

.ozs-tabs__header-cta {
    flex-shrink: 0;
    align-self: center;
}

.ozs-tabs__arrows {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ozs-tabs .ozs-tabs__arrows .ozs__nav-btn,
.ozs--header-unified .ozs__nav--in-header .ozs__nav-btn {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

/* Flechas junto al título (tabs + carruseles unificados): neutras; verde solo en hover */
.ozs-tabs .ozs-tabs__arrows .ozs__nav-btn--prev,
.ozs-tabs .ozs-tabs__arrows .ozs__nav-btn--next,
.ozs--header-unified .ozs__nav--in-header .ozs__nav-btn--prev,
.ozs--header-unified .ozs__nav--in-header .ozs__nav-btn--next {
    border: 1px solid #d1d5db;
    background: #fff;
}

.ozs-tabs .ozs-tabs__arrows .ozs__nav-btn--prev::before,
.ozs-tabs .ozs-tabs__arrows .ozs__nav-btn--next::before,
.ozs--header-unified .ozs__nav--in-header .ozs__nav-btn--prev::before,
.ozs--header-unified .ozs__nav--in-header .ozs__nav-btn--next::before {
    border-color: #9ca3af;
    transition: border-color 0.2s ease;
}

.ozs-tabs .ozs-tabs__arrows .ozs__nav-btn:hover,
.ozs-tabs .ozs-tabs__arrows .ozs__nav-btn:focus-visible,
.ozs--header-unified .ozs__nav--in-header .ozs__nav-btn:hover,
.ozs--header-unified .ozs__nav--in-header .ozs__nav-btn:focus-visible {
    border-color: var(--ozs-heading-green);
    background: var(--ozs-heading-green);
    outline: none;
}

.ozs-tabs .ozs-tabs__arrows .ozs__nav-btn:hover::before,
.ozs-tabs .ozs-tabs__arrows .ozs__nav-btn:focus-visible::before,
.ozs--header-unified .ozs__nav--in-header .ozs__nav-btn:hover::before,
.ozs--header-unified .ozs__nav--in-header .ozs__nav-btn:focus-visible::before {
    border-color: #fff;
}

/* Pestañas: fila inferior centrada, bordes superior e inferior */
.ozs-tabs__tabs-row {
    border-top: 1px solid var(--ozs-tabs-rule);
    border-bottom: 1px solid var(--ozs-tabs-rule);
    padding-bottom: 0;
    margin-bottom: 0;
}

.ozs-tabs__tabs-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
}

.ozs-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    flex: 0 1 auto;
    min-width: 0;
}

.ozs-tabs__tab {
    border: none;
    background: transparent;
    padding: 12px 20px;
    margin: 0;
    border-radius: 0;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: #1f2937;
    line-height: 1.2;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.ozs-tabs__tab + .ozs-tabs__tab {
    border-left: 1px solid var(--ozs-tabs-rule);
}

.ozs-tabs__tab:hover,
.ozs-tabs__tab:focus-visible {
    color: #111827;
    opacity: 0.9;
    outline: none;
}

.ozs-tabs__tab.is-active {
    color: var(--ozs-tabs-green);
    border-bottom-color: var(--ozs-tabs-green);
    background: transparent;
    opacity: 1;
}

/* Móvil: selector plegable (categoría activa + lista desplegable) */
.ozs-tabs__mobile-toggle {
    display: none;
}

@media (max-width: 767px) {
    .ozs-tabs__tabs-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .ozs-tabs:not(.ozs-tabs--single-cat) .ozs-tabs__mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        margin: 0 0 0 0;
        padding: 12px 14px;
        border: 1px solid var(--ozs-tabs-rule);
        border-radius: 10px;
        background: #fff;
        color: #111827;
        font-size: 0.9375rem;
        font-weight: 600;
        line-height: 1.25;
        text-align: left;
        cursor: pointer;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    .ozs-tabs:not(.ozs-tabs--single-cat) .ozs-tabs__mobile-toggle:focus-visible {
        outline: 2px solid var(--ozs-tabs-green);
        outline-offset: 2px;
    }

    .ozs-tabs__mobile-toggle-label {
        flex: 1;
        min-width: 0;
        color: var(--ozs-tabs-green);
        font-weight: 600;
    }

    .ozs-tabs__mobile-toggle-chevron {
        flex-shrink: 0;
        width: 10px;
        height: 10px;
        border-right: 2px solid #6b7280;
        border-bottom: 2px solid #6b7280;
        transform: rotate(45deg);
        margin-top: -4px;
        transition: transform 0.2s ease;
    }

    .ozs-tabs--nav-open .ozs-tabs__mobile-toggle-chevron {
        transform: rotate(225deg);
        margin-top: 4px;
    }

    /* Lista oculta hasta abrir (solo varias categorías) */
    .ozs-tabs:not(.ozs-tabs--single-cat):not(.ozs-tabs--nav-open) .ozs-tabs__nav {
        display: none !important;
    }

    .ozs-tabs:not(.ozs-tabs--single-cat).ozs-tabs--nav-open .ozs-tabs__nav {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-top: 8px;
        padding: 4px 0;
        border: 1px solid var(--ozs-tabs-rule);
        border-radius: 10px;
        background: #fff;
        overflow: hidden;
    }

    .ozs-tabs--single-cat .ozs-tabs__nav {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .ozs-tabs:not(.ozs-tabs--single-cat).ozs-tabs--nav-open .ozs-tabs__tab {
        width: 100%;
        text-align: left;
        padding: 12px 16px;
        border-bottom: 1px solid var(--ozs-tabs-rule);
        margin-bottom: 0;
        border-left: none;
        border-radius: 0;
        font-weight: 500;
    }

    .ozs-tabs:not(.ozs-tabs--single-cat).ozs-tabs--nav-open .ozs-tabs__tab:last-child {
        border-bottom: none;
    }

    .ozs-tabs:not(.ozs-tabs--single-cat).ozs-tabs--nav-open .ozs-tabs__tab + .ozs-tabs__tab {
        border-left: none;
    }

    .ozs-tabs:not(.ozs-tabs--single-cat).ozs-tabs--nav-open .ozs-tabs__tab.is-active {
        background: rgba(0, 158, 24, 0.06);
    }
}

@media (min-width: 768px) {
    .ozs-tabs__mobile-toggle {
        display: none !important;
    }

    .ozs-tabs__nav {
        display: flex !important;
    }

    .ozs-tabs--nav-open .ozs-tabs__nav {
        /* escritorio: siempre fila, ignorar estado móvil residual */
        flex-direction: row !important;
        flex-wrap: wrap !important;
        width: auto !important;
        margin-top: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
    }
}

.ozs-tabs__arrows--tabs-row {
    margin-left: 0;
}

.ozs-tabs__panels {
    margin-top: 20px;
}

.ozs-tabs .ozs .ozs__nav {
    display: none !important;
}

.ozs-tabs__panel {
    display: none;
}

.ozs-tabs__panel.is-active {
    display: block;
}

.ozs__dot.is-active {
    background: var(--oz-accent, #333);
}

.ozs--has-header .ozs__viewport {
    margin-top: 6px;
}

/* Cabecera clásica (banner / sin modo unificado) */
.ozs__header:not(.ozs__header--unified) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    padding: 0 4px;
    flex-wrap: wrap;
}

.ozs__header:not(.ozs__header--unified).ozs__header--center {
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.ozs__header:not(.ozs__header--unified).ozs__header--left {
    text-align: left;
}

.ozs__header:not(.ozs__header--unified).ozs__header--right {
    justify-content: flex-end;
    text-align: right;
}

/* Mismo criterio visual que tabs: título + acento + flechas en línea, subtítulo debajo (todos los .ozs salvo banner) */
.ozs.ozs--header-unified {
    --ozs-heading-blue: #002d8e;
    --ozs-heading-green: #009e18;
    --ozs-heading-muted: #6b7280;
}

.ozs__header--unified {
    margin-bottom: 18px;
    padding: 0 4px;
}

.ozs__header--unified .ozs__header-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ozs__header--unified.ozs__header--left .ozs__header-row {
    align-items: flex-start;
}

.ozs__header--unified.ozs__header--right .ozs__header-row {
    align-items: flex-end;
}

.ozs__header--unified .ozs__header-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.ozs__header--unified.ozs__header--left .ozs__header-heading {
    align-items: flex-start;
}

.ozs__header--unified.ozs__header--right .ozs__header-heading {
    align-items: flex-end;
}

.ozs__header--unified .ozs__title-line {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ozs__header--unified.ozs__header--left .ozs__title-line {
    justify-content: flex-start;
}

.ozs__header--unified.ozs__header--right .ozs__title-line {
    justify-content: flex-end;
}

.ozs__header--unified .ozs__heading-title {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0;
}

.ozs__header--unified .ozs__heading-title::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    margin-top: 8px;
    background: var(--ozs-heading-blue);
    border-radius: 1px;
}

.ozs__header--unified.ozs__header--center .ozs__heading-title::after {
    margin-left: auto;
    margin-right: auto;
}

.ozs__header--unified .ozs__title-part--primary {
    color: var(--ozs-heading-blue);
}

.ozs__header--unified .ozs__title-part--accent {
    color: var(--ozs-heading-green);
}

.ozs__header--unified .ozs__header-subtitle {
    margin-top: 10px;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: var(--ozs-heading-muted);
    font-weight: 400;
    text-align: center;
    width: 100%;
    max-width: 42rem;
}

.ozs__header--unified.ozs__header--left .ozs__header-subtitle {
    text-align: left;
}

.ozs__header--unified.ozs__header--right .ozs__header-subtitle {
    text-align: right;
}

.ozs__header--unified .ozs__header-cta {
    flex-shrink: 0;
    align-self: center;
}

.ozs__header--unified .ozs__nav--in-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    pointer-events: none;
}

.ozs__header--unified .ozs__nav--in-header .ozs__nav-btn {
    pointer-events: auto;
}

@media (max-width: 639px) {
    .ozs__header--unified .ozs__title-line .ozs__nav--in-header {
        flex-basis: 100%;
        justify-content: flex-end;
        margin-top: 4px;
    }

    .ozs__header--unified.ozs__header--center .ozs__title-line .ozs__nav--in-header {
        justify-content: center;
    }

    .ozs-tabs .ozs__title-line .ozs-tabs__arrows {
        flex-basis: 100%;
        justify-content: flex-end;
        margin-top: 4px;
    }

    .ozs-tabs__header-row--center .ozs__title-line .ozs-tabs__arrows {
        justify-content: center;
    }
}

.ozs__title {
    font-size: var(--oz-title-size, 20px);
    margin: 0;
    color: var(--oz-heading-color, inherit);
}

/*
 * Títulos cabecera / tabs Woo: 600 en todos los anchos (300 en CSS es “light” y se veía muy fino en móvil).
 * !important vs tema; en móvil evita -webkit-font-smoothing:antialiased global que adelgaza trazos.
 */
.ozs-tabs .ozs__heading-title,
.ozs-tabs .ozs__heading-title .ozs__title-part--primary,
.ozs-tabs .ozs__heading-title .ozs__title-part--accent,
.ozs-tabs__heading .ozs__title.ozs__heading-title,
.ozs-tabs__heading .ozs__title.ozs__heading-title .ozs__title-part--primary,
.ozs-tabs__heading .ozs__title.ozs__heading-title .ozs__title-part--accent,
.ozs__header .ozs__title,
.ozs__header--unified .ozs__heading-title,
.ozs__header .ozs__title .ozs__title-part--primary,
.ozs__header .ozs__title .ozs__title-part--accent {
    font-weight: 600 !important;
}

@media (max-width: 767px) {
    .ozs-tabs .ozs__heading-title,
    .ozs-tabs .ozs__heading-title .ozs__title-part--primary,
    .ozs-tabs .ozs__heading-title .ozs__title-part--accent,
    .ozs-tabs__heading .ozs__title.ozs__heading-title,
    .ozs-tabs__heading .ozs__title.ozs__heading-title .ozs__title-part--primary,
    .ozs-tabs__heading .ozs__title.ozs__heading-title .ozs__title-part--accent,
    .ozs__header .ozs__title,
    .ozs__header--unified .ozs__heading-title,
    .ozs__header .ozs__title .ozs__title-part--primary,
    .ozs__header .ozs__title .ozs__title-part--accent {
        -webkit-font-smoothing: auto;
    }
}

.ozs__header:not(.ozs__header--unified) .ozs__title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--oz-accent, currentColor);
    margin-top: 6px;
}

.ozs__header--unified .ozs__title:not(.ozs__heading-title)::after {
    display: none;
}

.ozs__subtitle {
    font-size: var(--oz-subtitle-size, 14px);
    margin: 4px 0 0;
    color: var(--oz-text-muted, #666);
}

.ozs__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: var(--oz-accent, #111);
    border: 1px solid var(--oz-accent, #111);
    padding: 6px 16px;
    border-radius: 4px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}

.ozs__cta:hover {
    background: var(--oz-accent, #111);
    color: #fff;
}

.ozs__cta--disabled {
    cursor: default;
    opacity: 0.8;
    pointer-events: none;
}

.ozs__notice {
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.oz-dots-pill .ozs__dot {
    width: calc(var(--oz-dot-size, 8px) * 2);
    border-radius: 999px;
}

.oz-dots-classic .ozs__dot {
    border: 1px solid #999;
    background: transparent;
}

.oz-dots-classic .ozs__dot.is-active {
    background: #111;
}

.oz-nav-light .ozs__nav-btn {
    background: rgba(255, 255, 255, 0.8);
}

.oz-nav-light .ozs__nav-btn::before {
    border-color: #111;
}

.oz-nav-dark .ozs__nav-btn {
    background: rgba(0, 0, 0, 0.7);
}

/* "Sin fondo" global: no dejar que claro/oscuro impongan fondo blanco/negro */
.ozs.ozs--nav-shape-none .ozs__nav-btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none;
}

.ozs--layout-image_logo_strip .ozs__media {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ozs--layout-image_logo_strip .ozs__media img {
    object-fit: contain;
}

.ozs--layout-card_compact .ozs-card {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.ozs--layout-card_compact .ozs-card__media {
    flex: 0 0 40%;
}

.ozs--layout-post_compact .oz-blog-card__link {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ozs--layout-post_compact .oz-blog-card__media {
    flex: 0 0 40%;
}

.ozs--layout-quote_center .oz-testimonial,
.ozs--layout-quote_center .ozs-testimonial {
    text-align: center;
}

.ozs--layout-product_compact .ozs-wc-card__link {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ozs--layout-product_compact .ozs-wc-card__media {
    flex: 0 0 40%;
}

.ozs--layout-product_minimal .ozs-wc-card__rating,
.ozs--layout-product_minimal .ozs-wc-card__price,
.ozs--layout-product_minimal .ozs-wc-card__button {
    display: none;
}

.ozs--layout-hero_textbox .ozs__content {
    align-items: flex-start;
    text-align: left;
    background: rgba(0, 0, 0, 0.35);
    padding: 24px;
}

/* =============================================
   Testimonial Models
   ============================================= */

/* Shared testimonial base */
.ozs-testimonial {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ozs-testimonial__text {
    flex: 1;
}

.ozs-testimonial__text p:last-child {
    margin-bottom: 0;
}

.ozs-testimonial__stars {
    display: flex;
    gap: 2px;
    color: var(--oz-star-color, #f2b01e);
    font-size: 16px;
    line-height: 1;
}

.ozs-testimonial__name {
    display: block;
    font-weight: 600;
}

.ozs-testimonial__role {
    display: block;
    font-size: 0.85em;
    color: var(--oz-text-muted, #888);
}

/* --- Model 1: Clásico (grid) --- */
.ozs--model-1 .ozs-testimonial {
    padding: 20px;
}

.ozs--model-1 .ozs-testimonial__stars {
    margin-bottom: 10px;
}

.ozs--model-1 .ozs-testimonial__avatar {
    margin-bottom: 8px;
}

.ozs--model-1 .ozs-testimonial__avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.ozs--model-1 .ozs-testimonial__meta {
    margin-top: 12px;
}

/* --- Model 2: Cita centrada --- */
.ozs--model-2 .ozs-testimonial {
    text-align: center;
    padding: 24px;
}

.ozs--model-2 .ozs-testimonial__avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
}

.ozs--model-2 .ozs-testimonial__stars {
    justify-content: center;
}

.ozs--model-2 .ozs-testimonial__meta {
    margin-top: 16px;
}

/* --- Model 3: Tarjeta elevada (img 2) --- */
.ozs--model-3 .oz-testimonial {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    overflow: visible;
}

.ozs--model-3 .ozs-testimonial--card {
    background: var(--oz-card-bg, #fff);
    border: 1px solid var(--oz-card-border, #eee);
    border-radius: var(--oz-card-radius, 12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ozs--model-3 .ozs-testimonial__text {
    flex: 1;
    font-size: 0.95em;
    line-height: 1.6;
    color: var(--oz-text-color, #444);
    margin-bottom: 16px;
}

.ozs--model-3 .ozs-testimonial__stars {
    margin-bottom: 16px;
    font-size: 18px;
}

.ozs--model-3 .ozs-testimonial__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--oz-card-border, #eee);
}

.ozs--model-3 .ozs-testimonial__avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.ozs--model-3 .ozs-testimonial__name {
    font-size: 0.9em;
}

.ozs--model-3 .ozs-testimonial__role {
    font-size: 0.8em;
}

/* --- Model 4: Avatar destacado (img 3) --- */
.ozs--model-4 .ozs__slide {
    padding-top: 44px;
    overflow: visible;
}

.ozs--model-4 .ozs__viewport {
    overflow: visible;
    contain: none;
}

.ozs--model-4 .ozs__track {
    overflow-x: auto;
}

.ozs--model-4 .oz-testimonial {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    overflow: visible;
}

.ozs--model-4 .ozs-testimonial--avatar-top {
    position: relative;
    background: var(--oz-card-bg, #fff);
    border: 1px solid var(--oz-card-border, #eee);
    border-radius: var(--oz-card-radius, 12px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 48px 24px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.ozs--model-4 .ozs-testimonial__avatar-hero {
    position: absolute;
    top: -44px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.ozs--model-4 .ozs-testimonial__avatar-hero img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--oz-card-bg, #fff);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.ozs--model-4 .ozs-testimonial__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 100%;
}

.ozs--model-4 .ozs-testimonial__quote-mark {
    font-size: 48px;
    line-height: 1;
    color: var(--oz-accent, #0cc);
    font-family: Georgia, serif;
    display: block;
}

.ozs--model-4 .ozs-testimonial__quote-mark--open {
    margin-bottom: 4px;
}

.ozs--model-4 .ozs-testimonial__quote-mark--close {
    margin-top: 4px;
}

.ozs--model-4 .ozs-testimonial__name {
    font-size: 1.1em;
    margin-bottom: 4px;
}

.ozs--model-4 .ozs-testimonial__role {
    margin-bottom: 12px;
}

.ozs--model-4 .ozs-testimonial__text {
    font-size: 0.92em;
    line-height: 1.6;
    color: var(--oz-text-color, #555);
    flex: 1;
}

.ozs--model-4 .ozs-testimonial__stars {
    justify-content: center;
    margin-top: 12px;
}

/* --- Model 5: Burbuja / Speech (img 4) --- */
.ozs--model-5 .oz-testimonial {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    overflow: visible;
}

.ozs--model-5 .ozs-testimonial--bubble {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding-bottom: 12px;
}

.ozs--model-5 .ozs-testimonial__bubble {
    position: relative;
    background: var(--oz-card-bg, #fff);
    border: 1px solid var(--oz-card-border, #eee);
    border-radius: var(--oz-card-radius, 16px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 20px;
    flex: 1;
    width: 100%;
}

.ozs--model-5 .ozs-testimonial__bubble::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 32px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--oz-card-bg, #fff);
    filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.04));
}

.ozs--model-5 .ozs-testimonial__stars {
    margin-bottom: 8px;
    font-size: 16px;
}

.ozs--model-5 .ozs-testimonial__name {
    font-size: 1em;
    margin-bottom: 2px;
}

.ozs--model-5 .ozs-testimonial__role {
    font-size: 0.82em;
    margin-bottom: 8px;
}

.ozs--model-5 .ozs-testimonial__text {
    font-size: 0.9em;
    line-height: 1.55;
    color: var(--oz-text-color, #555);
}

.ozs--model-5 .ozs-testimonial__text p:last-child {
    margin-bottom: 0;
}

.ozs--model-5 .ozs-testimonial__avatar-below {
    display: flex;
    align-items: center;
    margin-top: 18px;
    padding-left: 24px;
}

.ozs--model-5 .ozs-testimonial__avatar-below img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--oz-card-bg, #fff);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* =============================================
   WooCommerce Category Carousel
   ============================================= */

.ozs--wc-categories .ozs__slide {
    display: flex;
    align-items: stretch;
}

.ozs-wc-cat {
    --oz-wc-cat-radius: 10px;
    --oz-wc-cat-cta-border: #2ecc71;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    flex: 1;
    text-decoration: none;
    color: #fff;
    border-radius: var(--oz-wc-cat-radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-width: 100%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ozs-wc-cat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.ozs-wc-cat:focus-visible {
    outline: 2px solid var(--oz-wc-cat-cta-border);
    outline-offset: 2px;
}

.ozs-wc-cat__media {
    position: absolute;
    inset: 0;
    background: #1a1a1a;
}

.ozs-wc-cat__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.ozs-wc-cat:hover .ozs-wc-cat__img {
    transform: scale(1.04);
}

.ozs-wc-cat__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1;
    background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
}

.ozs-wc-cat__overlay {
    position: relative;
    z-index: 1;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 28px 14px 16px;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.5) 45%,
        transparent 100%
    );
}

.ozs-wc-cat__title {
    display: block;
    font-size: clamp(0.95rem, 2.6vw, 1.05rem);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    max-width: 100%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.ozs-wc-cat__count {
    display: block;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.ozs-wc-cat__cta {
    display: block;
    margin-top: 6px;
}

.ozs-wc-cat__cta-inner {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    border: 1px solid var(--oz-wc-cat-cta-border);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ozs-wc-cat:hover .ozs-wc-cat__cta-inner {
    background: rgba(0, 0, 0, 0.75);
}

/* =============================================
   Woo Products Theme Slider – wrappers only
   Respects theme structure (ul.products > li.product).
   No card internals (title, badges, qty, buttons, price) styled here;
   no oz-product-card__* classes; design comes 100% from theme/shop.
   ============================================= */

.oz-wc-products-theme {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.oz-wc-products-theme .ozs__viewport {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    overflow-y: hidden;
    padding-inline-end: max(12px, min(28px, calc(var(--ozs-gap, 16px) * 0.85)));
    box-sizing: border-box;
}

.oz-wc-products-theme .ozs--nav-track-wrap .ozs__track-wrap > .ozs__viewport {
    width: auto;
    max-width: none;
    flex: 1 1 auto;
}

.oz-wc-products-theme .ozs__track,
.oz-wc-products-theme .oz-wc-products-theme__track {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding-left: 0;
    list-style: none;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
}

/* Slide = li.product; width from track flex. max-width:100% en ítem flex puede ayudar al tema a “crecer” a todo el carril. */
.oz-wc-products-theme .ozs__slide {
    min-width: 0;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow: hidden;
    max-width: none;
}

/* Reset grid/float only; do not override theme .oz-product-card (display/flex-direction). */
.woocommerce .oz-wc-products-theme ul.products li.product,
.woocommerce-page .oz-wc-products-theme ul.products li.product,
.woocommerce .ozs--wc-tabs ul.products li.product,
.woocommerce-page .ozs--wc-tabs ul.products li.product {
    float: none !important;
    clear: none !important;
    margin: 0 !important;
    /* width 100% rompe el ancho por columna del flex y deja ver un trozo del slide siguiente */
    width: auto !important;
    max-width: none;
}

/*
 * Temas Woo (Storefront, etc.) suelen poner flex/width en li.product con más especificidad que .ozs__slide,
 * p. ej. flex: 1 0 100% en móvil → un producto ocupa todo el carril y solo asoma el siguiente.
 * Forzar el mismo flex que .ozs__slide para respetar --ozs-cols / --ozs-slide-flex-basis.
 */
.woocommerce .oz-wc-products-theme.ozs:not(.ozs--is-stacked-mobile) ul.products li.product.ozs__slide,
.woocommerce-page .oz-wc-products-theme.ozs:not(.ozs--is-stacked-mobile) ul.products li.product.ozs__slide,
/* Tabs Woo: mismo fix si el HTML cacheado aún no tenía oz-wc-products-theme */
.woocommerce .ozs--wc-tabs.ozs:not(.ozs--is-stacked-mobile) ul.products li.product.ozs__slide,
.woocommerce-page .ozs--wc-tabs.ozs:not(.ozs--is-stacked-mobile) ul.products li.product.ozs__slide {
    flex: 0 0 var(
        --ozs-slide-flex-basis,
        calc(
            (100% - (var(--ozs-gap, var(--oz-gap, 16px)) * (var(--ozs-cols, var(--oz-cols, 1)) - 1)) + var(--ozs-slide-epsilon, 0px)) /
                var(--ozs-cols, var(--oz-cols, 1))
        )
    ) !important;
    min-width: 0 !important;
    max-width: none !important;
    width: auto !important;
}

/* Allow theme card content to shrink inside slide; prevent horizontal overflow. */
.oz-wc-products-theme .ozs__slide > * {
    min-width: 0;
    max-width: 100%;
}

.oz-wc-products-theme.ozs--equal-height .ozs__track {
    align-items: stretch;
}

.oz-wc-products-theme.ozs--equal-height .ozs__slide {
    height: auto;
}

.oz-wc-products-theme .ozs__slide .ozl-card {
    height: 100%;
    box-sizing: border-box;
}
