/*
##########################################
   MENU CART
##########################################
*/
.custom-cart-wrapper {
    position: relative;
}

.mini-cart-dropdown {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 300px;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
}

.custom-cart-wrapper:hover .mini-cart-dropdown {
    display: block;
}

.mini-cart-empty {
    padding: 10px 5px;
}

.mini-cart-items {
    list-style: none;
    margin: 0;
    padding: 10px;
}

.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.mini-cart-img img {
    max-width: 70px !important;
    width: 70px !important;
    height: 70px !important;
    object-fit: cover;
}

.mini-cart-details {
    flex-grow: 1;
}

.mini-cart-actions {
    margin: 0;
    padding: 10px;
}

.mini-cart-actions .buttons__item {
    width: 100%;
}

.mini-cart-actions .button--shop {
    display: block !important;
    height: auto !important;
    line-height: 1.2;
    font-size: 14px !important;
    font-weight: 400 !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.btn-cart,
.btn-checkout {
    display: inline-block;
    padding: 10px;
    margin: 10px 5px;
    text-align: center;
    background: #333;
    color: white;
    text-decoration: none;
    font-size: 14px;
}




/*
##########################################
   SINGLE PRODUCT
##########################################
*/
.single-product {
    overflow-x: hidden;
}


/*
* GENERAL PRODUCTS STYLES
*/
.sales__price {
    margin-right: 8px;
}

.normal__price-on-sale {
    text-decoration: line-through;
}

.single-product .stock.in-stock {
    color: green;
}

.product__prices {
    font-weight: 500;
}

.single-product .stock {
    margin: 12px 0;
}

.single-product .added_to_cart.wc-forward {
    /* display: block !important; */
    display: none !important;
    color: #999;
    text-decoration: underline;
}

.single-product .floating--add-to-cart .added_to_cart.wc-forward {
    position: absolute;
    top: 50%;
    right: 26%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1200px) {
    .single-product .floating--add-to-cart .added_to_cart.wc-forward {
        right: 30%;
    }
}

@media screen and (max-width: 794px) {
    .single-product .floating--add-to-cart .added_to_cart.wc-forward {
        display: none !important;
    }
}


/*
* SINGLE PRODUCT GALLERY
*/
.product--gallery-section {
    position: relative;
    padding-top: 35px;
}

@media (min-width: 1110px) {
    .product--gallery-section {
        position: sticky;
        top: 80px;
    }
}

.product__gallery {
    max-width: 800px;
    align-items: start;
}

.product__gallery-main {
    width: 600px;
    height: 600px;
    position: relative;
}

.product__gallery-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background: #f7f7f7;
}

.product__gallery-thumbnails {
    width: 100px;
    height: 600px;
    position: relative;
    overflow: hidden;
    cursor: grab;
}

.product__gallery-thumbnails .swiper-slide {
    height: 100px;
    width: 100px;
    opacity: 0.5;
    margin-bottom: 10px;
}

.product__gallery-thumbnails .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #000;
    border-radius: 4px;
}

.video-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.video-thumb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-thumb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transform: translate(-45%, -50%);
    z-index: 3;
}

.product__gallery-thumbnails .swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
}

/* Botones de desplazamiento vertical */
.swiper-button-up,
.swiper-button-down {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    display: none;
    /* Por defecto, ocultar las flechas */
}


.swiper-button-up span,
.swiper-button-down span {
    font-size: 20px;
    /* Ajusta el tamaño de las flechas */
}

.swiper-button-up {
    bottom: 0;
    left: 0%;
}

.swiper-button-down {
    bottom: 0px;
    left: calc(0px + 40px);
}

.product__gallery-main .swiper-slide iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background: #f7f7f7;
    display: block;
}

.product__gallery-main .video-frame-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #f7f7f7;
    position: relative;
}

.product__gallery-main .video-frame-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.video-slide {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #f7f7f7;
}

.video-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-slide::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-slide::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 16px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: translate(-45%, -50%);
    z-index: 3;
}


.apps--list {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 4px;
}

.product__card .apps--list {
    top: 20px;
}

.product__card .apps--list img {
    width: 30px;
}



/* .product__gallery-thumbnails .swiper-slide img:hover {
    cursor: pointer;
} */

.swiper-scroll-shadow-top,
.swiper-scroll-shadow-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-scroll-shadow-top {
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), transparent);
}

.swiper-scroll-shadow-bottom {
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
}

.swiper-shadow-visible {
    opacity: 1;
}

.woocommerce-product-details__short-description {
    margin: 12px 0;
}

.product__benefits {
    margin: 20px 0;
}

.product__benefits .product__benefits-item {
    margin-bottom: 12px;
}

.product__benefits .product__benefits-item:last-of-type {
    margin-bottom: 0;
}

.product__benefits .product__benefits-item .title {
    font-weight: 600;
}

