.custom-product-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-item {
    width: calc(33.33% - 20px);
    box-sizing: border-box;
    text-align: center;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.2em;
    color: #333;
    margin: 10px 0;
}

.product-price {
    color: #F44336;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-excerpt {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}


.countdown-widget {
    display: flex;
    gap: 15px;
    justify-content: center;
    text-align: center;
    font-family: Arial, sans-serif;
}

.countdown-item {
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 8px;
    min-width: 60px;
}

.countdown-item span {
    display: block;
}

.countdown-item .days,
.countdown-item .hours,
.countdown-item .minutes,
.countdown-item .seconds {
    font-size: 2em;
    color: #333;
}
