/* Product List widget styles */
.product-area-section {
    position: relative;
}

.ct-product-card {
    background: var(--white-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 10px 30px 0px;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* border: 1px solid var(--ct-border-color); */
}
.ct-product-card:hover {
    box-shadow: 0 20px 40px rgba(19, 23, 33, 0.08);
    /* border-color: var(--primary-color); */
}
.ct-product-card .thumb {
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    position: relative;
    background: #f8f9fb;
}
.ct-product-card .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ct-product-card .content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-title,
.ct-product-card h4 {
    font-size: 1.25rem;
    margin: 0 0 6px 0;
    color: var(--headding-color);
    font-weight: 600;
}
.ct-product-card h4 a {
    color: var(--headding-color);
}
.ct-product-card h4 a:hover {
    color: var(--primary-color);
}
.product-excerpt {
    color: var(--body-color);
    font-size: 0.95rem;
}
.product-price {
    margin-top: 4px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1;
    font-family: var(--headding-font);
    margin-bottom: 8px;
}
.price-regular {
    font-weight: 600;
    color: #8a8f98;
    font-size: 1.12rem;
}
.price-regular del {
    text-decoration-thickness: 1px;
}
.price-discount {
    color: #58b81c;
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: -0.01em;
}
.product-price.no-discount .price-discount {
    font-size: 1.3rem;
}
.product-actions {
    margin-top: auto;
    display: flex;
    gap: 8px;
    justify-content: space-between;
}
.product-actions .button-1 {
    background: var(--primary-color);
    color: #fff;
    padding: 9px 8px;
    text-decoration: none;
    width: 100%;
    text-align: center;
    line-height: 22px;
    border-radius: 3px;
    font-weight: 500;
    padding-top: 14px;
}
.product-actions .button-1.style-2 {
    background: transparent;
    border: 1px solid #e6e9ef;
    color: #111;
}

@media (max-width: 768px) {
    .ct-product-card .content {
        padding: 14px;
    }
}
