/* =========================================================
   SUPPLEMENTSPORT UI
   TARJETAS + SINGLE PRODUCT
   ========================================================= */


/* =========================================================
   BASE
   ========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}


/* =========================================================
   GRID DE PRODUCTOS
   ========================================================= */

ul.products {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 28px !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   TARJETA
   ========================================================= */

ul.products li.product.ss-product-card {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;

    background: #ffffff !important;

    border: 1px solid #eeeeee !important;
    border-radius: 20px !important;

    overflow: hidden !important;

    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);

    display: flex !important;
    flex-direction: column !important;

    float: none !important;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

ul.products li.product.ss-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   IMAGEN
   ========================================================= */

.ss-product-image {
    width: 100%;
    height: 280px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    overflow: hidden;
}

.ss-product-image a {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-product-image img,
.ss-product-img {
    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;

    object-fit: contain !important;

    margin: 0 !important;
    padding: 20px !important;

    display: block !important;

    transition: transform .3s ease;
}

.ss-product-card:hover .ss-product-image img {
    transform: scale(1.04);
}


/* =========================================================
   CUERPO
   ========================================================= */

.ss-card-body {
    flex: 1;
    min-width: 0;

    display: flex;
    flex-direction: column;

    padding: 18px;
}


/* =========================================================
   CATEGORIA / MARCA
   ========================================================= */

.ss-brand {
    min-height: 16px;

    margin-bottom: 6px;

    color: #888;

    font-size: 12px;
    line-height: 1.3;

    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
}

.ss-brand a {
    color: #888 !important;
    text-decoration: none !important;
}


/* =========================================================
   TITULO
   ========================================================= */

.ss-title {
    margin: 0 0 8px !important;

    min-height: 48px;

    font-size: 17px !important;
    font-weight: 700 !important;

    line-height: 1.35 !important;

    overflow: hidden;
}

.ss-title a {
    color: #111 !important;
    text-decoration: none !important;
}

.ss-title a:hover {
    color: #ef233c !important;
}


/* =========================================================
   RATING
   ========================================================= */

.ss-rating {
    min-height: 18px;
    margin-bottom: 5px;
}

.ss-rating .star-rating {
    margin: 0 !important;
}


/* =========================================================
   PRECIO
   ========================================================= */

.ss-card-body > .ss-price {
    margin: 3px 0 8px;
    line-height: 1.1;
}

.ss-card-body > .ss-price .price {
    margin: 0 !important;

    font-size: 25px !important;
    font-weight: 800 !important;

    line-height: 1.1 !important;

    color: #111 !important;
}

.ss-card-body > .ss-price del {
    display: none !important;
}

.ss-card-body > .ss-price ins {
    text-decoration: none !important;
}


/* =========================================================
   FOOTER
   ========================================================= */

.ss-card-footer {
    width: 100%;
    margin-top: auto;
}


/* =========================================================
   TRANSFERENCIA
   ========================================================= */

.ss-transfer {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 5px;

    padding: 8px 10px;

    margin: 8px 0;

    background: #effaf1;

    border: 1px solid #b9dfbe;

    border-radius: 9px;

    color: #287b35;

    font-size: 11px;

    line-height: 1.2;

    text-align: center;
}

.ss-transfer strong {
    color: #247332;
    font-size: 13px;
}

.ss-transfer .woocommerce-Price-amount {
    font-size: inherit;
}

.ss-transfer-icon {
    font-size: 13px;
}

.ss-transfer-text {
    font-size: 11px;
}


/* =========================================================
   INFORMACION
   ========================================================= */

.ss-info {
    width: 100%;

    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 7px;

    margin: 8px 0;
}

.ss-info > div {
    min-width: 0;
    min-height: 52px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 7px;

    background: #fafafa;

    border: 1px solid #e7e7e7;

    border-radius: 9px;

    text-align: center;

    font-size: 11px;
}


/* =========================================================
   CUOTAS
   ========================================================= */

.ss-installments {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.ss-installments-title {
    color: #777;

    font-size: 10px;

    line-height: 1.2;
}

.ss-installments-price {
    margin-top: 2px;

    color: #111;

    font-size: 13px;

    font-weight: 800;

    line-height: 1.2;
}

.ss-installments-price small {
    display: block;

    font-size: 10px;

    font-weight: 500;

    color: #555;
}


/* =========================================================
   STOCK
   ========================================================= */

.ss-stock {
    display: flex !important;

    flex-direction: row !important;

    gap: 4px;

    align-items: center !important;
    justify-content: center !important;

    color: #555;
}

.ss-stock-dot {
    width: 8px;
    height: 8px;

    display: inline-block;

    border-radius: 50%;

    flex-shrink: 0;
}

.ss-stock-ok {
    background: #72b65b;
}

.ss-stock-out {
    background: #ef233c;
}


/* =========================================================
   MEDIOS DE PAGO
   ========================================================= */

.ss-payment {
    width: 100%;

    min-height: 42px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 8px;

    padding: 9px 11px;

    margin: 8px 0 10px;

    background: #ffffff;

    border: 1px solid #ddd;

    border-radius: 9px;

    color: #222;

    font-size: 11px;

    font-weight: 600;
}

.ss-payment-arrow {
    font-size: 18px;
    line-height: 1;
}


/* =========================================================
   BOTON
   ========================================================= */

.ss-card-footer .button,
.ss-card-footer a.button {
    width: 100% !important;

    min-width: 0 !important;

    height: 48px !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;

    padding: 10px 12px !important;

    background: #ef233c !important;

    color: #ffffff !important;

    border: none !important;

    border-radius: 10px !important;

    font-size: 14px !important;

    font-weight: 700 !important;

    line-height: 1.2 !important;

    text-align: center !important;

    text-decoration: none !important;

    transition: .25s ease;
}

.ss-card-footer .button:hover,
.ss-card-footer a.button:hover {
    background: #d91d34 !important;

    color: #ffffff !important;

    transform: translateY(-2px);
}


/* =========================================================
   SINGLE PRODUCT
   ========================================================= */

.ss-single-payment {
    width: 100%;

    margin: 18px 0 22px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.ss-single-transfer,
.ss-single-installments {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 14px 16px;

    border-radius: 12px;

    border: 1px solid #c8e6cb;

    background: #f1faf2;
}

.ss-single-installments {
    background: #fafafa;
    border-color: #e5e5e5;
}

.ss-single-payment-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    font-size: 18px;
}

.ss-single-payment-content {
    display: flex;

    flex-direction: column;

    min-width: 0;
}

.ss-single-payment-label {
    color: #666;

    font-size: 12px;

    line-height: 1.3;
}

.ss-single-payment-content strong {
    margin-top: 2px;

    color: #222;

    font-size: 20px;

    line-height: 1.2;
}

.ss-single-payment-small {
    color: #2e7d32;

    font-size: 11px;

    font-weight: 700;
}

.ss-single-installments .ss-single-payment-small {
    color: #666;
}


/* =========================================================
   BENEFICIOS SINGLE
   ========================================================= */

.ss-single-benefits {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 8px;

    margin-top: 2px;
}

.ss-single-benefits > div {
    min-width: 0;

    padding: 11px 8px;

    border: 1px solid #e5e5e5;

    border-radius: 10px;

    background: #fff;

    color: #333;

    font-size: 11px;

    text-align: center;
}

.ss-single-benefits span {
    display: block;
    margin-top: 4px;
}


/* =========================================================
   OCULTAR ELEMENTOS DUPLICADOS
   ========================================================= */

.astra-shop-summary-wrap > .button {
    display: none !important;
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 1101px) {

    ul.products {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 28px !important;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }

    .ss-product-image {
        height: 240px;
    }

    .ss-card-body {
        padding: 15px;
    }

}


/* =========================================================
   TABLET PEQUEÑA
   ========================================================= */

@media (max-width: 800px) {

    ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 15px !important;
    }

    .ss-product-image {
        height: 210px;
    }

    .ss-card-body {
        padding: 13px;
    }

    .ss-title {
        font-size: 15px !important;
        min-height: 42px;
    }

    .ss-card-body > .ss-price .price {
        font-size: 22px !important;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 600px) {

    /* UNA SOLA COLUMNA Y TODO EL ANCHO */
    ul.products {
        width: 100% !important;

        display: grid !important;

        grid-template-columns: minmax(0, 1fr) !important;

        gap: 12px !important;

        margin: 0 !important;

        padding: 0 !important;
    }


    /* TARJETA */
    ul.products li.product.ss-product-card {

        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;

        margin: 0 !important;

        border-radius: 14px !important;
    }


    /* IMAGEN MUCHO MÁS COMPACTA */
    .ss-product-image {
        height: 165px !important;
    }

    .ss-product-image img,
    .ss-product-img {
        padding: 8px !important;
    }


    /* CUERPO */
    .ss-card-body {
        padding: 10px 12px 12px !important;
    }


    /* CATEGORIA */
    .ss-brand {
        min-height: 13px;

        margin-bottom: 3px;

        font-size: 9px;
    }


    /* TITULO */
    .ss-title {
        min-height: 0 !important;

        max-height: 38px;

        margin: 0 0 5px !important;

        font-size: 14px !important;

        line-height: 1.3 !important;
    }


    /* PRECIO */
    .ss-card-body > .ss-price {
        margin: 2px 0 5px !important;
    }

    .ss-card-body > .ss-price .price {
        font-size: 21px !important;

        line-height: 1 !important;
    }


    /* TRANSFERENCIA */
    .ss-transfer {
        min-height: 32px;

        padding: 5px 7px !important;

        margin: 5px 0 !important;

        gap: 3px !important;

        font-size: 9px !important;

        line-height: 1 !important;
    }

    .ss-transfer strong {
        font-size: 11px !important;
    }

    .ss-transfer-text {
        font-size: 9px !important;
    }

    .ss-transfer-icon {
        font-size: 11px;
    }


    /* CUOTAS + STOCK */
    .ss-info {
        grid-template-columns: 1fr 1fr !important;

        gap: 5px !important;

        margin: 5px 0 !important;
    }

    .ss-info > div {
        min-height: 38px !important;

        padding: 5px !important;

        border-radius: 8px;
    }


    .ss-installments-title {
        font-size: 8px !important;
    }

    .ss-installments-price {
        font-size: 10px !important;

        margin-top: 1px;
    }

    .ss-installments-price small {
        display: inline !important;

        margin-left: 2px;

        font-size: 8px !important;
    }


    .ss-stock {
        font-size: 9px !important;
    }

    .ss-stock-dot {
        width: 7px;
        height: 7px;
    }


    /* MEDIOS DE PAGO */
    .ss-payment {
        min-height: 34px !important;

        padding: 6px 8px !important;

        margin: 5px 0 7px !important;

        border-radius: 8px;

        font-size: 9px !important;
    }

    .ss-payment-arrow {
        font-size: 16px;
    }


    /* BOTON */
    .ss-card-footer .button,
    .ss-card-footer a.button {
        width: 100% !important;

        height: 40px !important;

        min-height: 40px !important;

        padding: 7px 10px !important;

        border-radius: 8px !important;

        font-size: 11px !important;
    }


    /* SINGLE PRODUCT */
    .ss-single-payment {
        margin: 14px 0;
    }

    .ss-single-benefits {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   CELULAR MUY PEQUEÑO
   ========================================================= */

@media (max-width: 380px) {

    ul.products {
        grid-template-columns: minmax(0, 1fr) !important;

        gap: 10px !important;
    }


    ul.products li.product.ss-product-card {
        border-radius: 12px !important;
    }


    .ss-product-image {
        height: 150px !important;
    }


    .ss-card-body {
        padding: 9px 10px 10px !important;
    }


    .ss-title {
        font-size: 13px !important;

        max-height: 34px;
    }


    .ss-card-body > .ss-price .price {
        font-size: 20px !important;
    }


    .ss-transfer {
        min-height: 30px;

        font-size: 8px !important;
    }

    .ss-transfer strong {
        font-size: 10px !important;
    }

    .ss-transfer-text {
        font-size: 8px !important;
    }


    .ss-info > div {
        min-height: 36px !important;
    }


    .ss-payment {
        min-height: 32px !important;

        font-size: 8px !important;
    }


    .ss-card-footer .button,
    .ss-card-footer a.button {
        height: 38px !important;

        min-height: 38px !important;

        font-size: 10px !important;
    }

}


/* =========================================================
   SIDEBAR
   ========================================================= */

#secondary {
    padding: 25px;

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 8px 25px rgba(0,0,0,.06);

    position: sticky;

    top: 100px;
}

#secondary section {
    margin-bottom: 35px;
}

#secondary h2,
#secondary h3,
#secondary .widget-title {
    font-size: 20px;

    font-weight: 800;

    text-transform: uppercase;

    margin-bottom: 20px;

    color: #111;

    border-bottom: 2px solid #ef233c;

    padding-bottom: 10px;
}

#secondary ul {
    list-style: none;

    margin: 0;

    padding: 0;
}

#secondary li {
    margin-bottom: 12px;
}

