/* =====================================================
   HyA Distribuciones — Custom CSS
   Complementa los estilos del tema HyA
   ===================================================== */

/* WhatsApp flotante: alineado con el botón dinámico #goTop de Amerce */
.hya-whatsapp-float {
    position: fixed;
    right: 70px;
    bottom: 90px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(25, 135, 84, .18);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08), 0 12px 30px rgba(0, 0, 0, .12);
    color: #25d366;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background-color .3s ease;
}

.hya-whatsapp-float:hover {
    color: #fff;
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .34);
    transform: translateY(-5px);
}

.hya-whatsapp-float__icon {
    display: block;
    width: 21px;
    height: 21px;
    fill: currentColor;
}

@media (min-width: 992px) {
    .hya-whatsapp-float {
        right: 100px;
        width: 48px;
        height: 48px;
    }

    .hya-whatsapp-float__icon {
        width: 25px;
        height: 25px;
    }
}

@media (min-width: 1200px) {
    .hya-whatsapp-float {
        bottom: 40px;
    }
}

@media (max-width: 575px) {
    .hya-whatsapp-float {
        right: 66px;
    }
}

/* Topbar refinado */
.tf-top-bar {
    background-color: #1a1a1a;
    padding: 8px 0;
}

.tf-top-bar .tf-top-bar_info {
    color: #cccccc;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.tf-top-bar .tf-top-bar_info:hover {
    color: #ffffff;
}

/* Formulario de cotización */
#cotizacion {
    scroll-margin-top: 100px;
}

.form-contact textarea {
    min-height: 120px;
    resize: vertical;
}

.section-quote-home .quote-home-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
    gap: 48px;
    align-items: center;
}

.section-quote-home .quote-home-content {
    max-width: 560px;
}

.section-quote-home .sect-heading p:last-child {
    margin-bottom: 0;
}

.section-quote-home .quote-home-benefits {
    display: grid;
    gap: 20px;
}

.section-quote-home .quote-home-benefit {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
}

.section-quote-home .quote-home-benefit .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--line);
}

.section-quote-home .quote-home-benefit .icon {
    font-size: 24px;
}

.section-quote-home .quote-home-benefit h6 {
    margin-bottom: 4px;
}

.section-quote-home .quote-home-benefit p {
    margin-bottom: 0;
}

.section-quote-home .quote-home-form-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 40px;
}

.section-quote-home .quote-home-form-heading {
    margin-bottom: 28px;
}

.section-quote-home .quote-home-form-heading h4 {
    margin-bottom: 8px;
}

.section-quote-home .quote-home-form-heading p {
    margin-bottom: 0;
}

.section-quote-home .quote-home-form textarea {
    min-height: 156px;
    resize: vertical;
}

.section-quote-home .quote-home-form .tf-btn {
    gap: 8px;
}

.section-quote-home .quote-home-success {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
    padding: 28px;
    border-radius: 16px;
    background: var(--bg);
}

.section-quote-home .quote-home-success .icon-wrap {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--success);
}

.section-quote-home .quote-home-success .icon {
    font-size: 28px;
}

.section-quote-home .quote-home-success h5 {
    margin-bottom: 8px;
}

.section-quote-home .quote-home-success p {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .section-quote-home .quote-home-wrap {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
    }

    .section-quote-home .quote-home-content {
        max-width: 760px;
    }

    .section-quote-home .quote-home-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .section-quote-home .quote-home-benefits {
        grid-template-columns: 1fr;
    }

    .section-quote-home .quote-home-form-panel {
        border-radius: 16px;
        padding: 24px 20px;
    }
}

@media (max-width: 575px) {
    .section-quote-home .quote-home-benefit {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
    }

    .section-quote-home .quote-home-benefit .icon-wrap {
        width: 44px;
        height: 44px;
    }

    .section-quote-home .quote-home-form-heading {
        margin-bottom: 20px;
    }

    .section-quote-home .quote-home-success {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
        padding: 20px;
    }

    .section-quote-home .quote-home-success .icon-wrap {
        width: 44px;
        height: 44px;
    }

    .section-quote-home .quote-home-success .icon {
        font-size: 22px;
    }
}

