.uniform-image-wrapper {
    height: 400px;
    /* hoặc chiều cao bạn muốn */
    overflow: hidden;
}

.uniform-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cắt ảnh vừa khung */
    display: block;
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px #fff;
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}


#mainPhoto .item {
    cursor: pointer;
}

.photo_slider {
    margin-bottom: 30px;
}

#intro {
    padding-bottom: 0;
}

#weare {
    padding-top: 0;
    padding-bottom: 0;
}

#weare h2 {
    color: #f2545f;
    font-size: xxx-large;
}

#weare p {
    font-size: x-large;
    color: #f2545f;
}

#ourProduct {
    padding-top: 30px;
}

@media (max-width: 980px) {
    #weare h2 {
        color: #f2545f;
        font-size: xx-large;
    }

    #weare p {
        font-size: large;
        color: #f2545f;
    }
}

.uniform-image-wrapper {
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.uniform-image-wrapper:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}