/* Image Gallery Styles */

.other-images {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.other-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.other-images img:hover {
    border-color: #D71920;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(215, 25, 32, 0.3);
}

.other-images img.active {
    border-color: #D71920;
    box-shadow: 0 0 10px rgba(215, 25, 32, 0.6);
}

.main-image-wrapper {
    position: relative;
    transition: all 0.3s ease;
}