.hya-wide-banner {
    --hya-banner-gutter: clamp(18px, 3vw, 36px);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.hya-wide-banner .bn-image {
    aspect-ratio: 1410 / 400;
    border-radius: 20px;
}

.hya-wide-banner::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(90deg, rgba(8, 10, 13, .66) 0%, rgba(8, 10, 13, .48) 34%, rgba(8, 10, 13, .16) 66%, rgba(8, 10, 13, .06) 100%),
        radial-gradient(circle at 24% 54%, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 34%);
}

.hya-wide-banner .bn-image img {
    display: block;
    width: 100%;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover;
    object-position: center;
}

.hya-wide-banner .bn-content {
    left: var(--hya-banner-gutter) !important;
    right: auto !important;
    bottom: var(--hya-banner-gutter) !important;
    z-index: 2;
    box-sizing: border-box;
    width: min(680px, calc(100% - (var(--hya-banner-gutter) * 2)));
    max-width: none;
    padding: 0;
}

.hya-wide-banner .hya-wide-banner-title,
.hya-wide-banner .hya-wide-banner-title:hover {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .42);
}

.hya-wide-banner .hya-wide-banner-title {
    display: block;
    max-width: 100%;
    font-size: clamp(30px, 3.7vw, 50px);
    line-height: 1.04;
    overflow-wrap: anywhere;
}

.hya-wide-banner .hya-wide-banner-desc {
    color: rgba(255, 255, 255, .86);
    max-width: 100%;
    font-size: clamp(15px, 1.45vw, 20px);
    line-height: 1.45;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .38);
}

.hya-wide-banner .btn-action {
    width: fit-content;
    min-width: min(260px, 100%);
    max-width: 100%;
    white-space: normal;
}

@media (max-width: 991px) {
    .hya-wide-banner {
        --hya-banner-gutter: 28px;
    }

    .hya-wide-banner .bn-image {
        aspect-ratio: 16 / 7;
    }

    .hya-wide-banner .bn-content {
        width: min(620px, calc(100% - (var(--hya-banner-gutter) * 2)));
    }

    .hya-wide-banner .hya-wide-banner-title {
        font-size: clamp(28px, 5vw, 42px);
    }
}

@media (max-width: 767px) {
    .hya-wide-banner {
        --hya-banner-gutter: 18px;
    }

    .hya-wide-banner::after {
        border-radius: 20px;
    }

    .hya-wide-banner::before {
        border-radius: 20px;
        background:
            linear-gradient(180deg, rgba(8, 10, 13, .08) 0%, rgba(8, 10, 13, .5) 52%, rgba(8, 10, 13, .78) 100%),
            radial-gradient(circle at 50% 76%, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0) 44%);
    }

    .hya-wide-banner .bn-image {
        aspect-ratio: 4 / 3.5;
    }

    .hya-wide-banner .bn-content {
        width: calc(100% - (var(--hya-banner-gutter) * 2));
    }

    .hya-wide-banner .hya-wide-banner-title {
        margin-bottom: 10px !important;
        font-size: clamp(24px, 8vw, 34px);
        line-height: 1.06;
    }

    .hya-wide-banner .hya-wide-banner-desc {
        margin-bottom: 18px !important;
        font-size: 15px;
        line-height: 1.35;
    }

    .hya-wide-banner .btn-action {
        min-width: 0;
        width: 100%;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .hya-wide-banner .bn-image {
        aspect-ratio: 3 / 4;
    }

    .hya-wide-banner .hya-wide-banner-title {
        font-size: clamp(22px, 8.4vw, 30px);
    }

    .hya-wide-banner .hya-wide-banner-desc {
        font-size: 14px;
        line-height: 1.35;
    }
}

/* Wishlist */
.hya-wishlist-trigger {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
}

.hya-wishlist-trigger .icon-HeartStraight,
.hya-wishlist-trigger .icon-HeartStraight::before {
    color: currentColor;
}

.hya-wishlist-trigger.is-liked .icon-HeartStraight,
.hya-wishlist-trigger.is-liked .icon-HeartStraight::before {
    color: var(--primary) !important;
}

.card-product .hya-wishlist-trigger.is-liked {
    color: var(--text);
}

.tf-product-extra-link .hya-wishlist-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 24px;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    appearance: none;
}

.tf-product-extra-link .hya-wishlist-trigger .icon {
    font-size: 20px;
    color: inherit;
}

.tf-product-extra-link .hya-wishlist-trigger.is-liked {
    color: inherit;
}

/* Footer */
.footer-list_item {
    transition: color 0.2s;
}

