        /* --- Estilos para la Sección de Colección en Detalle (con Hotspots) --- */
        .collection-detail-section {
            max-width: 900px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
            padding-bottom: 30px;
            width: 100%;
            margin-bottom: 40px; /* Espacio entre secciones */
        }

        .collection-detail-section h1 {
            color: #5a2d82;
            padding: 20px 0;
            margin: 0;
            font-size: 2.2em;
        }

        .image-container {
            position: relative;
            width: 100%;
            cursor: zoom-in; /* Indica que la imagen es clicable para zoom */
            overflow: visible;
        }

        .zoom-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease-in-out;
            border-radius: 15px;
        }

        .image-container:hover .zoom-image {
            transform: scale(1.2);
            transition: all 0.4s ease-in-out;
            box-shadow: 0px 0px 26px #323232;
        }

        /* Estilos para los Hotspots */
        .hotspot {
            position: absolute;
            width: 28px;
            height: 28px;
            background-color: rgba(255, 255, 255, 0.8);
            border: 2px solid #e63b3b;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            color: #202020;
            font-size: 1.1em;
            transition: background-color 0.2s ease, transform 0.2s ease;
            z-index: 10;
        }

        .hotspot:hover {
            background-color: #e32020;
            color: white;
            transform: scale(1.1);
        }

        /* Posiciones de ejemplo para los hotspots (ajusta según tu imagen) */
        .hotspot-1 { top: 25%; left: 35%; }
        .hotspot-2 { top: 55%; left: 48%; }
        .hotspot-3 { top: 80%; left: 60%; }

        /* Estilos para el Tooltip (información revelada) */
        .hotspot-info {
            position: absolute;
            background-color: rgba(0, 0, 0, 0.85);
            color: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            width: 250px;
            text-align: left;
            z-index: 100;
            display: none;
            animation: fadeIn 0.3s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hotspot-info.active {
            display: block;
        }

        /* Posicionamiento relativo al hotspot - ajusta para que no se salga de la pantalla */
        .hotspot-1 + .hotspot-info { top: 30%; left: 40%; }
        .hotspot-2 + .hotspot-info { top: 60%; left: 50%; transform: translateX(-50%); }
        .hotspot-3 + .hotspot-info { bottom: 10%; right: 20%; }

        .close-info {
            position: absolute;
            top: 8px;
            right: 8px;
            background: none;
            border: none;
            color: white;
            font-size: 1.2em;
            cursor: pointer;
            font-weight: bold;
        }

        /* --- Estilos para la Sección de Imagen Simple con Zoom --- */
        .simple-zoom-section {
            max-width: 700px; /* Un poco más pequeña que la de hotspots */
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
            width: 100%;
        }

        .simple-zoom-section h2 {
            color: #3d7e5d; /* Un color diferente para distinguirla */
            margin-bottom: 20px;
        }

        .zoomable-image-wrapper {
            width: 100%;
            overflow: hidden;
            border-radius: 8px;
            cursor: zoom-in; /* Indica que la imagen es clicable para zoom */
        }

        .zoomable-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease-in-out;
        }

        .zoomable-image-wrapper:hover img {
            transform: scale(1.02); /* Zoom sutil al pasar el ratón */
        }


        /* --- Estilos para el Modal de Zoom (Lightbox) - COMÚN A AMBAS SECCIONES --- */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            padding-top: 50px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
            animation: fadeInModal 0.3s ease-out;
        }

        @keyframes fadeInModal {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 900px; /* Máximo ancho del modal */
            animation: zoomIn 0.3s;
        }

        @keyframes zoomIn {
            from { transform: scale(0.8); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }

        .close-modal:hover,
        .close-modal:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }

        /* --- Media Queries para Responsividad --- */
        @media (max-width: 768px) {
            .collection-detail-section, .simple-zoom-section {
                margin: 10px;
                padding-bottom: 20px;
            }
            .collection-detail-section h1 {
                font-size: 1.8em;
            }
            .hotspot {
                width: 24px;
                height: 24px;
                font-size: 1em;
            }
            .hotspot-info {
                width: 80%;
                left: 50% !important;
                transform: translateX(-50%) !important;
                padding: 10px;
                font-size: 0.9em;
                top: auto !important;
                bottom: 5% !important;
            }

            .modal-content {
                width: 95%;
            }

            .hotspot-1 { top: 20%; left: 30%; }
            .hotspot-2 { top: 50%; left: 50%; }
            .hotspot-3 { top: 75%; left: 70%; }

            .zoom-image {
            width: 100%;
            height: auto;
            display: block;
        }
        }