.single-product .cart {
    margin: 30px 0;
}

.product__large-description {
    margin-bottom: 20px;
}


@media screen and (max-width: 1200px) {
    .product__gallery-main {
        width: 500px;
        height: 500px;
    }

    .product__gallery-thumbnails {
        height: 500px;
    }
}

@media screen and (max-width: 960px) {

    .product__gallery-main {
        width: 100%;
        height: 100%;
    }

    .product__gallery {
        flex-flow: column wrap;
    }

    .product__gallery-main {
        order: 1;
    }

    .product__gallery-thumbnails {
        width: 100%;
        order: 2;
        height: auto;
    }

    .product__gallery-thumbnails .swiper-slide {
        width: auto !important
    }

    .swiper-button-up,
    .swiper-button-down {
        display: none !important;
    }

}

@media screen and (max-width: 790px) {
    .product__gallery-main {
        width: 400px;
        height: 400px;
    }
}

@media screen and (max-width: 580px) {
    .product--gallery-section {
        position: relative;
        left: 50%;
        right: 50%;
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
        overflow-x: hidden;
    }

    .product__gallery-main {
        width: 300px;
        height: 300px;
    }

    .product__gallery-thumbnails .swiper-slide-thumb-active {
        border: 1px solid #000;
    }

}


/*
* SINGLE PRODUCT VARIATIONS
*/
.section--single-product.variation,
.slider--features-product.variation,
.section--product-features.variation,
.banner--single-product.variation,
.section--cross-sells.variation,
.section--related.variation,
.slider--features-product.hidden,
.section--single-product.hidden,
.section--product-features.hidden,
.banner--single-product.hidden,
.section--related.hidden,
.section--cross-sells.hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40px);
    transition: transform 0.4s ease;
}

.section--single-product.variation.active,
.slider--features-product.variation.active,
.section--product-features.variation.active,
.banner--single-product.variation.active,
.section--cross-sells.variation.active,
.section--related.variation.active,
.slider--features-product.active,
.section--single-product.active,
.section--related.active,
.section--cross-sells.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating--add-to-cart.variation,
.floating--add-to-cart.hidden {
    display: none;
}

.floating--add-to-cart.variation.active,
.floating--add-to-cart.active {
    display: block;
}

.product__variation-thumbs {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.product__variation-thumbs .product__thumb {
    margin: 20px 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    cursor: pointer;
}

.product__variation-thumbs .product__thumb.current {
    border: 2px solid var(--text-gray-color);
    cursor: inherit;
}

.product__variation-thumbs .product__thumb img {
    position: relative;
    z-index: -1;
}


.producto__info .product__benefits p {
    font-size: 18px !important;
}



/*
* SLIDER FEATURES SINGLE PRODUCT
*/
.slider__features {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.slider__features .title__section {
    /* flex-basis: calc(30% - 30px); */
    flex-basis: calc(40% - 30px);
}

.slider__features .slides.swiper {
    flex-basis: calc(80% - 30px);
    margin-right: calc(50% - 50vw);
    padding-bottom: 70px;
}

.slider__features .slide__card {
    position: relative;
    /* max-width: 600px; */
    width: 100%;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
}

.slider__features .slide__card:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider__features .slide__card .content {
    position: absolute;
    z-index: 2;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(200px);
    transition: all 0.3s ease;
}

.slider__features .slide__card .content .subtitle {
    text-transform: uppercase;
    font-weight: 500;
}

.slider__features .slide__card .content .title {
    font-weight: 500;
}

.slider__features .slide__card .content #more {
    text-decoration: underline;
}


.slider__features .slide__card:hover {
    cursor: pointer;
}

.slider__features .slide__card:hover:after {
    opacity: 1;
}

.slider__features .slide__card:hover .content {
    transform: translateY(0px);
}

.slider__features .slide__card .bg__img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.slider__features .slide__card .bg__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slider__nav {
    position: absolute;
    bottom: 30px;
    right: 20px;
    width: 150px;
}

.slider__nav .swiper-button-prev,
.slider__nav .swiper-button-next {
    background-color: var(--black-color);
}

.slider__nav .swiper-button-prev:hover,
.slider__nav .swiper-button-next:hover {
    background-color: white;
}

.slider__nav .swiper-button-prev::after,
.slider__nav .swiper-button-next::after {
    color: white;
}

.slider__nav .swiper-button-prev:hover::after,
.slider__nav .swiper-button-next:hover::after {
    color: var(--black-color);
}


@media screen and (max-width: 1110px) {
    .slider__features {
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }

    .slider__features .title__section {
        flex-basis: 100%;
    }

    .slider__features .slides.swiper {
        flex-basis: 100%;
        margin-right: auto;
    }
}

@media screen and (max-width: 960px) {

    .slider__features .slide__card .content {
        position: relative;
        left: 0;
        right: 0;
        padding: 20px 10px;
        top: 30%;
        transform: none;
    }

    .slider__features .slide__card:hover .content {
        transform: none;
    }

    .slider__features .slide__card:after {
        opacity: 1;
    }
}


/*
* SLIDER FEATURES POPUP SINGLE PRODUCT
*/
.slider--popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.slider--popup.active {
    display: flex;
}

.slider-popup__overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.slider-popup__content {
    position: relative;
    background: white;
    z-index: 1;
    width: 800px;
    height: 500px;
    border-radius: 8px;
}

.features-popup-swiper {
    height: 100%;
}

.slider-popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 2;
}

