/* ============================
   PRODUCT CARD
============================ */

custom-salla-product-card {
    position: relative !important;
    overflow: hidden !important;
}


/* ============================
   ADD TO CART POSITION
============================ */

custom-salla-product-card .s-product-card-content-footer {
    position: absolute !important;

    left: 12px !important;
    bottom: 88px !important;

    width: 20px !important;
    height: 20px !important;

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

    z-index: 20 !important;

    display: block !important;
}


/* ============================
   BUTTON
============================ */

custom-salla-product-card
.s-product-card-content-footer
button {

    position: relative !important;

    width: 20px !important;
    height: 20px !important;

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

    max-width: 20px !important;
    max-height: 20px !important;

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

    border: 0 !important;
    border-radius: 0 !important;

    background: #e53935 !important;

    display: grid !important;
    place-items: center !important;

    line-height: 20px !important;

    box-shadow: none !important;

    transform: none !important;
}


/* ============================
   BUTTON CONTENT
============================ */

custom-salla-product-card
.s-product-card-content-footer
.s-button-text {

    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 20px !important;
    height: 20px !important;

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

    display: flex !important;

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

    font-size: 0 !important;

    line-height: 20px !important;

    transform: none !important;
}


/* ============================
   SALLA ORIGINAL ICON
============================ */

custom-salla-product-card
.s-product-card-content-footer
.s-button-text i {

    position: absolute !important;

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

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

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

    font-size: 13px !important;

    line-height: 1 !important;

    color: #ffffff !important;

    display: block !important;

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


/* ============================
   REMOVE ANY SVG OFFSET
============================ */

custom-salla-product-card
.s-product-card-content-footer
button svg {

    position: absolute !important;

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

    width: 13px !important;
    height: 13px !important;

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

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


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

custom-salla-product-card
.s-product-card-content-footer
button:hover {

    background: #d32f2f !important;

    transform: scale(1.05) !important;
}


/* ============================
   MOBILE - 3 COLUMNS
============================ */

@media (max-width: 768px) {

    .s-products-list-wrapper {

        display: flex !important;

        flex-wrap: wrap !important;

        gap: 8px !important;
    }

    .s-products-list-wrapper
    custom-salla-product-card {

        width: calc((100% - 16px) / 3) !important;

        flex: 0 0 calc((100% - 16px) / 3) !important;

        max-width: calc((100% - 16px) / 3) !important;
    }
}