.footer-bottom .hya-footer-credit {
    flex: 1;
    text-align: center;
}

/* Preloader */
.preload-logo .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f0f0f0;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile menu: keep page content from scrolling behind the offcanvas */
@media (max-width: 1199px) {

    html.hya-mobile-menu-open,
    body.hya-mobile-menu-open {
        overflow: hidden;
        overscroll-behavior: none;
    }

    body.hya-mobile-menu-open {
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
    }

    .canvas-mb.offcanvas {
        top: 0;
        bottom: 0;
        height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
    }

    .canvas-mb .canvas-body {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }

    .tf-toolbar-bottom {
        bottom: 0;
        z-index: 250;
        padding-bottom: calc(15px + env(safe-area-inset-bottom));
    }
}

/* Estilos para el texto enriquecido de descripciones (listas y viñetas) */
.desc_info ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.desc_info ul li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
}

.desc_info ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.desc_info ol li {
    list-style-type: decimal;
    margin-bottom: 0.5rem;
}

.desc_info p {
    margin-bottom: 1rem;
}

/* Cuenta / pedidos — overrides sobre Winter Mall con estructura del tema */
.account-order-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.order-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.order-summary-line:last-of-type {
    border-bottom: 0;
}

.account-address-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
}

.address-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.address-card-badges {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.account-empty-state {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
}

.mall-order-details__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.mall-order-details__detail h5 {
    margin-bottom: 8px;
}

.mall-order-details__product-list .mall-table {
    width: 100%;
}

@media (max-width: 767px) {

    .address-card-head,
    .order-summary-line {
        align-items: flex-start;
        flex-direction: column;
    }

    .mall-order-details__row {
        grid-template-columns: 1fr;
    }
}

/* Carrito / checkout Mall con UI del tema */
.hya-cart .tf-table-page-cart-wrap {
    overflow-x: auto;
}

.hya-cart .tf-table-page-cart {
    width: 100%;
}

.hya-cart .tf-cart_item .img-prd {
    flex: 0 0 100px;
}

.hya-cart .tf-cart_item .img-prd img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.hya-cart .wg-quantity {
    display: inline-flex;
    max-width: 100px;
    padding: 0;
}

.hya-cart .wg-quantity select {
    width: 100%;
    min-width: 72px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 12px;
    background: var(--white);
}

.hya-cart .box-order-summary .mall-discount-applier {
    margin: 20px 0;
}

.hya-cart .box-order-summary .order-summary-line.total-order {
    border-bottom: 0;
}

.hya-remove-button {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 13px;
    line-height: 20px;
    text-decoration: underline;
    cursor: pointer;
}

.hya-remove-button:hover {
    color: var(--primary);
}

#shoppingCart .canvas-wrapper,
#shoppingCart .wrap,
.hya-mini-cart,
.hya-mini-cart .tf-mini-cart-wrap,
.hya-mini-cart .tf-mini-cart-main {
    min-height: 0;
}

#shoppingCart .canvas-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#shoppingCart .wrap,
.hya-mini-cart,
.hya-mini-cart .tf-mini-cart-wrap,
.hya-mini-cart .tf-mini-cart-main {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

#shoppingCart .wrap {
    overflow: hidden;
}

.hya-mini-cart-empty {
    display: grid;
    gap: 16px;
    padding: 24px;
    text-align: center;
}

.hya-mini-cart-empty .icon {
    font-size: 44px;
}

.hya-mini-cart .tf-mini-cart-sroll {
    position: relative;
    inset: auto;
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    padding-bottom: 16px;
}

.hya-mini-cart .tf-mini-cart-bottom-wrap {
    position: static;
    flex: 0 0 auto;
    padding-top: 20px;
    background: var(--white);
}

.hya-mini-cart .tf-mini-cart-view-checkout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hya-checkout-progress {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.hya-checkout-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
}

.hya-checkout-step span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-weight: 600;
}

.hya-checkout-step.is-active,
.hya-checkout-step.is-done {
    border-color: var(--primary);
}