.features-popup-slide {
    padding: 30px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.popup__slide-left {
    flex-basis: calc(50% - 20px);
}

.popup__slide-left .bg__img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 50%;
    height: 100%;
}

.popup__slide-left .bg__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup__slide-right {
    flex-basis: calc(50% - 20px);
}

.popup__slide-right .subtitle {
    text-transform: uppercase;
    font-weight: 500;
}

.popup__slide-right .title {
    font-weight: 500;
}

.slider--popup .popup__nav {
    width: 140px;
    position: absolute;
    bottom: 40px;
    right: 0;
}

@media screen and (max-width: 960px) {
    .slider-popup__content {
        width: 90%;
        height: auto;
    }

    .features-popup-slide {
        flex-flow: column wrap;
    }

    .popup__slide-left {
        flex-basis: 100%;
    }

    .popup__slide-right {
        flex-basis: 100%;
    }

    .popup__slide-left .bg__img {
        position: relative;
        width: 100%;
    }

    .slider--popup .popup__nav {
        bottom: 20px;
    }
}



/*
* VARIABLE PRODUCT
*/
.producto__info-container.variable #custom-dynamic-price {
    visibility: hidden;
    min-height: 1em;
    /* evita el salto de maquetaciÃ³n */
}

.variations_form {
    margin: 0 !important;
    margin-bottom: 30px !important;
}

.image-variable-item {
    width: 75px !important;
    height: 75px !important;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).color-variable-item.selected:not(.no-stock) .variable-item-contents:before,
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).image-variable-item.selected:not(.no-stock) .variable-item-contents:before {
    background-image: none !important;
}


/*
* BANNERS PRODUCT
*/
.product__banners {
    margin: 20px 0 0;
}

.product__banner-item .banner {
    position: relative;
    height: 90px;
    margin-bottom: 10px;
}

.product__banner-item .banner:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(239deg, rgba(255, 255, 255, 0) 15%, rgba(0, 0, 0, 0.82) 100%);
}

.product__banner-item .banner img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product__banner-item .banner .banner__content {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    z-index: 2;
}

.product__banner-item .banner.banner--kinomap .banner__content {
    color: var(--kinomap);
}

.product__banner-item .banner.banner--bkool .banner__content {
    color: var(--bkool);
}

.product__banner-item .banner.banner--exercycle .banner__content {
    color: #ffffff;
}

@media screen and (max-width: 560px) {
    .product__banner-item .banner img {
        object-position: right;
    }

    .product__banner-item .banner .banner__content {
        font-size: 16px;
    }
}


/*
* FEATURES PRODUCT TABLE
*/
.section--product-features .container {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.section--product-features .container .product--features-title {
    flex-basis: calc(30% - 40px);
}

.section--product-features .container .product--features {
    flex-basis: calc(70% - 40px);
}

.product--features .text {
    margin-top: 40px;
}


.product--features table {
    margin-top: 20px;
}

.product__features-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.product__features-table td:first-child {
    width: 50%;
}

.product__features-table td:last-child {
    width: 50%;
}

.product__features-table td {
    overflow-wrap: anywhere;
}

@media screen and (max-width: 960px) {
    .section--product-features .container {
        flex-flow: column wrap;
        gap: 20px;
    }
}


/*
* PRODUCT DOWNLOADS
*/
.product--downloads {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px;
}

.product--downloads>div {
    flex-basis: calc(33.33% - 20px);
    text-align: center;
}

.product--downloads>div img {
    display: block;
    width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
}

.product--downloads>div p {
    margin-bottom: 8px;
}



/*
* ADD TO CART NOTIFICATION
*/
.product--cart-notification {
    display: flex;
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    max-width: 350px;
    height: 100px;
    display: none;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product--cart-notification.active {
    display: flex;
    opacity: 1;
}

.product--cart-notification img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.product__cart-notification-title {
    font-weight: bold;
    font-size: 14px;
}

.product__cart-notification-desc {
    font-size: 13px;
    color: #2e7d32;
    background-color: #b9f6ca;
    padding: 1px 10px;
    border-radius: 5px;
    display: block;
    display: inline-block;
}


/*
* ADD TO CART FIXED BOTTOM
*/
.floating--add-to-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease-in-out;
}


.floating--add-to-cart.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating__add-to-cart-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    text-align: left;
}

