/* =========================================================
   TRUMED PRODUCT ARCHIVE CARD
========================================================= */

.trumed-archive-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 18px;
    overflow: hidden;

    border: 1px solid rgba(26, 39, 68, 0.08);
    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(18, 32, 67, 0.05);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

/* Kart hover */

.trumed-archive-card:hover {
    border-color: rgba(49, 84, 255, 0.22);

    box-shadow:
        0 16px 42px rgba(18, 32, 67, 0.10),
        0 0 28px rgba(49, 84, 255, 0.08);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.trumed-archive-card-image {
    display: flex;
    min-height: 260px;
    align-items: center;
    justify-content: center;

    padding: 18px;
    margin-bottom: 18px;
    overflow: hidden;

    border-radius: 16px;
    background: #f7f8fb;
}

.trumed-archive-card-image img {
    display: block;
    width: 100%;
    height: 225px;

    object-fit: contain;
    object-position: center;
}


/* =========================================================
   PRODUCT TITLE
========================================================= */

.trumed-archive-card-title {
    margin: 0 0 20px;
}

.trumed-archive-card-title,
.trumed-archive-card-title a {
    color: #191f2d;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.2px;
    text-decoration: none;

    transition: color 0.25s ease;
}

.trumed-archive-card-title a {
    display: -webkit-box;
    min-height: 52px;
    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.trumed-archive-card:hover .trumed-archive-card-title,
.trumed-archive-card:hover .trumed-archive-card-title a {
    color: #3154ff;
}


/* =========================================================
   PRODUCT BUTTON
========================================================= */

.trumed-archive-card-button {
    margin-top: auto;
}

.trumed-archive-card-button .elementor-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;

    padding: 11px 20px;

    border-radius: 999px;

    color: #ffffff !important;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    box-shadow: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.trumed-archive-card-button .elementor-button,
.trumed-archive-card-button .elementor-button span,
.trumed-archive-card-button .elementor-button-text {
    color: #ffffff !important;
}

.trumed-archive-card-button .elementor-button:hover {
    color: #ffffff !important;

    box-shadow:
        0 6px 16px rgba(49, 84, 255, 0.16);
}

.trumed-archive-card-button .elementor-button:hover span,
.trumed-archive-card-button .elementor-button:hover .elementor-button-text {
    color: #ffffff !important;
}


/* =========================================================
   LOOP GRID EQUAL HEIGHT
========================================================= */

.trumed-product-archive-grid .elementor-loop-container {
    align-items: stretch;
}

.trumed-product-archive-grid .e-loop-item {
    height: 100%;
}

.trumed-product-archive-grid .e-loop-item > .elementor {
    height: 100%;
}

.trumed-product-archive-grid
.e-loop-item
> .elementor
> .elementor-element {
    height: 100%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .trumed-archive-card-image {
        min-height: 220px;
    }

    .trumed-archive-card-image img {
        height: 190px;
    }

    .trumed-archive-card-title,
    .trumed-archive-card-title a {
        font-size: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .trumed-archive-card {
        padding: 14px;
        border-radius: 18px;
    }

    .trumed-archive-card-image {
        min-height: 180px;
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 14px;
    }

    .trumed-archive-card-image img {
        height: 155px;
    }

    .trumed-archive-card-title {
        margin-bottom: 16px;
    }

    .trumed-archive-card-title,
    .trumed-archive-card-title a {
        font-size: 17px;
        font-weight: 500;
        line-height: 1.35;
    }

    .trumed-archive-card-title a {
        min-height: 46px;
    }

    .trumed-archive-card-button .elementor-button {
        width: 100%;
        min-height: 42px;
        padding: 10px 14px;
    }

}