.hero-formulario {
    border-radius: 20px !important;
}

.hero-valoracion {
    background: #fff;
    border-radius: 20px;
}




/* ============================================
   ESTILOS PERSONALIZADOS PRODUCTO INDIVIDUAL
   ============================================ */

/* Reset y Contenedor Principal */
.custom-single-product {
    width: 100%;

}

.custom-product-container {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-top: 60px;
}

/* ============================================
   PARTE IZQUIERDA (75%)
   ============================================ */

.custom-product-left {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ============================================
   PARTE SUPERIOR IZQUIERDA
   ============================================ */

.custom-product-top {
    display: flex;
    gap: 20px;
}

/* Columna de Imágenes (40%) */
.custom-images-column {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Imagen Principal */
.custom-main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.30));
    position: relative;
    background: white;
    cursor: zoom-in;
}

.custom-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* ===== EFECTO DE ZOOM SIMPLE AL PASAR EL MOUSE ===== */
.custom-main-image:hover img {
    transform: scale(1.15);
}

/* ===== ESTILOS PARA PANTALLA COMPLETA ===== */
.custom-fullscreen-modal {
    display: block;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
    opacity: 0;
}

.custom-fullscreen-modal.active {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    opacity: 1;
}

.custom-fullscreen-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.custom-fullscreen-content img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.custom-fullscreen-modal.active .custom-fullscreen-content img {
    transform: scale(1);
}