.floating--add-to-cart button.button--appearance-primary {
    max-width: 300px;
    /* box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; */
}

.floating--add-to-cart .added_to_cart.wc-forward {
    display: none;
}

@media screen and (max-width: 960px) {
    .floating--add-to-cart {
        padding: 10px 0;
    }

    .floating__add-to-cart-container {
        gap: 20px;
    }

    .floating__add-to-cart-container.container--l {
        padding-inline: min(4vw, 20px);
    }

    .floating__add-to-cart-container p {
        font-size: 15px !important;
        line-height: 1.5;
    }
}


/*
##########################################
   SHOP LIST
##########################################
*/

@media (min-width: 960px) {
    .top--shop-list {
        position: sticky;
        top: 50px;
        z-index: 2;
        background: #fff;
        transition: all 0.4s ease-in-out;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
    }

    .top--shop-list.active {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding-bottom: 5px;
        padding-top: 5px;
    }

    .top--shop-list .shop__title {
        transition: opacity 0.45s ease-in-out;
    }

    .top--shop-list.active .shop__title {
        opacity: 0;
    }
}


.top--shop-list .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top--shop-list .container .shop__items {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}

.top--shop-list .container .shop__items .facetwp-facet {
    margin-bottom: 0;
}

.top--shop-list .container .shop__items #comparador--shop,
.top--shop-list .container .shop__items .shop--filter {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    cursor: pointer;
}

.top--shop-list .container .shop__items .icon {
    font-size: 32px;
}

.top--shop-list .container .shop__items #comparador--shop .comparar-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: black;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    height: 20px;
    width: 20px;
    text-align: center;
}


.product--benefits {
    margin: 10px 0;
}

.product--benefits p {
    margin-bottom: 5px;
}

.product--benefits .benefit__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparador-card .product--benefits .benefit__item {
    gap: 4px;
}

.product--benefits .benefit__item strong {
    font-size: 12px;
}

.single-product .product--benefits .benefit__item strong {
    font-size: inherit;
}

.product--benefits .benefit__item p {
    padding: 0;
    margin: 0;
}

.comparar-checkbox-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comparar-checkbox {
    transform: scale(1.2);
}


#filters--shop-footer,
#comparador--shop-footer {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 5px;
    opacity: 0;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    visibility: hidden;
    transform: translateY(50px);
    transition: all 0.35s ease;
    border-radius: px;
    background-color: white;
    z-index: 99;
    box-shadow: 1px 6px 12px -3px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 1px 6px 12px -3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 1px 6px 12px -3px rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

#filters--shop-footer {
    bottom: 100px;
    transform: translateY(100px);
}

#filters--shop-footer .shop--filter {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#comparador--shop-footer a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#comparador--shop-footer .icon {
    font-size: 32px;
}

#comparador--shop-footer .comparar-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: black;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    height: 20px;
    width: 20px;
    text-align: center;
}

.show--btn-filter {
    display: none;
    margin-top: 30px;
}

.show--btn-filter button {
    width: 100%;
}

@media screen and (max-width: 960px) {

    #filters--shop-footer.active,
    #comparador--shop-footer.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


    #filters--shop-footer,
    #comparador--shop-footer {
        right: 25px;
        padding: 5px;
        width: 40px;
        height: 40px;
    }

    #filters--shop-footer {
        bottom: 80px;
        transform: translateY(80px);
    }

    #filters--shop-footer .icon,
    #comparador--shop-footer .icon {
        font-size: 24px;
    }

    .show--btn-filter {
        display: block;
    }

}


.top--shop-list .container .shop__items .shop--filter .filter__show {
    display: block;
}

.top--shop-list .container .shop__items .shop--filter .filter__hidden {
    display: none;
}

body.open--filters .top--shop-list .container .shop__items .shop--filter .filter__hidden {
    display: block;
}

body.open--filters .top--shop-list .container .shop__items .shop--filter .filter__show {
    display: none;
}


.shop--container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.shop--container .shop__filters {
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-500px);
    display: none;
    transition: all 0.4s ease;
}

body.open--filters .shop--container .shop__filters {
    flex-basis: calc(25% - 50px);
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
    display: block;
}

@media (min-width: 960px) {
    body.open--filters .shop--container .shop__filters {
        /* STICKY ON DESKTOP*/
        position: sticky;
        top: 120px;
        /* top: var(--filters-top, 70px); */
        /* clave: limitar altura y permitir scroll vertical */
        /*         max-height: calc(100vh - var(--filters-top, 70px) - 16px); */
        overflow-y: auto;
        /* si el padre es flex */
        align-self: flex-start;
        /* suaviza el scroll en iOS */
        -webkit-overflow-scrolling: touch;
        /* evita que el scroll interno arrastre el body */
        overscroll-behavior: contain;
        max-height: calc(100vh - 120px - 16px);
        /* 120px = tu top, 16px para margen inferior opcional */
    }
}