#secondary a {
    color: #222;

    text-decoration: none;

    font-weight: 500;

    transition: .2s;
}

#secondary a:hover {
    color: #ef233c;

    padding-left: 5px;
}


/* =========================================================
   FILTROS
   ========================================================= */

.yith-wcan-filters input[type="checkbox"] {
    width: 18px;

    height: 18px;

    accent-color: #ef233c;

    cursor: pointer;
}

.yith-wcan-filters label {
    font-size: 14px;

    cursor: pointer;
}

.yith-wcan-count {
    background: #ef233c;

    color: #fff;

    border-radius: 30px;

    padding: 2px 8px;

    font-size: 11px;

    margin-left: 6px;
}

.ui-slider-range {
    background: #ef233c !important;
}

.ui-slider-handle {
    border: 3px solid #ef233c !important;

    background: #fff !important;

    border-radius: 50% !important;

    width: 18px !important;

    height: 18px !important;
}



/* =========================================================
   POPUP MEDIOS DE PAGO
   ========================================================= */

body.ss-payment-modal-open {
    overflow: hidden !important;
}


/* CONTENEDOR */

.ss-payment-modal {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


/* ABIERTO */

.ss-payment-modal.ss-modal-open {
    visibility: visible;

    opacity: 1;

    pointer-events: auto;
}


/* FONDO */

.ss-payment-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.55);

    backdrop-filter: blur(3px);
}


/* CAJA */

.ss-payment-modal-box {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 540px;

    max-height: calc(100vh - 40px);

    overflow-y: auto;

    padding: 26px;

    background: #fff;

    border-radius: 20px;

    box-shadow:
        0 25px 80px rgba(0,0,0,.25);

    transform: translateY(15px) scale(.97);

    transition: transform .25s ease;
}


.ss-payment-modal.ss-modal-open
.ss-payment-modal-box {

    transform: translateY(0) scale(1);
}


/* HEADER */