.hya-checkout-step.is-active span,
.hya-checkout-step.is-done span {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.hya-checkout-heading {
    margin-bottom: 24px;
}

.hya-method-list {
    display: grid;
    gap: 16px;
}

.hya-method-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.hya-method-card.is-active {
    border-color: var(--primary);
    background: var(--bg-2);
}

.hya-method-radio {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.hya-method-card.is-active .hya-method-radio {
    border: 5px solid var(--primary);
}

.hya-method-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
}

.hya-method-title img {
    max-width: 120px;
    max-height: 36px;
    object-fit: contain;
}

.hya-method-details {
    margin-top: 12px;
}

.hya-customer-methods {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.hya-customer-method {
    display: block;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.hya-checkout-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.hya-checkout-info section,
.hya-address-card,
.hya-address-change {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.hya-checkout-info h5 {
    margin-bottom: 12px;
}

.hya-summary-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hya-summary-method img {
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
}

.hya-address-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.hya-address-selector,
.hya-address-card,
.hya-address-change {
    min-width: 0;
    max-width: 100%;
}

.hya-address-card p {
    overflow-wrap: anywhere;
}

.hya-address-select {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0 44px 0 14px;
    background-color: var(--white);
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hya-address-change [data-validate-for="id"] {
    margin-top: 8px;
    color: var(--primary);
}

.hya-checkout-summary .hya-cart>.row {
    display: block;
}

.hya-checkout-summary .hya-cart .col-xl-8,
.hya-checkout-summary .hya-cart .col-xl-4 {
    width: 100%;
    max-width: 100%;
}

.hya-checkout-summary .hya-cart .form-shop-cart {
    padding-right: 0;
}

.hya-checkout-summary .hya-cart .tf-table-page-cart thead,
.hya-checkout-summary .hya-cart .tf-table-page-cart td:nth-child(2),
.hya-checkout-summary .hya-cart .tf-table-page-cart td:nth-child(3),
.hya-checkout-summary .hya-cart .tf-table-page-cart th:nth-child(2),
.hya-checkout-summary .hya-cart .tf-table-page-cart th:nth-child(3) {
    display: none;
}

.hya-checkout-summary .hya-cart .tf-cart_item .cart_product {
    gap: 12px;
}

.hya-checkout-summary .hya-cart .tf-cart_item .img-prd {
    flex-basis: 72px;
    max-width: 72px;
}

.hya-checkout-summary .hya-cart .tf-cart_item .img-prd img {
    height: 90px;
}

.hya-checkout-summary .hya-cart .fl-sidebar-cart {
    margin-top: 20px;
}

.hya-checkout-summary .hya-cart .box-order-summary {
    padding: 0;
    background: transparent;
}

.hya-checkout-overlay {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.72);
}

.hya-checkout-result {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.hya-checkout-result .icon {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 48px;
}

.hya-result-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 991px) {
    .hya-checkout-info-grid {
        grid-template-columns: 1fr;
    }

    .hya-checkout-summary {
        margin-top: 24px;
    }
}

@media (max-width: 767px) {
    .hya-checkout-progress {
        grid-template-columns: 1fr;
    }

    .hya-method-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .hya-method-card>.tf-btn {
        grid-column: 1 / -1;
        width: 100%;
    }

    .hya-method-title,
    .hya-summary-method {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =====================================================
   Menú Grande Dinámico (Tienda Mega Menu)
   ===================================================== */
@media (min-width: 1200px) {
    .sub-menu.mega-menu.hya-mega-menu {
        position: absolute;
        left: -150px;
        right: auto;
        width: max-content;
        max-width: 95vw;
        margin: unset;
        padding-bottom: 32px;
    }

    .menu-item:hover .sub-menu.mega-menu.hya-mega-menu {
        transform: translateY(0);
    }
}

.hya-mega-menu-inner {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.hya-mega-menu-categories {
    display: flex;
    gap: 30px;
}

.hya-mega-menu-col {
    width: 180px;
    flex: 0 0 180px;
}

.hya-mega-menu-banner {
    width: 280px;
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
}

.hya-mega-menu-banner .box-image_v01 {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.hya-mega-menu-banner .box-image_content .title {
    font-size: 20px !important;
    line-height: 26px !important;
    text-align: center;
    padding: 0 16px;
}


/* =====================================================
   Ajuste de Altura Uniforme para Valores de Marca (Home)
   ===================================================== */
.infiniteSlide-policy-v2 .policy-image {
    width: 140px;
    height: 80px;
    border-radius: 40px; /* 50% de 80px */
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.infiniteSlide-policy-v2 .policy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .infiniteSlide-policy-v2 .policy-image {
        width: 105px;
        height: 60px;
        border-radius: 30px; /* 50% de 60px */
    }
}