.shop--container .shop--list {
    flex-basis: 100%;
}

body.open--filters .shop--container .shop--list {
    flex-basis: calc(75% - 50px);
}

.product__list {
    margin: 50px 0;
}

.product__list .product__thumbnail img {
    width: 100%;
    height: auto;
}

.product__card img {
    transition: transform 0.4s ease-in-out;
}

.product__card:hover img {
    transform: scale(1.02);
}

.product__list .product__content .title {
    font-weight: 600;
    margin-bottom: 10px;
}

.product__list .product__card-footer {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.product__card {
    position: relative;
    border: 1px solid lightgrey;
    padding: 20px;
    border-radius: 14px;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.product__card .product__thumbnail {
    border-radius: 5px;
    overflow: hidden;
    padding-top: 35px;
}

.comparar-checkbox-label input[type="checkbox"] {
    background: white !important;
    border-color: var(--black-color) !important;
    border-radius: 3px !important;
    position: relative !important;
    transition: 0.15s !important;
}

.comparar-checkbox-label input[type="checkbox"]:checked {
    background-color: var(--black-color) !important;
}

.comparar-checkbox-label input[type="checkbox"]::after {
    font-family: 'Material Symbols Outlined';
    content: "check";
    -webkit-font-feature-settings: 'liga';
    font-size: 38px;
    position: absolute;
    top: calc(50% - 0px);
    left: calc(50% + 0px);
    transform: translateX(-50%) translateY(-50%) scale(0.5);
    transition: 0.15s;
    pointer-events: none;
}

.comparar-checkbox-label input[type="checkbox"]:checked::after {
    color: white;
}

.comparar-msg {
    position: absolute;
    bottom: -40px;
    left: 0px;
    width: auto;
    padding: 7px 5px;
    border-radius: 5px;
    border: 1px solid lightgray;
    background: white;
    font-size: 14px;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.load--more-products {
    margin: 0 auto;
}

body.open--filters .load--more-products {
    width: 100%;
    text-align: right;
}


/* FACETWP STYLES */
.shop__filters.facetwp-filters .facetwp__item {
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.shop__filters.facetwp-filters .facetwp-facet {
    margin-bottom: 0;
}

.facetwp-checkbox {
    background: url('../img/checkbox.png') 0 50% no-repeat !important;
    padding-left: 30px !important;
}

.facetwp-checkbox.checked {
    background: url('../img/checkbox-check.png') 0 50% no-repeat !important;
}

.filter__is-smartbike .facetwp-checkbox {
    /* background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 576 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M384 128c70.7 0 128 57.3 128 128s-57.3 128-128 128H192c-70.7 0-128-57.3-128-128s57.3-128 128-128H384zM576 256c0-106-86-192-192-192H192C86 64 0 150 0 256S86 448 192 448H384c106 0 192-86 192-192zM192 352a96 96 0 1 0 0-192 96 96 0 1 0 0 192z" fill="%23777777"/></svg>') !important; */
    background-image: url('../img/toggle-off.svg') !important;
    background-size: 30px 25px !important;
    background-position: left center;
    padding-left: 40px !important;
}

.filter__is-smartbike .facetwp-checkbox.checked {
    /* background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 576 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M192 64C86 64 0 150 0 256S86 448 192 448H384c106 0 192-86 192-192s-86-192-192-192H192zm192 96a96 96 0 1 1 0 192 96 96 0 1 1 0-192z" fill="%23777777" /></svg>') !important; */
    background-image: url('../img/toggle-on.svg') !important;
}

.facetwp-counter {
    display: none !important;
}

/* Contenedor general del slider */
.facetwp-facet-product_prices_filter .noUi-target {
    border: none;
    box-shadow: none;
    background: transparent;
    margin-top: 12px;
}


/* Barra de fondo (zona fuera del rango seleccionado) */
.facetwp-facet-product_prices_filter .noUi-connects {
    background: #E5E7EB;
    height: 8px;
    border-radius: 4px;
}

/* Barra activa (zona seleccionada) */
.facetwp-facet-product_prices_filter .noUi-connect {
    background: var(--black-color);
    height: 8px;
    border-radius: 4px;
}

/* Handles (extremos deslizables): bolas negras centradas */
.facetwp-facet-product_prices_filter .noUi-handle {
    background: var(--black-color);
    border: none;
    border-radius: 50%;
    width: 20px !important;
    height: 20px !important;
    top: -5px !important;
    box-shadow: none;
    cursor: grab;
}

.facetwp-slider-reset {
    border: 1px solid #d9d9d9;
    border-radius: 3px;
    background: #fff;
    box-shadow: none !important;
    padding: 2px 5px !important;
    cursor: pointer;
    font-size: 15px;
}

.mobile--close {
    display: none;
}

/*
* BANNERS
*/
/* .card--shop-loop {
    max-height: 550px;
} */


@media screen and (max-width: 960px) {
    .top--shop-list .container {
        flex-flow: column;
        align-items: flex-start;
        gap: 30px;
    }

    .top--shop-list .container .shop__items p {
        display: none !important;
    }

    .product__card .product__thumbnail {
        padding-top: 0;
    }


    body.open--filters {
        overflow: hidden;
    }

    body.open--filters .shop--container .shop__filters {
        position: fixed;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        z-index: 999;
        background: white;
        overflow: scroll;
        padding: 20px;
    }

    .shop--container .shop__filters .mobile--close {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 5px;
        margin-bottom: 18px;
        font-size: 21px;
    }

    .shop--container .shop__filters .mobile--close span {
        font-size: 26px;
    }
}



/*
##########################################
   COMPARADOR PAGE
##########################################
*/
.comparador-formulario {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0 40px;
}

.comparador-formulario select {
    max-width: 280px;
}

/* Contenedor responsive */
.comparador-tabla-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.tabla-comparador {
    border-collapse: collapse;
    width: 100%;
    min-width: 600px;
}

.tabla-comparador td,
.tabla-comparador th {
    padding: 10px;
    text-align: left;
    vertical-align: top;
    border: 1px solid #eee;
}

.tabla-comparador td:first-child,
.tabla-comparador th:first-child {
    /* position: sticky;
    left: -1px; */
    background: #fff;
    z-index: 2;
    min-width: 140px;
    max-width: 160px;
}

.tabla-comparador td:not(:first-child),
.tabla-comparador th:not(:first-child) {
    min-width: 220px;
    max-width: 220px;
    vertical-align: top;
}


@media screen and (max-width: 960px) {
    .comparador-formulario {
        flex-flow: column wrap;
        align-items: flex-start;
        gap: 10px;
        margin: 20px 0 30px;
    }

    .comparador-formulario select {
        max-width: 280px;
    }

    .tabla-comparador img {
        max-width: 100px !important;
    }

    .tabla-comparador td {
        font-size: 14px;
    }
}

@media screen and (max-width: 560px) {

    .tabla-comparador td:first-child,
    .tabla-comparador th:first-child {
        font-size: 12px;
        min-width: 70px;
        max-width: 70px;
    }

    .tabla-comparador td:not(:first-child),
    .tabla-comparador th:not(:first-child) {
        min-width: 100px;
        max-width: 100px;
    }

    .comparador-formulario select {
        width: 100%;
        max-width: 100%;
    }
}



/* .comparador-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.comparador-card {
    border: 1px solid lightgrey;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.comparador-card .apps--list {
    top: 8px;
    right: 5px;
}

.comparador-card .apps--list img {
    width: 25px;
}

.comparador-card img {
    max-width: 100%;
    height: auto;
}

.comparador-card h3 {
    font-size: 16px;
    margin: 10px 0;
}

.btn-agregar-nuevo {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 38px;
    cursor: pointer;
}

.btn-eliminar-comparador {
    margin-top: 10px;
    cursor: pointer;
}


.selector-interno select {
    margin-top: 5px;
    width: 100%;
}

.btn-agregar-interno {
    margin-top: 20px;
}

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--black-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

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

/* @media (max-width: 768px) {
    .comparador-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .comparador-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .comparador-card {
        padding: 12px;
        border-radius: 10px;
    }

    .comparador-card h3 {
        font-size: 14px;
    }

    .comparador-card img {
        max-width: 80%;
        height: auto;
    }
} */

/* @media (max-width: 768px) {
    .comparador-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .comparador-card {
        min-width: 80%;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
} */


.comparador-selector-externo {
    display: flex;
    flex-flow: column nowrap;
    gap: 14px;
    max-width: 300px;
}




/*
##########################################
   SHOP CART
##########################################
*/
.custom__message-cart {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.custom__message-cart span {
    font-size: 32px;
    color: var(--primary-color);
}

.cart__wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 40px;
}

.cart__wrapper .woocommerce__cart-form {
    flex-basis: calc(70% - 40px);
}

.cart__wrapper .cart__totals {
    flex-basis: calc(30% - 40px);
}

.cart__wrapper h1,
.cart__wrapper h2 {
    margin-bottom: 30px;
}

.product__item-cart {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-color);
    margin-bottom: 25px;
}

.product__item-cart>div {
    flex: 1;
}

.product__item-cart .product__thumbnail,
.product__item-cart .product__thumbnail img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.product__item-cart .product__description {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
}

.woocommerce-cart-form .product__actions {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.product-remove {
    position: absolute;
    left: 10px;
}

/* .woocommerce .woocommerce-cart-form .quantity .qty {
    border: 1px solid #cccccc;
    background-color: white;
    border-radius: 50px;
    padding: 10px 15px 10px 50px;
    max-width: 100px;
    width: auto;
}

.woocommerce .woocommerce-cart-form .product-remove a.remove {
    color: var(--black-color) !important;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woocommerce .woocommerce-cart-form .product-remove:hover a span {
    color: white !important;
}

.woocommerce-cart-form .product__amount {
    width: 100%;
    text-align: right;
} */

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
    float: none;
}

.cart__wrapper .coupon {
    max-width: 200px;
}

.cart__wrapper .coupon input {
    padding: 5px 15px;
    margin-bottom: 10px;
}

.wc-proceed-to-checkout a {
    font-size: initial !important;
    font-weight: 500 !important;
}

.cart__totals a {
    text-decoration: underline;
}

.order-total,
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-color);
    margin-bottom: 15px;
}

.order-total {
    font-weight: 600;
}

/* CROSS SELLS */
.product__list-cross {
    margin-top: 80px;
}

.product__list-cross .button--circle {
    position: absolute;
    right: 0;
}

.woocommerce ul#shipping_method li input {
    vertical-align: middle;
    margin-right: 4px !important;
}

