/* Estilos para el lightbox */
        .rolex-lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-color: rgba(0, 0, 0, 0.9);
        }
        
        .lightbox-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .lightbox-close {
            position: absolute;
            top: 15px;
            right: 25px;
            color: #f1f1f1;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1000;
        }
        
        /* Estilos para el carrusel dentro del lightbox */
        .embla-lightbox {
            position: relative;
            width: 80%;
            max-height: 80vh;
        }
        
        .embla-lightbox__viewport {
            overflow: hidden;
            width: 100%;
        }
        
        .embla-lightbox__container {
            display: flex;
            user-select: none;
        }
        
        .embla-lightbox__slide {
            min-width: 100%;
            position: relative;
        }
        
        .embla-lightbox__slide img {
            display: block;
            max-height: 80vh;
            max-width: 100%;
            margin: 0 auto;
            object-fit: contain;
        }
        
        .embla-lightbox__buttons {
            display: flex;
            justify-content: space-between;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: -50px;
            right: -50px;
            z-index: 1;
        }
        
        .embla-lightbox__button {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.7);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
        }
        
        .embla-lightbox__button svg {
            width: 24px;
            height: 24px;
        }
        
        .embla-lightbox__dots {
            display: flex;
            justify-content: center;
            gap: 4px;
            position: absolute;
            bottom: -30px;
            left: 0;
            right: 0;
        }

        .embla-lightbox__dot {
            width: 20px;
            height: 5px;
            border-radius: 10px;
            background-color: #ccc;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all 0.3s ease;
        }

        .embla-lightbox__dot--selected {
            background-color: #127749;
            height: 5px;
            width: 50px;
        }
                .gallery-thumbnails {
            margin-top: 20px;
        }

        .gallery-thumb {
            max-width: 400px;
            max-width: 400px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid #ddd;
            transition: all 0.3s ease;
        }

        .gallery-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-thumb:hover {
            border-color: #155e3a;
        }