body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.video-container {
    margin: 10px 10px 0px 10px;
    display: flex;
    background: transparent;
    position: relative;
}

.video-container img {
    min-width: 100%;
    min-height: 100%;
    border-radius: 5px;
}

/* grid big small */

.grid-container {
    margin: 10px;
    display: grid;
    grid-template-columns: 2.25fr 1.75fr;
    gap: 10px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    gap: 14px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.grid-item-large {
    display: grid;
    gap: 8px;
}

.grid-tem-small {
    grid-template-rows: 1fr 1fr;
}

/* products */

.product {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    z-index: 1;
    opacity: 0;
    transform: scale(0.5);
    animation: zoomIn 0.7s ease-in-out forwards;
}

/* Zoom-In Animation */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Sequential Animation Delay */
.product:nth-child(1) {
    animation-delay: 0.2s;
}

.product:nth-child(2) {
    animation-delay: 0.4s;
}

.product:nth-child(3) {
    animation-delay: 0.6s;
}

/* Style the images */
.product img {
    border-radius: 10px;
    margin-top: 10px;
    width: 100%;
    height: auto;
}

/* Style the headings and button */
h3 {
    font-size: 14px;
    color: #000;
    margin: 5px;
}

.product .price {
    margin-top: 5px;
    font-size: 12px;
    color: #333;
}

.product .old-price {
    text-decoration: line-through;
    color: #888;
}

.product .discount {
    font-size: 10px;
    color: #e74c3c;
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 10px;
}

.grid-head {
    padding-top: 15%;
    padding-left: 5%;
    background: #d5d0d0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.grid-head p {
    font-size: 36px;
    margin: 0px;
}

.grid-head .ooo {
    margin-top: 5px;
    font-size: 20px;
}