.woocommerce ul#shipping_method li label {
    font-size: 15px;
}

.woocommerce-shipping-contents {
    position: relative;
    font-weight: 700;
    font-size: 19px;
    font-style: italic;
    margin-bottom: 20px !important;
    padding-left: 22px;
}

.woocommerce-shipping-contents:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: 'deployed_code';
    font-family: 'Material Symbols Outlined';
    font-style: normal;
}

.woocommerce-shipping-destination {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 7px;
}

@media screen and (max-width: 960px) {
    .cart__wrapper {
        flex-flow: column wrap;
        gap: 50px;
    }

    .cart__wrapper .woocommerce__cart-form {
        flex-basis: 100%;
    }

    .cart__wrapper .cart__totals {
        flex-basis: 100%;
    }

    .product__item-cart {
        gap: 20px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

/*
##########################################
   CHECKOUT
##########################################
*/
.checkout--container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 40px;
}

.checkout--container form {
    flex-basis: calc(66.66% - 40px);
}

.checkout--container .checkout--summary {
    flex-basis: calc(33.33% - 40px);
}


/* CHECKOUT FORM */
.checkout-step {
    /* border: 2px solid #ddd;
    border-radius: 8px; */
    margin-bottom: 20px;
    padding: 10px 20px;
    transition: border-color 0.3s ease;
}

.step-header {
    color: #cccccc;
}

.checkout-step.active .step-header {
    color: var(--black-color);
}

.step-content {
    overflow: hidden;
    transition: max-height 0.4s ease;
    max-height: 0;
    display: none;
    padding: 30px 0;
}

.checkout-step h3 {
    display: none;
}

#order_review .checkout-summary-list {
    display: none !important;
}