.custom-fullscreen-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.custom-fullscreen-close:hover {
    color: #DF1717;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Galería de Miniaturas */
.custom-thumbnails-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.custom-thumbnail {
    width: calc(25% - 8px);
    aspect-ratio: 1 / 1;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-thumbnail:hover {
    border-color: #1e3562;
    transform: scale(1.05);
}

.custom-thumbnail.active {
    border-color: #1e3562;
    box-shadow: 0 0 10px rgba(30, 53, 98, 0.3);
}

.custom-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Columna de Información (60%) */
.custom-info-column {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px 20px 0px 0px;
}

/* Título del Producto */
.custom-product-title {
    font-size: 34px;
    line-height: 38px;
    font-weight: 700;
    color: #1e3562;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    font-family: "Public Sans";
}

/* Ocultar título duplicado */
.custom-product-left h2.custom-postblog-title,
h2.custom-postblog-title {
    display: none !important;
}

/* Precios */
.custom-product-price {
    margin: 10px 0;
}

.custom-price-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.custom-old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.custom-discount-badge {
    background: #E9A613;
    color: #1E3562;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    font-family: "Poppins";
}

.custom-sale-price {
    font-size: 40px;
    color: #DF1717;
    font-weight: 700;
}

.custom-regular-price {
    font-size: 36px;
    color: #1e3562;
    font-weight: 700;
}

/* Descripción Corta */
.custom-short-description {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 15px 0;
}

.custom-short-description p {
    margin-bottom: 10px;
    font-family: "Poppins" !important;
    color: #212221 !important;
}

/* Botones de Acción */
.custom-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.custom-btn {
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins";
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 96%;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 3px 0 rgba(33, 34, 33, 0.50);
}

.custom-btn-primary {
    background: #DF1717;
    color: #fff;
}

.custom-btn-primary:hover {
    background: #E9A613;
    color: #1E3562;
}

.custom-btn-secondary {
    background: #1E3562;
    color: #E9A613;
}

.custom-btn-secondary:hover {
    background: #E9A613;
    color: #1E3562;
}

/* ============================================
   PARTE INFERIOR IZQUIERDA: Descripción Larga
   ============================================ */



.custom-description-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e3562;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    border-bottom: 3px solid #1e3562;
    padding-bottom: 10px;
}

.custom-long-description {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.custom-long-description p {
    margin-bottom: 15px;
}

.custom-long-description h2,
.custom-long-description h3 {
    color: #1e3562;
    font-weight: 500;
    margin: 25px 0 15px 0;
    font-family: "Public Sans" !important;
    font-size: 25px !important;
}


.custom-long-description ul,
.custom-long-description ol {
    margin: 15px 0;
    padding-left: 30px;
}

.custom-long-description li {
    margin-bottom: 8px;
}

/* ============================================
   PARTE DERECHA: Productos Relacionados (25%)
   ============================================ */

.custom-product-right {
    flex: 0 0 25%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    align-self: flex-start;
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.custom-related-header {
    margin-bottom: 20px;
}

.custom-related-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e3562;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #1e3562;
}

/* Productos Relacionados */
.custom-related-products {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custom-related-item {
    display: flex;
    background: #fff;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-related-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-related-discount {
    position: absolute;
    bottom: 6px;
    font-family: "Poppins" !important;
    right: 10px;
    background: #E9A613;
    color: #1E3562;
    padding: 4px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    /* display: none; */
    width: 35px;
}

.etiquetaenviogratis{
    position: absolute;
    top: 10px;
    background: #E9A613;
    color: #1E3562;
    padding: 4px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    /* display: none; */
    left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.etiquetaenviogratis p{
    font-family: "Public Sans" !important;
    font-size: 13px;
    color: #1E3562;
    font-weight: 700;
    margin: 0px !important;
}

.etiquetaenviogratis img{
    width: 25px !important;
    height: auto !important;
    object-fit: contain !important;
}

.garantias{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-around;
}

.garantia-item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.garantia-item img{
    width: 55px;
    height: auto;
    object-fit: contain;
}
.garantia-item p{
    font-family: "Public Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    color: #1E3562;
    margin: 0px !important;
    text-align: left;
}

.custom-related-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-related-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.custom-related-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.custom-related-old-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.custom-related-price {
    font-size: 16px;
    color: #e53935;
    font-weight: 700;
}

/* ============================================
   ESTILOS PARA LOS MODALES
   ============================================ */

/* Modal Overlay */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Content */
.custom-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Content para Tienda (más ancho) */
.custom-modal-tienda {
    max-width: 700px;
}

/* Botón de Cerrar */
.custom-modal-close {
    position: absolute;
    right: 20px;
    top: 13px;
    color: #999;
    font-size: 32px;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
}

.custom-modal-close:hover,
.custom-modal-close:focus {
    color: #DF1717;
    background: #f5f5f5;
    transform: rotate(90deg);
}

/* Título del Modal */
.custom-modal-title {
    background: linear-gradient(135deg, #1E3562 0%, #2a4a7f 100%);
    color: #fff;
    padding: 18px 30px;
    margin: 0;
    border-radius: 15px 15px 0 0;
    font-family: "Public Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Cuerpo del Modal */
.custom-modal-body {
    padding: 30px;
}

/* Información de la Tienda */
.custom-tienda-info {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-bottom: 3px solid #1E3562;
}

.custom-horario-section,
.custom-direccion-section {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-horario-section h3,
.custom-direccion-section h3 {
    color: #1E3562;
    font-family: "Public Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #E9A613;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-horario-section h3 i,
.custom-direccion-section h3 i {
    color: #E9A613;
    font-size: 20px;
}

.custom-horario-section p,
.custom-direccion-section p {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #333;
    margin: 8px 0;
    line-height: 1.6;
}

.custom-horario-section p strong {
    color: #1E3562;
    font-weight: 600;
}

/* Subtítulo del Formulario */
.custom-form-subtitle {
    color: #1E3562;
    font-family: "Public Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-align: center;
}

.custom-form-description {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 0 0 25px 0;
}

/* Estilos para Contact Form 7 dentro del Modal */
.custom-modal-body .wpcf7-form {
    margin: 0;
}

.custom-modal-body .wpcf7-form p {
    margin-bottom: 0px;
}

.custom-modal-body .wpcf7-form label {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1E3562;
    margin-bottom: 8px;
}

.custom-modal-body .wpcf7-form input[type="text"],
.custom-modal-body .wpcf7-form input[type="email"],
.custom-modal-body .wpcf7-form input[type="tel"],
.custom-modal-body .wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.custom-modal-body .wpcf7-form input[type="text"]:focus,
.custom-modal-body .wpcf7-form input[type="email"]:focus,
.custom-modal-body .wpcf7-form input[type="tel"]:focus,
.custom-modal-body .wpcf7-form textarea:focus {
    border-color: #1E3562;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 53, 98, 0.1);
}

.custom-modal-body .wpcf7-form textarea {
    min-height: 100px;
    resize: vertical;
}

.custom-modal-body .wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, #DF1717 0%, #c41414 100%);
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(223, 23, 23, 0.3);
    letter-spacing: 0.5px;
}

.custom-modal-body .wpcf7-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #E9A613 0%, #d19512 100%);
    color: #1E3562;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 166, 19, 0.4);
}

/* Mensajes de Contact Form 7 */
.custom-modal-body .wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 15px;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    text-align: center;
}

.custom-modal-body .wpcf7-validation-errors {
    border: 2px solid #DF1717;
    background: #ffe6e6;
    color: #DF1717;
}

.custom-modal-body .wpcf7-mail-sent-ok {
    border: 2px solid #28a745;
    background: #e6f9ea;
    color: #28a745;
}

/* Spinner de carga */
.custom-modal-body .wpcf7-spinner {
    margin: 0 auto;
    display: block;
}

/* Prevenir scroll del body cuando el modal está abierto */
body.modal-open {
    overflow: hidden;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    .custom-product-container {
        flex-direction: column;
    }
    
    .custom-product-left {
        flex: 0 0 100%;
        width: 100%;
    }

    .custom-postblog-content{
        margin-top: 0px;
    }
    
    .custom-product-right {
        flex: 0 0 100%;
        position: static;
        max-height: none;
    }
    
    .custom-related-products {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .custom-related-item {
        flex: 0 0 calc(33.333% - 10px);
    }

    .custom-info-column{
        gap: 0px;
    }
    
    .custom-tienda-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .custom-price-container{
        gap: 0px;
    }
}

@media (max-width: 768px) {
    .custom-product-top {
        flex-direction: column;
    }
    
    .custom-images-column,
    .custom-info-column {
        flex: 0 0 100%;
    }
    
    .custom-product-title {
        font-size: 23px;
    }

    
    .custom-sale-price,
    .custom-regular-price {
        font-size: 35px;
    }
    
    .custom-related-item {
        flex: 0 0 calc(50% - 8px);
    }
    
    .custom-thumbnail {
        width: calc(20% - 8px);
    }
    
    .custom-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .custom-modal-title {
        font-size: 20px;
        padding: 20px 25px;
    }
    
    .custom-modal-body {
        padding: 20px;
    }
    
    .custom-tienda-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .custom-single-product {
        padding: 10px;
    }
    
    .custom-product-container {
        gap: 20px;
    }
    
    .custom-product-left {
        gap: 25px;
    }
    
    
    
    .custom-action-buttons {
        gap: 10px;
    }
    
    .custom-btn {
        padding: 14px 20px;
        font-size: 18px;
    }
    
    .custom-related-item {
        flex: 0 0 100%;
    }
    
    .custom-product-bottom {
        padding: 0px;
    }
    
    .custom-description-title {
        font-size: 20px;
    }
    
    
    .custom-horario-section h3,
    .custom-direccion-section h3 {
        font-size: 16px;
    }
    
    .custom-fullscreen-close {
        font-size: 40px;
        width: 50px;
        height: 50px;
        top: 10px;
        right: 20px;
    }
}

/* Scrollbar personalizado para productos relacionados */
.custom-product-right::-webkit-scrollbar {
    width: 6px;
}

.custom-product-right::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-product-right::-webkit-scrollbar-thumb {
    background: #1e3562;
    border-radius: 10px;
}

.custom-product-right::-webkit-scrollbar-thumb:hover {
    background: #152847;
}


/* Sidebar de Productos Relacionados */
.custom-product-sidebar {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 20px;
    width: 25%;
}

.custom-sidebar-title {
    background: #1E3562;
    color: #FFFFFF;
    font-family: "Public Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px;
    margin: 0;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.custom-related-products {
    padding: 15px;
}

.custom-related-item {
    display: flex;
    gap: 0px;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E5E5;
    text-decoration: none;
    transition: background 0.3s ease;
}

.custom-related-item:last-child {
    border-bottom: none;
}

.custom-related-image {
    position: relative;
    width: 100px;
    height: 130px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #F8F8F8;
}

.custom-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-related-discount {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: #E9A613;
    color: #1E3562;
    font-family: "Public Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 3px;
    border-radius: 4px;
}

.custom-related-info {
    flex: 1;
}



.custom-related-prices {
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-related-old-price {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #999999;
    text-decoration: line-through;
}

.custom-related-price {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #DF1717;
}

/* Estilos adicionales para los campos del formulario */
.custom-modal-body .wpcf7-form .form-row {
    margin-bottom: 0px;
}

.custom-modal-body .wpcf7 {
    width: 100% !important;
}

.custom-modal-body .wpcf7-form .form-row{
    display: block !important;
}

.custom-modal-body .wpcf7-form .form-row.full-width {
    width: 100%;
}

.custom-modal-body .wpcf7 form.sent .wpcf7-response-output{
    margin: 0px;
    color: black !important;
}

.custom-modal-body .wpcf7-form .wpcf7-not-valid-tip {
    color: white;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.custom-modal-body .wpcf7-form br{
    display: none;
}

.custom-modal-body .wpcf7-form input.wpcf7-not-valid,
.custom-modal-body .wpcf7-form textarea.wpcf7-not-valid {
    border-color: #DF1717;
}

/* Animación del botón de envío cuando se está enviando */
.custom-modal-body .wpcf7-form.submitting input[type="submit"] {
    opacity: 0.7;
    cursor: wait;
}

/* Responsive */
@media (max-width: 1200px) {
    .custom-product-layout {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .custom-product-sidebar {
        grid-column: 1 / -1;
        position: static;
        width: 100%;
    }
    
    .custom-related-products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .custom-product-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .custom-product-summary .product_title {
        font-size: 22px;
    }
    
    .custom-price-wrapper .price ins {
        font-size: 28px;
    }
    
    .custom-related-products {
        grid-template-columns: 1fr;
    }
    
    .flex-control-thumbs li {
        width: 60px;
    }
    
    .flex-control-thumbs li img {
        height: 60px;
    }
}


/* ============================================
   ESTILOS PARA VARIABLES DE PRODUCTO
   ============================================ */





   /* ===== ESTILOS PARA FLECHAS DE NAVEGACIÓN EN FULLSCREEN ===== */

.custom-fullscreen-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    user-select: none;
    backdrop-filter: blur(5px);
}

.custom-fullscreen-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.custom-fullscreen-prev {
    left: 40px;
}

.custom-fullscreen-next {
    right: 40px;
}

/* Responsive para las flechas */
@media (max-width: 768px) {
    .custom-fullscreen-arrow {
        font-size: 35px;
        width: 50px;
        height: 50px;
    }
    
    .custom-fullscreen-prev {
        left: 20px;
    }
    
    .custom-fullscreen-next {
        right: 20px;
    }
    
    .custom-fullscreen-close {
        font-size: 40px;
        width: 50px;
        height: 50px;
        top: 10px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .custom-fullscreen-arrow {
        font-size: 30px;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .custom-fullscreen-prev {
        left: 10px;
    }
    
    .custom-fullscreen-next {
        right: 10px;
    }

    .bloquehero{
        width: 97% !important;
    }

    .bloquehero-iconos {
    padding: 25px 10px;
}
}