.festive-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.festive-product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

.festive-product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1.15;
    background-color: #f7f7f7;
    overflow: hidden;
}

.festive-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.festive-product-card:hover .festive-product-image {
    transform: scale(1.03);
}

.festive-sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.festive-product-details {
    padding: 15px 5px;
}

.festive-product-title {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.festive-product-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s ease;
}

.festive-product-title a:hover {
    color: #c5a059;
}

/* Star rating style alignment */
.festive-product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    font-size: 12px;
}

.festive-product-rating .star-rating {
    font-size: 12px;
    width: 5.4em;
    height: 1em;
    font-family: star;
    position: relative;
    display: inline-block;
    overflow: hidden;
    letter-spacing: 0.1em;
    color: #111;
}

.festive-product-rating .star-rating::before {
    content: "SSSSS";
    position: absolute;
    top: 0;
    left: 0;
    color: #e0e0e0;
}

.festive-product-rating .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1em;
}

.festive-product-rating .star-rating span::before {
    content: "SSSSS";
    position: absolute;
    top: 0;
    left: 0;
}

.festive-review-count {
    color: #666;
    font-size: 12px;
}

.festive-product-price {
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.festive-product-price del {
    color: #999;
    font-size: 13px;
    margin-right: 5px;
    font-weight: normal;
}

.festive-product-price ins {
    text-decoration: none;
}

@media (max-width: 480px) {
    .festive-products-grid {
        gap: 12px;
    }
    .festive-product-title {
        font-size: 13px;
    }
    .festive-product-price {
        font-size: 14px;
    }
}