.woocommerce-form__label-for-checkbox {
    display: flex !important;
    flex-flow: row wrap;
    align-items: center;
    gap: 10px;
}

.select2-search input {
    display: none;
}

.select2-results {
    border-radius: 10px;
    background-color: lightgrey !important;
}


#billing_postcode_field,
#billing_city_field,
#billing_phone_field,
#billing_email_field,
#shipping_postcode_field,
#shipping_city_field {
    width: 47%;
    overflow: visible;
    clear: inherit;
}

#billing_postcode_field,
#shipping_postcode_field,
#billing_phone_field {
    float: left;
}

#shipping_city_field,
#billing_city_field,
#billing_email_field {
    float: right;
}



/* PAYMENT CHECKOUT */
.woocommerce-checkout #payment {
    background-color: transparent !important;
}

.woocommerce-privacy-policy-text {
    font-size: 13px;
    color: var(--text-gray-color);
}

/* SUMMARY CHECKOUT */
.checkout-summary-list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.summary-thumb img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.summary-details {
    flex-grow: 1;
}

.summary-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.summary-meta {
    font-size: 0.875em;
    color: #666;
}

.summary-qty {
    font-size: 0.875em;
    color: #333;
}

.summary-price {
    font-weight: bold;
    white-space: nowrap;
}

