.today-deals-wrap {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.today-deals-title {
    background: #ff5c00;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 20px;
    margin: 0;
    display: flex;
    align-items: center;
}

.deals-content {
    padding: 20px;
}

.deals-item {
    display: flex;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.left-block {
    width: 30%;
    padding: 10px;
}
.left-block .image {
    position: relative;
}

.left-block .image img {
    max-width: 100%;
    border-radius: 8px;
}
.label-sale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff5c00;
    color: #fff;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.right-block {
    padding: 10px;
    flex: 1;
}

.right-block h4 a {
    font-size: 18px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.right-block h4 a:hover {
    color: #ff5c00;
}

.price {
    margin: 10px 0;
}

.price .price-new {
    font-size: 24px;
    color: #ff5c00;
    font-weight: bold;
}

.price .price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-left: 10px;
}

.item-timer {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.item-timer .time-item {
    text-align: center;
    background: #ffefdc;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.item-timer .num-time {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.item-timer .name-time {
    font-size: 12px;
    color: #666;
}
/* Responsive Design */
@media (max-width: 768px) {
    .left-block,
    .right-block {
        flex: 1 1 100%;
    }

    .today-deals-title {
        font-size: 18px;
        padding: 10px 15px;
    }
    .deals-item {
        flex-wrap: wrap;
    }
}

.today-deals-wrap p.price span.woocommerce-Price-amount.amount {
    font-size: 24px;
    color: #ff5c00;
    font-weight: bold;
}
.today-deals-wrap p.price del span.woocommerce-Price-amount.amount {
    text-decoration: line-through !important;
    color: #999 !important;
    font-size: 16px !important;
    margin-left: 10px !important;
}
