    /* Desktop styles */
    .gallery-carrusel-gallery-header {
        color: #000;
        font-size: 45px;
        font-weight: bold;
        margin-bottom: 12px;
        text-align: center;
        padding-top: 50px;
        padding-bottom: 15px;
    }
    .gallery-carrusel-form-header {
        color: #000;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 18px;
        text-align: center;
        padding-top: 24px;
        padding-bottom: 12px;
    }
@media (max-width: 600px) {
                .gallery-carrusel-wrapper {
                    display: grid !important;
                    grid-auto-flow: column !important;
                    grid-template-rows: repeat(3, 1fr) !important;
                    gap: 8px !important;
                    overflow-x: auto !important;
                    padding: 8px 0 !important;
                    width: 100% !important;
                    box-sizing: border-box !important;
                    scroll-behavior: smooth !important;
                    scrollbar-width: none !important;
                    -ms-overflow-style: none !important;
                }
                .gallery-carrusel-wrapper::-webkit-scrollbar {
                    display: none !important;
                }
                .gallery-carrusel-slide {
                    display: flex !important;
                    align-items: center !important;
                    justify-content: center !important;
                }
                .gallery-carrusel-slide img {   
                    width: auto !important;
                    max-width: 100px !important;
                    height: 140px !important;
                    border-radius: 10px !important;
                    margin: 0 auto !important;
                    display: block !important;
                }
                .gallery-carrusel-gallery-header {
                    font-size: 24px !important;
                    padding-top: 18px !important;
                    padding-bottom: 8px !important;
                    margin-bottom: 10px !important;
                    line-height: 1.2 !important;
                }
                .gallery-carrusel-form-header {
                    font-size: 20px !important;
                    padding-top: 10px !important;
                    padding-bottom: 6px !important;
                }
}
/* Gallery Carrusel Styles */
.gallery-carrusel-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 12px 0;
    scroll-behavior: smooth;
    width: 100%;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.gallery-carrusel-wrapper::-webkit-scrollbar {
    display: none;
}
.gallery-carrusel-slide {
    flex: 0 0 auto;
}
.gallery-carrusel-slide img {
    width: auto;
    height: 200px;
    max-width: 150px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #000;
    background: #fff;
}
.gallery-carrusel-gallery-header {
    color: #000;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 12px;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 15px;
}
