#container {
    max-width: 1400px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

h1 {
    margin-bottom: 20px;
    text-align: center;
}

.timer {
    display: flex;
    margin-bottom: 20px;
    font-size: 18px;
    margin-top: 20px;
    justify-content: space-between;
    align-items: center;
}

.products {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}



.product {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
    text-align: center;
    width: calc(25% - 40px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.product img {
    max-width: 100%;
    height: auto;
    height: 228px;
    width: 228px;
    width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product:hover img {
    transform: rotate(-5deg);
    border-radius: 20px;
}

.product:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


#discount {
    background: red;
    color: white;
    /* position: absolute; */
    /* top: 10px;
    left: 10px; */
    width: 40px;
    height: 20px;
    border-radius: 5px;
    text-align: center;
}

.original-price {
    text-decoration: line-through;
    color: #999;
}

.rating {
    color: #FFD700;
}

.add-to-cart {
    background: #000;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
}

.view-all {
    display: block;
    margin: 20px auto;
    background: #f33;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
}

.arrow-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.circle-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.2s ease;
}

.circle-btn:hover {
    background-color: #e0e0e0;
}

#selestime {
    margin-top: 10px;
    margin-left: -400px;
}