/* =========================================================
   AGROPET - CARD DE PRODUTO
   Desenvolvimento: Flyticon360
   ========================================================= */


/* =========================================================
   CARD
   ========================================================= */

.woocommerce ul.products li.product.agropet-product-card {
    width: 100%;
    margin: 0;
    padding: 0;
}

.agropet-product-card {
    list-style: none;
}

.agropet-product-card__inner {
    width: 100%;
    height: 100%;

    position: relative;

    display: flex;
    flex-direction: column;

    padding: 14px;

    background: #ffffff;

    border: 1px solid #e8ece9;
    border-radius: 16px;

    box-sizing: border-box;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.agropet-product-card__inner:hover {
    transform: translateY(-3px);

    border-color: #dce5df;

    box-shadow:
        0 12px 28px rgba(15, 23, 42, .08);
}


/* =========================================================
   ÁREA DA IMAGEM
   ========================================================= */

.agropet-product-card__media {
    width: 100%;
    aspect-ratio: 1 / 1;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border-radius: 12px;

    overflow: hidden;
}

.agropet-product-card__image-link {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none !important;
}

.agropet-product-card__image {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.agropet-product-card__image img {
    width: 100%;
    max-width: 220px;
    height: 100%;
    max-height: 220px;

    object-fit: contain;

    display: block;

    margin: 0 auto;
}


/* =========================================================
   DESCONTO
   ========================================================= */

.agropet-product-card__discount {
    min-width: 56px;
    min-height: 56px;

    position: absolute;
    top: 8px;
    left: 8px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 7px;

    background: #eef8ef;

    color: #138a4b;

    border-radius: 12px;

    box-sizing: border-box;

    z-index: 3;
}

.agropet-product-card__discount strong {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.agropet-product-card__discount span {
    margin-top: 3px;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}


/* =========================================================
   FAVORITO
   ========================================================= */

.agropet-product-card__favorite {
    width: 38px;
    height: 38px;

    position: absolute;
    top: 8px;
    right: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: #ffffff;

    color: #138a4b;

    border: 1px solid #e2e8e4;
    border-radius: 50%;

    cursor: pointer;

    z-index: 3;

    transition:
        background-color .18s ease,
        color .18s ease,
        border-color .18s ease,
        transform .18s ease;
}

.agropet-product-card__favorite:hover {
    background: #eef8ef;

    border-color: #cfe5d5;

    color: #075610;

    transform: scale(1.05);
}


/* =========================================================
   CONTEÚDO
   ========================================================= */

.agropet-product-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 14px 4px 2px;
}


/* =========================================================
   CATEGORIA
   ========================================================= */

.agropet-product-card__category {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    margin-bottom: 8px;
    padding: 5px 9px;

    background: #f1f8f3;

    color: #138a4b;

    border: 1px solid #dceee1;
    border-radius: 999px;

    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

.agropet-product-card__category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.agropet-product-card__title {
    min-height: 42px;

    margin: 0 0 10px;
    padding: 0;

    font-family: "Poppins", sans-serif;
    font-size: 13px !important;
    font-weight: 600;
    line-height: 1.35;

    text-align: left;
}

.agropet-product-card__title a {
    color: #173e2c !important;

    text-decoration: none !important;

    transition: color .18s ease;
}

.agropet-product-card__title a:hover {
    color: #138a4b !important;
}


/* =========================================================
   PREÇOS
   ========================================================= */

.agropet-product-card__pricing {
    margin-top: auto;
}

.agropet-product-card__old-price {
    margin-bottom: 3px;

    color: #8c9490;

    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;

    text-decoration: line-through;
}

.agropet-product-card__old-price .woocommerce-Price-amount {
    color: inherit;
}

.agropet-product-card__price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.agropet-product-card__current-price {
    color: #138a4b;

    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
}

.agropet-product-card__current-price .woocommerce-Price-amount {
    color: inherit;
    font: inherit;
}

.agropet-product-card__current-price ins {
    text-decoration: none;
}

.agropet-product-card__current-price del {
    display: none;
}


/* =========================================================
   ECONOMIA
   ========================================================= */

.agropet-product-card__saving {
    flex: 0 0 auto;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    padding: 6px 8px;

    background: #fff4ea;

    color: #ef6c00;

    border-radius: 9px;
}

.agropet-product-card__saving span {
    font-family: "Inter", sans-serif;
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.agropet-product-card__saving strong {
    margin-top: 3px;

    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}


/* =========================================================
   BOTÃO
   ========================================================= */

.agropet-product-card__actions {
    margin-top: 14px;
}

.agropet-product-card__actions .button,
.agropet-product-card__add-to-cart {
    width: 100%;
    min-height: 44px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    margin: 0 !important;
    padding: 10px 14px !important;

    background: #138a4b !important;

    color: #ffffff !important;

    border: 0 !important;
    border-radius: 12px !important;

    font-family: "Poppins", sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1 !important;

    text-align: center;
    text-decoration: none !important;

    box-sizing: border-box;

    transition:
        background-color .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.agropet-product-card__actions .button:hover,
.agropet-product-card__add-to-cart:hover {
    background: #075610 !important;

    color: #ffffff !important;

    transform: translateY(-1px);

    box-shadow:
        0 7px 16px rgba(7, 86, 16, .16);
}


/* =========================================================
   BENEFÍCIOS
   ========================================================= */

.agropet-product-card__benefits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;

    margin-top: 12px;
    padding-top: 10px;

    border-top: 1px solid #edf0ee;
}

.agropet-product-card__benefit {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 5px;

    color: #557160;

    font-family: "Inter", sans-serif;
    font-size: 9px;
    font-weight: 500;
    line-height: 1.2;
}

.agropet-product-card__benefit-icon {
    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #138a4b;
}


/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 767px) {

    .agropet-product-card__inner {
        padding: 10px;

        border-radius: 13px;
    }

    .agropet-product-card__content {
        padding: 10px 2px 2px;
    }

    .agropet-product-card__image img {
        max-width: 170px;
        max-height: 170px;
    }

    .agropet-product-card__title {
        min-height: 38px;

        font-size: 12px !important;
    }

    .agropet-product-card__current-price {
        font-size: 18px;
    }

    .agropet-product-card__saving {
        display: none;
    }

    .agropet-product-card__benefits {
        display: none;
    }

    .agropet-product-card__actions .button,
    .agropet-product-card__add-to-cart {
        min-height: 40px;

        font-size: 11px !important;

        border-radius: 10px !important;
    }

    .agropet-product-card__discount {
        min-width: 48px;
        min-height: 48px;
    }

    .agropet-product-card__discount strong {
        font-size: 15px;
    }

    .agropet-product-card__favorite {
        width: 34px;
        height: 34px;
    }
}