/*============================================================================================
   Start Card CSS
==============================================================================================*/
.product.style-9 {
    position: relative;
    font-family: var(--font-family);
    font-size: 1rem;
    color: #020101;
    transition: box-shadow 0.3s, opacity 0.3s;
    border-radius: 6px;
    background: var(--white-color);
    text-align: center;
}
.product.style-9 .product-price {
    display: flex;
    justify-content: center;
    gap: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: initial;
    margin-top: 10px;
}
.product.style-9 .product-media {
    position: relative;
    margin-bottom: 0;
    transition: box-shadow 0.35s;
    overflow: hidden;
    border-radius: 6px 6px 0px 0px;
}
.product.style-9 .product-media img {
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    border-radius: 6px 6px 0px 0px;
}
.product.style-9:hover .product-media img {
    transform: scale(1.04);
}

.product.style-9 .product-details {
	padding-top: 0;
	border-radius: 6px;
}
.product.style-9 .product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 12px 0px;
    line-height: 1.2;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: opacity 0.3s;
    border-radius: 0px 0px 6px 6px;
    transition: all 0.3s ease;
}
.product.style-9 .product-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}
.product-price .new-price:not(:last-child) {
    margin-right: 0;
}
@media (max-width: 767px) {
    .product.style-9 .product-card-action {
        justify-content: center;
        gap: 8px;
    }
}

/*============================================================================================
   End Card CSS
==============================================================================================*/