.ss-payment-modal-header {

    display: flex;

    align-items: center;

    gap: 14px;

    padding-right: 35px;

    margin-bottom: 22px;
}


.ss-payment-modal-icon {

    width: 48px;

    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f1f1f1;

    border-radius: 14px;

    font-size: 23px;
}


.ss-payment-modal-header h2 {

    margin: 0 !important;

    color: #111;

    font-size: 22px;

    font-weight: 800;

    line-height: 1.2;
}


.ss-payment-modal-header p {

    margin: 5px 0 0;

    color: #777;

    font-size: 13px;
}


/* CERRAR */

.ss-payment-close {

    position: absolute;

    top: 16px;

    right: 16px;

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #f3f3f3;

    color: #555;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

    transition: .2s ease;
}


.ss-payment-close:hover {

    background: #ef233c;

    color: #fff;
}


/* MEDIOS */

.ss-payment-methods {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.ss-payment-method {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 15px;

    background: #fafafa;

    border: 1px solid #e8e8e8;

    border-radius: 13px;
}


.ss-payment-transfer {

    background: #f1faf2;

    border-color: #c7e4ca;
}


.ss-method-icon {

    width: 38px;

    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff;

    border-radius: 10px;

    font-size: 18px;
}


.ss-method-content {

    min-width: 0;

    flex: 1;
}


.ss-method-content strong {

    display: inline-block;

    color: #222;

    font-size: 14px;

    font-weight: 750;

    line-height: 1.3;
}


.ss-method-content p {

    margin: 5px 0 0;

    color: #666;

    font-size: 12px;

    line-height: 1.45;
}


.ss-method-highlight {

    display: inline-block;

    margin-left: 7px;

    padding: 3px 7px;

    background: #287b35;

    color: #fff;

    border-radius: 20px;

    font-size: 9px;

    font-weight: 800;

    vertical-align: middle;
}


/* TARJETAS */

.ss-card-brands {

    display: flex;

    flex-wrap: wrap;

    gap: 5px;

    margin-top: 8px;
}


.ss-card-brands span {

    padding: 4px 7px;

    background: #fff;

    border: 1px solid #ddd;

    border-radius: 5px;

    color: #555;

    font-size: 9px;

    font-weight: 700;
}


/* FOOTER */

.ss-payment-modal-footer {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 18px;

    padding-top: 16px;

    border-top: 1px solid #eee;

    color: #777;

    font-size: 10px;
}


/* BOTÓN SINGLE PRODUCT */

.ss-single-payment-button {

    width: 100%;

    min-height: 44px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin: 0;

    padding: 10px 13px;

    background: #fff;

    border: 1px solid #ddd;

    border-radius: 10px;

    color: #222;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: .2s ease;
}


.ss-single-payment-button:hover {

    border-color: #ef233c;

    color: #ef233c;

}


.ss-single-payment-button span {

    font-size: 18px;

    line-height: 1;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .ss-payment-modal {

        padding: 12px;

        align-items: flex-end;
    }


    .ss-payment-modal-box {

        max-height: calc(100vh - 24px);

        padding: 20px 15px 15px;

        border-radius: 18px 18px 0 0;

        transform: translateY(30px);
    }


    .ss-payment-modal.ss-modal-open
    .ss-payment-modal-box {

        transform: translateY(0);
    }


    .ss-payment-modal-header {

        gap: 10px;

        margin-bottom: 15px;
    }


    .ss-payment-modal-icon {

        width: 40px;

        height: 40px;

        flex-basis: 40px;

        border-radius: 11px;

        font-size: 19px;
    }


    .ss-payment-modal-header h2 {

        font-size: 19px;
    }


    .ss-payment-modal-header p {

        font-size: 11px;
    }


    .ss-payment-close {

        top: 12px;

        right: 12px;

        width: 30px;

        height: 30px;

        font-size: 22px;
    }


    .ss-payment-method {

        padding: 12px;

        gap: 10px;
    }


    .ss-method-icon {

        width: 34px;

        height: 34px;

        flex-basis: 34px;

        font-size: 16px;
    }


    .ss-method-content strong {

        font-size: 12px;
    }


    .ss-method-content p {

        font-size: 10px;
    }


    .ss-method-highlight {

        font-size: 8px;

        padding: 3px 6px;
    }


    .ss-payment-modal-footer {

        font-size: 9px;

        gap: 10px;
    }

}








/* =========================================================
   PRODUCTOS - CELULAR 2 COLUMNAS
   ========================================================= */

@media (max-width: 600px) {

    ul.products {
        width: 100% !important;
        display: grid !important;

        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 10px !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    ul.products li.product.ss-product-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;

        border-radius: 12px !important;
    }


    /* IMAGEN MÁS PEQUEÑA */

    .ss-product-image {
        width: 100% !important;
        height: 145px !important;
    }

    .ss-product-image img,
    .ss-product-img {
        width: 100% !important;
        height: 100% !important;

        padding: 8px !important;

        object-fit: contain !important;
    }


    /* CUERPO */

    .ss-card-body {
        padding: 9px !important;
    }


    /* CATEGORÍA */

    .ss-brand {
        font-size: 8px !important;

        margin-bottom: 3px !important;

        line-height: 1.2 !important;
    }


    /* TÍTULO */

    .ss-title {
        min-height: 38px !important;

        max-height: 38px !important;

        margin-bottom: 5px !important;

        font-size: 11px !important;

        line-height: 1.25 !important;
    }


    /* PRECIO */

    .ss-card-body > .ss-price {
        margin: 3px 0 6px !important;
    }

    .ss-card-body > .ss-price .price {
        font-size: 17px !important;

        line-height: 1.1 !important;
    }


    /* TRANSFERENCIA */

    .ss-transfer {
        padding: 5px 4px !important;

        margin: 5px 0 !important;

        gap: 2px !important;

        border-radius: 7px !important;

        font-size: 8px !important;

        line-height: 1.15 !important;
    }

    .ss-transfer strong {
        font-size: 9px !important;
    }

    .ss-transfer-text {
        font-size: 8px !important;
    }


    /* CUOTAS + STOCK */

    .ss-info {
        grid-template-columns: 1fr 1fr !important;

        gap: 4px !important;

        margin: 5px 0 !important;
    }

    .ss-info > div {
        min-height: 38px !important;

        padding: 4px 2px !important;

        border-radius: 7px !important;

        font-size: 8px !important;
    }

    .ss-installments-title {
        font-size: 7px !important;
    }

    .ss-installments-price {
        font-size: 9px !important;
    }

    .ss-installments-price small {
        font-size: 7px !important;
    }

    .ss-stock {
        font-size: 8px !important;
    }

    .ss-stock-dot {
        width: 6px !important;
        height: 6px !important;
    }


    /* MEDIOS DE PAGO */

    .ss-payment {
        min-height: 32px !important;

        margin: 5px 0 6px !important;

        padding: 5px 6px !important;

        border-radius: 7px !important;

        font-size: 8px !important;
    }

    .ss-payment-arrow {
        font-size: 13px !important;
    }


    /* BOTÓN */

    .ss-card-footer .button,
    .ss-card-footer a.button {
        width: 100% !important;

        height: 36px !important;

        min-height: 36px !important;

        padding: 5px 3px !important;

        border-radius: 7px !important;

        font-size: 9px !important;

        line-height: 1.1 !important;
    }

}


/* =========================================================
   CELULARES MUY PEQUEÑOS
   ========================================================= */

@media (max-width: 380px) {

    ul.products {
        gap: 8px !important;
    }

    .ss-product-image {
        height: 130px !important;
    }

    .ss-card-body {
        padding: 8px !important;
    }

    .ss-title {
        font-size: 10px !important;
        min-height: 35px !important;
        max-height: 35px !important;
    }

    .ss-card-body > .ss-price .price {
        font-size: 16px !important;
    }

    .ss-transfer {
        font-size: 7px !important;
    }

    .ss-info > div {
        min-height: 35px !important;
    }

    .ss-payment {
        font-size: 7px !important;
    }

    .ss-card-footer .button,
    .ss-card-footer a.button {
        height: 34px !important;
        min-height: 34px !important;
        font-size: 8px !important;
    }
}
/* =========================================================
   CELULAR - TÍTULO MÁXIMO 2 LÍNEAS
   ========================================================= */

@media (max-width: 600px) {

    .ss-title {
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;

        overflow: hidden !important;
        text-overflow: ellipsis !important;

        height: 32px !important;
        min-height: 32px !important;
        max-height: 32px !important;

        margin: 0 0 5px !important;

        font-size: 11px !important;
        line-height: 1.45 !important;
    }

    .ss-title a {
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;

        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

}


/* =========================================================
   CELULARES MUY PEQUEÑOS
   ========================================================= */

@media (max-width: 380px) {

    .ss-title {
        height: 30px !important;
        min-height: 30px !important;
        max-height: 30px !important;

        font-size: 10px !important;
        line-height: 1.45 !important;
    }

}





















/* =========================================================
   MOBILE - LIMITAR TITULO A 2 LINEAS
   ========================================================= */

@media (max-width: 600px) {

    ul.products li.product .ss-title,
    ul.products li.product .ss-title a,
    ul.products li.product .woocommerce-loop-product__title,
    ul.products li.product .woocommerce-loop-product__title a {

        display: -webkit-box !important;

        -webkit-box-orient: vertical !important;

        -webkit-line-clamp: 2 !important;

        overflow: hidden !important;

        text-overflow: ellipsis !important;

        white-space: normal !important;

        word-break: normal !important;

        overflow-wrap: break-word !important;

        height: 32px !important;

        min-height: 32px !important;

        max-height: 32px !important;

        line-height: 16px !important;

        margin-bottom: 5px !important;
    }


    /* El enlace también queda limitado */

    ul.products li.product .ss-title a,
    ul.products li.product .woocommerce-loop-product__title a {

        height: 32px !important;

        max-height: 32px !important;

        overflow: hidden !important;

        display: -webkit-box !important;

        -webkit-box-orient: vertical !important;

        -webkit-line-clamp: 2 !important;
    }

}


/* =========================================================
   TELEFONOS MUY PEQUEÑOS
   ========================================================= */

@media (max-width: 380px) {

    ul.products li.product .ss-title,
    ul.products li.product .ss-title a,
    ul.products li.product .woocommerce-loop-product__title,
    ul.products li.product .woocommerce-loop-product__title a {

        height: 30px !important;

        min-height: 30px !important;

        max-height: 30px !important;

        line-height: 15px !important;

        -webkit-line-clamp: 2 !important;
    }

}






















/* =========================================================
   SINGLE PRODUCT - BOTÓN AÑADIR AL CARRITO
   ========================================================= */

/* Contenedor del botón */
.single-product form.cart {
    width: 100%;
    margin: 18px 0 0 !important;
}


/* Botón principal */
.single-product form.cart .single_add_to_cart_button {

    width: 100% !important;

    min-width: 0 !important;

    height: 52px !important;

    min-height: 52px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    padding: 10px 18px !important;

    margin: 0 !important;

    background: #ef233c !important;

    color: #ffffff !important;

    border: none !important;

    border-radius: 12px !important;

    box-shadow: none !important;

    font-size: 15px !important;

    font-weight: 700 !important;

    line-height: 1.2 !important;

    text-align: center !important;

    text-decoration: none !important;

    cursor: pointer;

    transition:
        background-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


/* Hover */

.single-product form.cart .single_add_to_cart_button:hover {

    background: #d91d34 !important;

    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(239, 35, 60, .22) !important;
}


/* Click */

.single-product form.cart .single_add_to_cart_button:active {

    transform: translateY(0);

    box-shadow: none !important;
}


/* =========================================================
   PRODUCTO AGOTADO
   ========================================================= */

.single-product form.cart .single_add_to_cart_button.disabled,
.single-product form.cart .single_add_to_cart_button:disabled {

    opacity: .55;

    cursor: not-allowed;

    transform: none !important;

    box-shadow: none !important;
}


/* =========================================================
   VARIACIONES
   ========================================================= */

.single-product .variations_form .single_add_to_cart_button {

    width: 100% !important;
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 600px) {

    .single-product form.cart {

        margin-top: 14px !important;
    }


    .single-product form.cart .single_add_to_cart_button {

        width: 100% !important;

        height: 46px !important;

        min-height: 46px !important;

        padding: 8px 12px !important;

        border-radius: 10px !important;

        font-size: 13px !important;
    }

}


/* =========================================================
   CELULARES MUY PEQUEÑOS
   ========================================================= */

@media (max-width: 380px) {

    .single-product form.cart .single_add_to_cart_button {

        height: 44px !important;

        min-height: 44px !important;

        font-size: 12px !important;

        border-radius: 9px !important;
    }

}











/* =========================================================
   BADGE PROFESIONAL - OFERTA / AGOTADO
   ========================================================= */

ul.products li.product .ss-product-badge {

    position: absolute !important;

    top: 16px !important;
    left: 16px !important;

    right: auto !important;

    z-index: 9999 !important;

    width: auto !important;
    height: auto !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    padding: 7px 13px !important;

    margin: 0 !important;

    border-radius: 7px !important;

    font-family: inherit !important;

    font-size: 10px !important;

    font-weight: 800 !important;

    line-height: 1 !important;

    letter-spacing: .5px !important;

    text-transform: uppercase !important;

    white-space: nowrap !important;

    transform: none !important;

    box-shadow: 0 4px 12px rgba(0,0,0,.12) !important;

    pointer-events: none !important;
}


/* =========================================================
   OFERTA
   ========================================================= */

ul.products li.product .ss-badge-sale {

    background: #ef233c !important;

    color: #ffffff !important;
}


/* =========================================================
   AGOTADO
   ========================================================= */

ul.products li.product .ss-badge-out {

    background: rgba(25,25,25,.88) !important;

    color: #ffffff !important;

    border: 1px solid rgba(255,255,255,.15) !important;
}


/* =========================================================
   PRODUCTO AGOTADO
   ========================================================= */

ul.products li.product:has(.ss-badge-out) img {

    filter: grayscale(100%) !important;

    opacity: .48 !important;
}


ul.products li.product:has(.ss-badge-out) .ss-product-image {

    background: #eeeeee !important;
}


/* No zoom ni movimiento en agotados */

ul.products li.product:has(.ss-badge-out):hover {

    transform: none !important;
}


ul.products li.product:has(.ss-badge-out):hover img {

    transform: none !important;
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 600px) {

    ul.products li.product .ss-product-badge {

        top: 9px !important;

        left: 9px !important;

        padding: 5px 9px !important;

        border-radius: 6px !important;

        font-size: 8px !important;

        letter-spacing: .3px !important;
    }

}


/* =========================================================
   CELULAR PEQUEÑO
   ========================================================= */

@media (max-width: 380px) {

    ul.products li.product .ss-product-badge {

        top: 7px !important;

        left: 7px !important;

        padding: 4px 8px !important;

        font-size: 7px !important;

    }

}


















/* =========================================================
   MEDIOS DE PAGO - ESTILO ENLACE
   ========================================================= */

.ss-card-footer .ss-payment {

    width: auto !important;

    min-height: auto !important;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: flex-start !important;

    gap: 5px !important;

    margin: 4px 0 10px !important;

    padding: 0 !important;

    background: transparent !important;

    border: none !important;

    border-radius: 0 !important;

    box-shadow: none !important;

    color: #555 !important;

    font-family: inherit !important;

    font-size: 11px !important;

    font-weight: 600 !important;

    line-height: 1.3 !important;

    cursor: pointer !important;

    transition:
        color .2s ease,
        opacity .2s ease;
}


/* Texto */

.ss-card-footer .ss-payment > span:first-child {

    color: inherit !important;

    text-decoration: underline;

    text-decoration-color: #bbb;

    text-underline-offset: 3px;

}


/* Flecha */

.ss-card-footer .ss-payment .ss-payment-arrow {

    display: inline-block !important;

    font-size: 15px !important;

    line-height: 1 !important;

    color: #888 !important;

    transition: transform .2s ease;
}


/* Hover */

.ss-card-footer .ss-payment:hover {

    background: transparent !important;

    border: none !important;

    color: #ef233c !important;

    transform: none !important;

    box-shadow: none !important;
}


.ss-card-footer .ss-payment:hover
.ss-payment-arrow {

    color: #ef233c !important;

    transform: translateX(3px);
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 600px) {

    .ss-card-footer .ss-payment {

        margin: 3px 0 7px !important;

        padding: 0 !important;

        font-size: 9px !important;

    }


    .ss-card-footer .ss-payment .ss-payment-arrow {

        font-size: 13px !important;

    }

}

















/* =========================================================
   TARJETAS DE PRODUCTO - BLANCO + SOMBRA
   ========================================================= */

body ul.products li.product.ss-product-card,
body ul.products li.product.ss-product-card.product {

    background-color: #ffffff !important;

    border: 1px solid #eeeeee !important;

    border-radius: 20px !important;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.04),
        0 8px 25px rgba(0, 0, 0, 0.08) !important;

    overflow: hidden !important;

    margin: 0 !important;

    padding: 0 !important;

}


/* Todo el contenido de la tarjeta */

body ul.products li.product.ss-product-card > * {

    background-color: #ffffff;
}


/* Imagen */

body ul.products li.product.ss-product-card .ss-product-image {

    background-color: #ffffff !important;

    border: none !important;
}


/* Cuerpo */

body ul.products li.product.ss-product-card .ss-card-body {

    background-color: #ffffff !important;
}


/* Hover */

@media (min-width: 601px) {

    body ul.products li.product.ss-product-card:hover {

        background-color: #ffffff !important;

        box-shadow:
            0 4px 10px rgba(0, 0, 0, 0.05),
            0 14px 35px rgba(0, 0, 0, 0.11) !important;

        transform: translateY(-3px) !important;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 600px) {

    body ul.products li.product.ss-product-card,
    body ul.products li.product.ss-product-card.product {

        background: #ffffff !important;

        border: 1px solid #eeeeee !important;

        border-radius: 15px !important;

        box-shadow:
            0 2px 6px rgba(0, 0, 0, 0.04),
            0 6px 18px rgba(0, 0, 0, 0.07) !important;

    }

}












/* =========================================================
   TARJETA DE PRODUCTO - DISEÑO FINAL
   ========================================================= */

ul.products li.product {

    background: #ffffff !important;

    border: 1px solid #eeeeee !important;

    border-radius: 20px !important;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.08) !important;

    overflow: hidden !important;

    padding: 0 !important;

    margin: 0 !important;

    transition:
        transform .25s ease,
        box-shadow .25s ease !important;
}


/* Imagen */

ul.products li.product .ss-product-image {

    background: #ffffff !important;

    border: none !important;
}


/* Cuerpo */

ul.products li.product .ss-card-body {

    background: #ffffff !important;

}


/* Hover solamente PC */

@media (min-width: 601px) {

    ul.products li.product:hover {

        transform: translateY(-4px) !important;

        box-shadow:
            0 5px 12px rgba(0, 0, 0, 0.05),
            0 15px 35px rgba(0, 0, 0, 0.11) !important;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 600px) {

    ul.products li.product {

        border-radius: 14px !important;

        border: 1px solid #eeeeee !important;

        box-shadow:
            0 2px 6px rgba(0, 0, 0, 0.04),
            0 5px 16px rgba(0, 0, 0, 0.07) !important;

    }

}

/* =========================================================
   MEDIOS DE PAGO - CENTRADO
   ========================================================= */

.ss-card-footer .ss-payment {

    width: 100% !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 5px !important;

    text-align: center !important;

    margin: 5px 0 10px !important;

    padding: 0 !important;

    background: transparent !important;

    border: none !important;

    box-shadow: none !important;
}


/* Texto */

.ss-card-footer .ss-payment > span:first-child {

    text-decoration: underline;

    text-underline-offset: 3px;

}


/* Flecha */

.ss-card-footer .ss-payment .ss-payment-arrow {

    flex: 0 0 auto;

    font-size: 15px !important;

    line-height: 1 !important;

}


/* Hover */

.ss-card-footer .ss-payment:hover {

    background: transparent !important;

    border: none !important;

    box-shadow: none !important;

    transform: none !important;

    color: #ef233c !important;

}














/* =========================================================
   PRECIO DESTACADO - SUPPLEMENTSPORT
   ========================================================= */

/* -------------------------
   CARDS
   ------------------------- */

ul.products li.product .ss-card-body > .ss-price {

    margin: 8px 0 12px !important;

    line-height: 1 !important;

}


/* Precio principal */

ul.products li.product .ss-card-body > .ss-price .woocommerce-Price-amount,
ul.products li.product .ss-card-body > .ss-price .price {

    font-family: Arial, Helvetica, sans-serif !important;

    font-size: 30px !important;

    font-weight: 900 !important;

    letter-spacing: -1px !important;

    line-height: 1 !important;

    color: #111111 !important;
}


/* Precio de oferta */

ul.products li.product .ss-card-body > .ss-price ins {

    text-decoration: none !important;

}


/* Precio anterior */

ul.products li.product .ss-card-body > .ss-price del {

    display: block !important;

    margin-bottom: 4px !important;

    color: #999999 !important;

    font-size: 13px !important;

    font-weight: 500 !important;

    letter-spacing: 0 !important;
}


/* -------------------------
   PRODUCTO INDIVIDUAL
   ------------------------- */

.single-product div.product .price {

    margin: 8px 0 16px !important;

    font-family: Arial, Helvetica, sans-serif !important;

    font-size: 42px !important;

    font-weight: 900 !important;

    letter-spacing: -1.5px !important;

    line-height: 1 !important;

    color: #111111 !important;
}


/* Precio de oferta */

.single-product div.product .price ins {

    text-decoration: none !important;

}


/* Precio anterior */

.single-product div.product .price del {

    display: block !important;

    margin-bottom: 5px !important;

    color: #999999 !important;

    font-size: 16px !important;

    font-weight: 500 !important;

    letter-spacing: 0 !important;
}


/* -------------------------
   CELULAR - CARDS
   ------------------------- */

@media (max-width: 600px) {

    ul.products li.product .ss-card-body > .ss-price .price,
    ul.products li.product .ss-card-body > .ss-price
    .woocommerce-Price-amount {

        font-size: 24px !important;

        letter-spacing: -.7px !important;

    }


    ul.products li.product .ss-card-body > .ss-price del {

        font-size: 11px !important;

    }


    /* Producto individual */

    .single-product div.product .price {

        font-size: 34px !important;

        letter-spacing: -1px !important;

    }


    .single-product div.product .price del {

        font-size: 14px !important;

    }

}









/* =========================================================
   PRECIO - CARDS
   Volver al tamaño compacto
   ========================================================= */

ul.products li.product .ss-card-body > .ss-price .price,
ul.products li.product .ss-card-body > .ss-price
.woocommerce-Price-amount {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 25px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.1 !important;
    color: #111111 !important;
}


/* =========================================================
   PRECIO - PRODUCTO INDIVIDUAL
   Grande y destacado
   ========================================================= */

.single-product div.product .price,
.single-product div.product p.price {

    font-family: "Arial Black", Arial, Helvetica, sans-serif !important;

    font-size: 48px !important;

    font-weight: 900 !important;

    letter-spacing: -2px !important;

    line-height: .95 !important;

    color: #111111 !important;

    margin: 6px 0 18px !important;
}


/* Precio anterior en oferta */

.single-product div.product .price del,
.single-product div.product p.price del {

    font-family: Arial, Helvetica, sans-serif !important;

    font-size: 15px !important;

    font-weight: 500 !important;

    letter-spacing: 0 !important;

    color: #999999 !important;

    margin-left: 8px !important;

}


/* Precio rebajado */

.single-product div.product .price ins,
.single-product div.product p.price ins {

    text-decoration: none !important;

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 600px) {

    /* Cards */

    ul.products li.product .ss-card-body > .ss-price .price,
    ul.products li.product .ss-card-body > .ss-price
    .woocommerce-Price-amount {

        font-size: 23px !important;

        letter-spacing: -0.5px !important;

    }


    /* Producto individual */

    .single-product div.product .price,
    .single-product div.product p.price {

        font-size: 36px !important;

        letter-spacing: -1.2px !important;

    }

}














/* =========================================================
   SUPPLEMENTSPORT
   PADDING REAL DE LAS TARJETAS ASTRA
   ========================================================= */

/* TARJETA */
ul.products li.product.ast-article-single {
    background: #ffffff !important;

    padding: 18px !important;

    margin: 0 !important;

    border-radius: 20px !important;

    box-sizing: border-box !important;

    overflow: hidden !important;

    box-shadow: 0 8px 25px rgba(0,0,0,.08) !important;
}


/* =========================================================
   IMAGEN
   ========================================================= */

ul.products li.product.ast-article-single
.astra-shop-thumbnail-wrap {

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;

    border-radius: 12px !important;

    overflow: hidden !important;
}


ul.products li.product.ast-article-single
.astra-shop-thumbnail-wrap img {

    width: 100% !important;

    margin: 0 !important;

    padding: 12px !important;

    object-fit: contain !important;

    box-sizing: border-box !important;
}


/* =========================================================
   INFORMACIÓN
   ========================================================= */

ul.products li.product.ast-article-single
.astra-shop-summary-wrap {

    width: 100% !important;

    margin: 0 !important;

    padding: 16px 0 0 !important;

    box-sizing: border-box !important;
}


/* Categoría */
ul.products li.product.ast-article-single
.ast-woo-product-category {

    margin-top: 0 !important;
}


/* Título */
ul.products li.product.ast-article-single
.woocommerce-loop-product__title {

    margin-left: 0 !important;

    margin-right: 0 !important;
}


/* Precio */
ul.products li.product.ast-article-single
.astra-shop-summary-wrap > .price {

    margin-left: 0 !important;

    margin-right: 0 !important;
}


/* =========================================================
   FOOTER PERSONALIZADO
   ========================================================= */

ul.products li.product.ast-article-single
.ss-card-footer {

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 600px) {

    ul.products li.product.ast-article-single {

        padding: 12px !important;

        border-radius: 15px !important;
    }


    ul.products li.product.ast-article-single
    .astra-shop-summary-wrap {

        padding-top: 12px !important;
    }


    ul.products li.product.ast-article-single
    .astra-shop-thumbnail-wrap img {

        padding: 8px !important;
    }

}



























/* =========================================================
   PRECIO PRINCIPAL DE LAS TARJETAS
   ========================================================= */

ul.products li.product .astra-shop-summary-wrap > .price {
    font-size: 24px !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    margin: 8px 0 10px !important;
}

ul.products li.product .astra-shop-summary-wrap > .price .woocommerce-Price-amount {
    font-size: 24px !important;
    font-weight: 800 !important;
}

ul.products li.product .astra-shop-summary-wrap > .price .woocommerce-Price-currencySymbol {
    font-size: 24px !important;
}

ul.products li.product .astra-shop-summary-wrap > .price del {
    display: block !important;
    font-size: 15px !important;
    margin-bottom: 3px !important;
    opacity: .45 !important;
}

ul.products li.product .astra-shop-summary-wrap > .price ins {
    font-size: 24px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}

ul.products li.product .astra-shop-summary-wrap > .price ins .woocommerce-Price-amount {
    font-size: 24px !important;
}















































/* =========================================================
   SUPPLEMENTSPORT - TARJETAS ASTRA UNIFICADAS
   CATEGORIAS / MARCAS / FILTROS
   ========================================================= */

/* =========================================================
   GRID
   ========================================================= */

ul.products {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   TARJETA ASTRA
   ========================================================= */

ul.products li.product.ast-article-post,
ul.products li.product.ast-article-single,
ul.products li.product {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 16px !important;

    background: #ffffff !important;

    border: 1px solid #eeeeee !important;
    border-radius: 18px !important;

    box-shadow:
        0 3px 8px rgba(0,0,0,.04),
        0 8px 24px rgba(0,0,0,.08) !important;

    overflow: hidden !important;

    display: flex !important;
    flex-direction: column !important;

    float: none !important;

    box-sizing: border-box !important;
}


/* =========================================================
   IMAGEN
   ========================================================= */

ul.products li.product .astra-shop-thumbnail-wrap {
    width: 100% !important;
    height: 220px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #ffffff !important;

    border-radius: 12px !important;

    overflow: hidden !important;
}

ul.products li.product .astra-shop-thumbnail-wrap > a:first-child {
    width: 100% !important;
    height: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

ul.products li.product .astra-shop-thumbnail-wrap img {
    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;

    margin: 0 !important;
    padding: 12px !important;

    object-fit: contain !important;

    display: block !important;
}


/* Ocultar carrito flotante de Astra */

ul.products li.product .ast-on-card-button {
    display: none !important;
}


/* =========================================================
   INFORMACION DEL PRODUCTO
   ========================================================= */

ul.products li.product .astra-shop-summary-wrap {
    width: 100% !important;

    margin: 0 !important;
    padding: 14px 0 0 !important;

    display: flex !important;
    flex-direction: column !important;

    box-sizing: border-box !important;
}


/* Categoria */

ul.products li.product .ast-woo-product-category {
    width: 100% !important;

    margin: 0 0 5px !important;

    color: #888888 !important;

    font-size: 11px !important;
    line-height: 1.3 !important;

    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}


/* Titulo */

ul.products li.product .ast-loop-product__link {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    text-decoration: none !important;
}

ul.products li.product .woocommerce-loop-product__title {
    width: 100% !important;

    margin: 0 0 7px !important;
    padding: 0 !important;

    color: #111111 !important;

    font-size: 15px !important;
    font-weight: 800 !important;

    line-height: 1.3 !important;

    min-height: 39px !important;

    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;

    overflow: hidden !important;
}


/* =========================================================
   PRECIO
   ========================================================= */

ul.products li.product .astra-shop-summary-wrap > .price {
    width: 100% !important;

    margin: 4px 0 8px !important;
    padding: 0 !important;

    color: #111111 !important;

    font-size: 24px !important;
    font-weight: 800 !important;

    line-height: 1.1 !important;

    white-space: normal !important;
}

ul.products li.product .astra-shop-summary-wrap > .price
.woocommerce-Price-amount {
    font-size: 24px !important;
    font-weight: 800 !important;

    white-space: nowrap !important;
}

ul.products li.product .astra-shop-summary-wrap > .price
.woocommerce-Price-currencySymbol {
    font-size: inherit !important;
}

ul.products li.product .astra-shop-summary-wrap > .price del {
    display: block !important;

    margin: 0 0 3px !important;

    color: #999999 !important;

    font-size: 13px !important;
}

ul.products li.product .astra-shop-summary-wrap > .price ins {
    text-decoration: none !important;
}


/* =========================================================
   OCULTAR BOTON NATIVO DE ASTRA
   ========================================================= */

ul.products li.product .astra-shop-summary-wrap > a.button {
    display: none !important;
}


/* =========================================================
   FOOTER PERSONALIZADO
   ========================================================= */

ul.products li.product .ss-card-footer {
    width: 100% !important;

    margin-top: auto !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}


/* =========================================================
   TRANSFERENCIA
   ========================================================= */

ul.products li.product .ss-card-footer .ss-transfer {
    width: 100% !important;

    margin: 7px 0 !important;
    padding: 7px 8px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex-wrap: wrap !important;
    gap: 4px !important;

    background: #effaf1 !important;

    border: 1px solid #b9dfbe !important;
    border-radius: 8px !important;

    color: #287b35 !important;

    font-size: 10px !important;
    line-height: 1.2 !important;

    text-align: center !important;
}

ul.products li.product .ss-transfer strong {
    font-size: 12px !important;
}


/* =========================================================
   CUOTAS + STOCK
   ========================================================= */

ul.products li.product .ss-card-footer .ss-info {
    width: 100% !important;

    display: grid !important;
    grid-template-columns: 1fr 1fr !important;

    gap: 6px !important;

    margin: 7px 0 !important;
}

ul.products li.product .ss-card-footer .ss-info > div {
    min-width: 0 !important;
    min-height: 48px !important;

    padding: 6px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #fafafa !important;

    border: 1px solid #e7e7e7 !important;
    border-radius: 8px !important;

    text-align: center !important;
}


/* =========================================================
   MEDIOS DE PAGO
   ========================================================= */

ul.products li.product .ss-card-footer .ss-payment {
    width: 100% !important;

    min-height: auto !important;

    margin: 4px 0 8px !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 4px !important;

    background: transparent !important;

    border: none !important;
    box-shadow: none !important;

    color: #555555 !important;

    font-size: 10px !important;
    font-weight: 600 !important;
}

ul.products li.product .ss-card-footer .ss-payment > span:first-child {
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
}

ul.products li.product .ss-card-footer .ss-payment:hover {
    background: transparent !important;
    border: none !important;
    color: #ef233c !important;
    transform: none !important;
}


/* =========================================================
   BOTON AÑADIR AL CARRITO
   ========================================================= */

ul.products li.product .ss-card-footer .button,
ul.products li.product .ss-card-footer a.button {
    width: 100% !important;

    height: 46px !important;
    min-height: 46px !important;

    margin: 0 !important;
    padding: 9px 10px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #ef233c !important;

    border: none !important;
    border-radius: 9px !important;

    color: #ffffff !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    line-height: 1.15 !important;

    text-align: center !important;
}


/* =========================================================
   HOVER
   ========================================================= */

@media (min-width: 601px) {

    ul.products li.product:hover {
        transform: translateY(-4px) !important;

        box-shadow:
            0 5px 12px rgba(0,0,0,.05),
            0 15px 35px rgba(0,0,0,.11) !important;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }

}


/* =========================================================
   TABLET PEQUEÑA
   ========================================================= */

@media (max-width: 800px) {

    ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    ul.products li.product {
        padding: 12px !important;
    }

    ul.products li.product .astra-shop-thumbnail-wrap {
        height: 190px !important;
    }

}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 600px) {

    ul.products {
        width: 100% !important;

        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 10px !important;
    }

    ul.products li.product {
        width: 100% !important;

        padding: 9px !important;

        border-radius: 13px !important;
    }

    ul.products li.product .astra-shop-thumbnail-wrap {
        height: 145px !important;

        border-radius: 9px !important;
    }

    ul.products li.product .astra-shop-thumbnail-wrap img {
        padding: 7px !important;
    }

    ul.products li.product .astra-shop-summary-wrap {
        padding-top: 9px !important;
    }

    ul.products li.product .ast-woo-product-category {
        font-size: 8px !important;
        margin-bottom: 3px !important;
    }

    ul.products li.product .woocommerce-loop-product__title {
        font-size: 11px !important;

        line-height: 16px !important;

        height: 32px !important;
        min-height: 32px !important;
        max-height: 32px !important;

        margin-bottom: 4px !important;
    }

    ul.products li.product .astra-shop-summary-wrap > .price {
        font-size: 18px !important;

        margin: 3px 0 5px !important;
    }

    ul.products li.product .astra-shop-summary-wrap > .price
    .woocommerce-Price-amount {
        font-size: 18px !important;
    }

    ul.products li.product .ss-transfer {
        padding: 5px 4px !important;
        margin: 4px 0 !important;

        font-size: 7px !important;
    }

    ul.products li.product .ss-transfer strong {
        font-size: 9px !important;
    }

    ul.products li.product .ss-info {
        gap: 4px !important;
        margin: 4px 0 !important;
    }

    ul.products li.product .ss-info > div {
        min-height: 35px !important;
        padding: 3px !important;

        font-size: 8px !important;
    }

    ul.products li.product .ss-payment {
        font-size: 8px !important;

        margin: 3px 0 6px !important;
    }

    ul.products li.product .ss-card-footer .button,
    ul.products li.product .ss-card-footer a.button {
        height: 36px !important;
        min-height: 36px !important;

        font-size: 9px !important;
        border-radius: 7px !important;
    }

}


/* =========================================================
   CELULAR MUY PEQUEÑO
   ========================================================= */

@media (max-width: 380px) {

    ul.products {
        gap: 8px !important;
    }

    ul.products li.product {
        padding: 8px !important;
    }

    ul.products li.product .astra-shop-thumbnail-wrap {
        height: 130px !important;
    }

    ul.products li.product .woocommerce-loop-product__title {
        font-size: 10px !important;
        line-height: 15px !important;

        height: 30px !important;
        min-height: 30px !important;
        max-height: 30px !important;
    }

    ul.products li.product .astra-shop-summary-wrap > .price,
    ul.products li.product .astra-shop-summary-wrap > .price
    .woocommerce-Price-amount {
        font-size: 16px !important;
    }

}





















































/* =========================================================
   SUPPLEMENTSPORT - SIDEBAR FILTROS WOO PRODUCT FILTER
   ========================================================= */

/* Contenedor general de filtros */
.wpf_items_wrapper {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   CADA BLOQUE DE FILTRO
   ========================================================= */

.wpf_items_wrapper .wpf_item {
    width: 100% !important;

    margin: 0 0 18px !important;
    padding: 18px !important;

    background: #ffffff !important;

    border: 1px solid #eeeeee !important;
    border-radius: 16px !important;

    box-shadow:
        0 3px 8px rgba(0,0,0,.035),
        0 8px 22px rgba(0,0,0,.06) !important;

    box-sizing: border-box !important;
}


/* =========================================================
   TITULO DEL FILTRO
   ========================================================= */

.wpf_items_wrapper .wpf_item_name {
    width: 100% !important;

    margin: 0 0 14px !important;
    padding: 0 0 11px !important;

    border-bottom: 1px solid #eeeeee !important;

    color: #111111 !important;

    font-family: Arial, Helvetica, sans-serif !important;

    font-size: 13px !important;
    font-weight: 800 !important;

    letter-spacing: .3px !important;

    line-height: 1.2 !important;
}


/* =========================================================
   LISTA DE MARCAS
   ========================================================= */

.wpf_items_wrapper .wpf_column_vertical {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}


/* Cada marca */

.wpf_items_wrapper .wpf_column_vertical > li {
    width: 100% !important;

    min-height: 36px !important;

    margin: 0 !important;
    padding: 5px 0 !important;

    display: flex !important;
    align-items: center !important;

    box-sizing: border-box !important;
}


/* =========================================================
   CHECKBOX
   ========================================================= */

.wpf_items_wrapper .wpf_column_vertical input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;

    width: 18px !important;
    height: 18px !important;

    min-width: 18px !important;
    min-height: 18px !important;

    margin: 0 10px 0 0 !important;
    padding: 0 !important;

    background: #ffffff !important;

    border: 1.5px solid #cfcfcf !important;
    border-radius: 5px !important;

    cursor: pointer !important;

    position: relative !important;

    transition:
        background .15s ease,
        border-color .15s ease,
        transform .15s ease !important;
}


/* Checkbox seleccionado */

.wpf_items_wrapper .wpf_column_vertical input[type="checkbox"]:checked {
    background: #ef233c !important;
    border-color: #ef233c !important;
}


/* Check */

.wpf_items_wrapper .wpf_column_vertical input[type="checkbox"]:checked::after {
    content: "✓" !important;

    position: absolute !important;

    left: 50% !important;
    top: 50% !important;

    transform: translate(-50%, -55%) !important;

    color: #ffffff !important;

    font-size: 12px !important;
    font-weight: 800 !important;

    line-height: 1 !important;
}


/* =========================================================
   NOMBRE DE MARCA
   ========================================================= */

.wpf_items_wrapper .wpf_column_vertical label {
    flex: 1 !important;

    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #333333 !important;

    font-family: Arial, Helvetica, sans-serif !important;

    font-size: 13px !important;
    font-weight: 500 !important;

    line-height: 1.3 !important;

    cursor: pointer !important;

    transition: color .15s ease !important;
}


.wpf_items_wrapper .wpf_column_vertical label:hover {
    color: #ef233c !important;
}


/* =========================================================
   CANTIDAD DE PRODUCTOS
   ========================================================= */

.wpf_items_wrapper .wpf_item_count {
    flex-shrink: 0 !important;

    min-width: 24px !important;
    height: 22px !important;

    margin-left: 8px !important;
    padding: 0 6px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #f5f5f5 !important;

    border-radius: 20px !important;

    color: #777777 !important;

    font-size: 10px !important;
    font-weight: 700 !important;

    line-height: 1 !important;
}


/* =========================================================
   RANGO DE PRECIO
   ========================================================= */

.wpf_items_wrapper .wpf_slider {
    width: calc(100% - 4px) !important;

    height: 5px !important;

    margin: 18px 2px 14px !important;

    background: #eeeeee !important;

    border: none !important;
    border-radius: 10px !important;

    box-shadow: none !important;
}


/* Barra seleccionada */

.wpf_items_wrapper .wpf_slider .ui-slider-range {
    height: 5px !important;

    background: #ef233c !important;

    border: none !important;
    border-radius: 10px !important;
}


/* =========================================================
   MANIJAS DEL SLIDER
   ========================================================= */

.wpf_items_wrapper .wpf_slider .ui-slider-handle {
    width: 17px !important;
    height: 17px !important;

    top: 50% !important;

    margin-top: -8px !important;
    margin-left: -8px !important;

    background: #ffffff !important;

    border: 2px solid #ef233c !important;
    border-radius: 50% !important;

    box-shadow: 0 2px 7px rgba(0,0,0,.15) !important;

    cursor: grab !important;

    outline: none !important;
}


.wpf_items_wrapper .wpf_slider .ui-slider-handle:active {
    cursor: grabbing !important;
    transform: scale(1.08) !important;
}


/* =========================================================
   VALORES DEL PRECIO
   ========================================================= */

.wpf_items_wrapper .wpf-slider-label {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    color: #777777 !important;

    font-size: 11px !important;
    font-weight: 500 !important;
}


.wpf_items_wrapper .wpf-slider-label .woocommerce-Price-amount {
    color: #222222 !important;

    font-size: 12px !important;
    font-weight: 700 !important;
}


.wpf_items_wrapper .wpf-slider-label .woocommerce-Price-currencySymbol {
    font-size: 11px !important;
}


/* =========================================================
   HOVER SUAVE
   ========================================================= */

.wpf_items_wrapper .wpf_item:hover {
    border-color: #e5e5e5 !important;

    box-shadow:
        0 4px 10px rgba(0,0,0,.04),
        0 10px 26px rgba(0,0,0,.07) !important;
}


/* =========================================================
   CELULAR
   ========================================================= */

@media (max-width: 800px) {

    .wpf_items_wrapper .wpf_item {
        padding: 15px !important;

        border-radius: 14px !important;
    }

    .wpf_items_wrapper .wpf_item_name {
        font-size: 12px !important;
    }

    .wpf_items_wrapper .wpf_column_vertical label {
        font-size: 12px !important;
    }

}


/* =========================================================
   CELULAR MUY PEQUEÑO
   ========================================================= */

@media (max-width: 600px) {

    .wpf_items_wrapper .wpf_item {
        padding: 13px !important;
        margin-bottom: 12px !important;

        border-radius: 13px !important;
    }

    .wpf_items_wrapper .wpf_column_vertical > li {
        min-height: 34px !important;
    }

    .wpf_items_wrapper .wpf_column_vertical input[type="checkbox"] {
        width: 17px !important;
        height: 17px !important;

        min-width: 17px !important;
        min-height: 17px !important;

        margin-right: 9px !important;
    }

}







/* =========================================================
   ESTILO DEL PRECIO - SUPPLEMENTSPORT
   ========================================================= */

ul.products li.product .astra-shop-summary-wrap > .price {
    font-family: "Arial", sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.4px !important;
    line-height: 1.2 !important;
}

/* Precio actual */
ul.products li.product .astra-shop-summary-wrap > .price .woocommerce-Price-amount {
    font-weight: 800 !important;
}

/* Símbolo $ */
ul.products li.product .astra-shop-summary-wrap > .price .woocommerce-Price-currencySymbol {
    font-weight: 800 !important;
}

/* Precio anterior en ofertas */
ul.products li.product .astra-shop-summary-wrap > .price del {
    font-weight: 500 !important;
    opacity: .55 !important;
}

/* Precio rebajado */
ul.products li.product .astra-shop-summary-wrap > .price ins {
    font-weight: 800 !important;
    text-decoration: none !important;
}