.checkout-summary-totals {
    border-top: 2px solid #000;
    padding-top: 15px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.summary-line.total {
    font-size: 1.1em;
    font-weight: bold;
    border-top: 1px dashed #ccc;
    padding-top: 10px;
}

.woocommerce-remove-coupon {
    color: var(--primary-color);
}

.checkout--container>.woocommerce-message,
.checkout--container>.woocommerce-error,
.checkout--container>.woocommerce-info,
.checkout--container>.woocommerce-notices-wrapper {
    flex-basis: 100%;
    width: 100%;
    order: -1;
    /* aparece arriba dentro del flex */
    margin-bottom: 16px;
}

.checkout--container .payment_box.payment_method_cetelem p {
    display: none;
}

@media screen and (max-width: 1110px) {
    .checkout--container {
        flex-flow: column wrap;
        gap: 0;
    }

    .checkout--container form {
        flex-basis: 100%;
    }

    .checkout--container .checkout--summary {
        flex-basis: 100%;
    }

    .checkout-step {
        padding: 10px 0;
    }
}



/*
##########################################
   THANK YOU / ORDER COMPLETE
##########################################
*/
.woocommerce-thankyou-order-received {
    margin-bottom: 40px;
}

.woocommerce-customer-details address,
.acc-card {
    background: #fff;
    border: 0 !important;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
}

/* Estilos tabla */
.woocommerce-table.order_details {
    width: 100%;
    border-collapse: separate;
    border: 0 !important;
    border-spacing: 0 12px;
    /* separación entre filas */
}

.woocommerce-table.order_details thead {
    display: none;
    /* ocultar cabecera si quieres estilo más “cards” */
}

.woocommerce-table.order_details tbody tr {
    background: #f9f9fb;
    border-radius: 8px;
    border: 0 !important;
}

.woocommerce-table.order_details th,
.woocommerce-table.order_details td {
    padding: 15px;
    vertical-align: middle;
    border: 0 !important;
    background-color: white;
}

/* Producto */
.acc-od-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.acc-od-thumb-wrap {
    flex-shrink: 0;
}

.acc-od-thumb {
    border-radius: 8px;
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.acc-od-title {
    font-weight: 700 !important;
    font-size: 17px;
    color: var(--black-color);
    text-decoration: none;
}

.acc-od-qty {
    margin-left: auto;
    font-weight: 500;
    color: #666;
}

/* Totales */
.woocommerce-table.order_details tfoot tr th {
    text-align: left;
    font-weight: 600;
    padding: 10px 0;
    color: #444;
}

.woocommerce-table.order_details tfoot tr td {
    text-align: right;
    font-weight: 600;
    padding: 10px 0;
}

/* Destacar total final */
.woocommerce-table.order_details tfoot tr:last-child td,
.woocommerce-table.order_details tfoot tr:last-child th {
    font-size: 18px;
    color: var(--black-color);
}

@media (max-width: 768px) {
    .woocommerce-table.order_details tbody tr {
        /* display: block; */
        padding: 15px;
    }

    .woocommerce-table.order_details td {
        display: block;
        text-align: left !important;
    }

    .acc-od-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .acc-od-qty {
        margin-left: 0;
    }
}



.wc-tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.wc-tooltip-html {
    display: none;
    position: absolute;
    bottom: 30px;
    left: 100%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 12px 15px;
    border-radius: 5px;
    width: 260px;
    font-size: 13px;
    z-index: 9999;
    text-align: left;
    white-space: normal;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.wc-tooltip-html a {
    color: #ffc;
    text-decoration: underline;
}

/* Mostrar tooltip al hacer hover sobre el icono o el tooltip */
.wc-tooltip-wrapper:hover .wc-tooltip-html,
.wc-tooltip-html:hover {
    display: block;
}


/*
* WOOCOMMERCE MESSAGES
*/
.woocommerce-message {
    background-color: rgba(56, 168, 97, 0.1);
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #38A861;
    border-radius: 10px;
    border-top: none;
}

.woocommerce-message::before {
    content: '\e5ca';
    font-family: 'Material Symbols Outlined';
    color: #38A861 !important
}

.woocommerce-info {
    background-color: rgba(37, 149, 231, 0.1);
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: rgb(37, 149, 231);
    border-radius: 5px;
    border-top: none;
}

.wc-empty-cart-message .woocommerce-info:before {
    content: '\e8cc';
    font-family: 'Material Symbols Outlined';
    color: rgb(37, 149, 231);
}

.woocommerce-form-login-toggle .woocommerce-info {
    background-color: rgba(25, 25, 25, 0.04);
    color: var(--black);
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 5px;
    border-top: none;
}

.woocommerce-form-login-toggle .woocommerce-info a {
    text-decoration: underline;
}

.woocommerce-form-login-toggle .woocommerce-info:before {
    content: '\e7fd';
    font-family: 'Material Symbols Outlined';
    color: var(--black);
}

.woocommerce-error {
    background-color: rgba(200, 39, 21, 0.1);
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: rgb(200, 39, 21);
    border-radius: 5px;
    border-top: none;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    top: inherit
}



/*
* CORRECTIONS
*/
.text--margins-m .product__card img,
.text--margins-s .product__card img {
    margin: inherit;
}