
/* Product Card CSS START */
.card-product {
    max-height: 270px;
    min-height: 270px;
    max-width: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
    filter: drop-shadow(0px 1px 8px rgba(0, 0, 0, 0.25));
    box-shadow: inset;
}

@media (max-width: 576px) {
    .card-product {
        max-height: min-content;
        min-height: 270px;
    }
}

.discount-tag {
    background: #fb4918;
    position: absolute;
    border-radius: 6px;
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    margin-left: 1rem;
    margin-top: 0.75rem;
}

.like-tag {
    position: absolute;
    font-size: 20px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    right: 0px;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.like-tag .like-icon {
    color: #d7443e !important;
}

.card-img-top {
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
}

.img-vendor {
    width: 42px;
    height: 42px;
    position: absolute;
    margin-top: -28px;
    left: 0;
    justify-items: start;
    filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.25));
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
}

.card-content {
    display: flex;
    flex-direction: row;
}

.product-title {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    display: -webkit-box;
    align-items: center;
    text-align: left;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.vendor-content-wrapper {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 12px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #2e2e2e;
}

.vendor-name {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
    display: flex;
    align-items: center;
    text-align: left;
    color: #f97e88 !important;
}

.vn-hovered {
    white-space: nowrap;
    background: white;
    position: fixed;
    border: 1px solid #f97e88;
}

.vendor-divider {
    color: #f97e88;
}

.product-tag {
    border: 1px solid #2e2e2e;
    box-sizing: border-box;
    border-radius: 4px;
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #767676;
}

.pax-tag {
    border: 1px solid #2e2e2e;
    box-sizing: border-box;
    border-radius: 4px;
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 12px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #767676;
}

.product-price-old {
    font-family: "Source Sans Pro";
    font-weight: 500;
    text-decoration: line-through;
    font-style: normal;
    font-size: 9pt;
    line-height: 14px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #6b6b6b;
}

.product-price {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 600;
    font-size: 10pt;
    line-height: 13px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #000000;
}

/* Product Card CSS END */