/* ==============================> MIGAS DE PAN - PRODUCTO */
.mgp-breadcrumb {
    display: inline-flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}
/* -> Lista */
.mgp-lista {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    flex-wrap: wrap;
}
/* -> Ítem base */
.mgp-item {
    display: flex;
    align-items: center;
    position: relative;
    background: color-mix(in srgb, var(--e-global-color-primary) 12%, transparent);
    padding: 8px 20px 8px 28px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--e-global-color-primary);
    clip-path: polygon(0% 0%, calc(100% - 12px) 0%, 100% 50%, calc(100% - 12px) 100%, 0% 100%, 12px 50%);
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}
.mgp-item:first-child {
    padding-left: 16px;
    clip-path: polygon(0% 0%, calc(100% - 12px) 0%, 100% 50%, calc(100% - 12px) 100%, 0% 100%);
    border-radius: 4px 0 0 4px;
}
/* -> Enlace */
.mgp-enlace {
    color: var(--e-global-color-primary);
    text-decoration: none;
    transition: color 0.25s ease;
}
/* -> Hover en ítems con enlace */
.mgp-item:not(.mgp-activo):not(.mgp-separador):hover {
    background: color-mix(in srgb, var(--e-global-color-primary) 22%, transparent);
    cursor: pointer;
}
.mgp-item:not(.mgp-activo):not(.mgp-separador):hover .mgp-enlace {
    color: var(--e-global-color-primary);
    filter: brightness(0.85);
}
/* -> Separador oculto (forma de flecha integrada en clip-path) */
.mgp-separador {
    display: none;
}
/* -> Ítem activo (página actual) */
.mgp-item.mgp-activo {
    background: var(--e-global-color-primary);
    color: #fff;
    pointer-events: none;
}
/* -> Animación de entrada */
@keyframes mgp-entrada {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.mgp-item {
    animation: mgp-entrada 0.35s ease both;
}
.mgp-item:nth-child(1) { animation-delay: 0s; }
.mgp-item:nth-child(2) { animation-delay: 0.06s; }
.mgp-item:nth-child(3) { animation-delay: 0.12s; }
.mgp-item:nth-child(4) { animation-delay: 0.18s; }
.mgp-item:nth-child(5) { animation-delay: 0.24s; }
/* -> Compatibilidad iOS (prefijos WebKit) */
.mgp-breadcrumb,
.mgp-lista,
.mgp-item {
    -webkit-transition: background 0.25s ease, color 0.25s ease;
    -webkit-animation-fill-mode: both;
}
/* RESPONSIVE */
/* -> Tablet (768px) */
@media (max-width: 768px) {
    .mgp-lista {
        flex-wrap: wrap;
        gap: 4px;
    }
    .mgp-item {
        font-size: 12px;
        padding: 6px 16px 6px 22px;
        clip-path: polygon(0% 0%, calc(100% - 10px) 0%, 100% 50%, calc(100% - 10px) 100%, 0% 100%, 10px 50%);
    }
    .mgp-item:first-child {
        clip-path: polygon(0% 0%, calc(100% - 10px) 0%, 100% 50%, calc(100% - 10px) 100%, 0% 100%);
        padding-left: 12px;
    }
}
/* -> Móvil (480px) */
@media (max-width: 480px) {
    .mgp-lista {
        gap: 2px;
    }
    .mgp-item {
        font-size: 11px;
        padding: 5px 14px 5px 18px;
    }
}

/* ==============================> ESTILOS DE IMAGEN */

.woocommerce-product-gallery .wd-carousel-item>figure{
    border: 1px solid var(--e-global-color-primary);
}

.woocommerce-product-gallery .wd-gallery-thumb .wd-carousel-item img{
    border: 1px solid var(--e-global-color-primary);
}

/* ==============================> "CARACTERÍSTICAS DE PRODUCTO" */

/* -> Contenedor principal */
.cprod-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 520px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d9e9f5;
    background-color: #f0f9ff;
}

/* -> Bloques internos */
.cprod-bloque {
    opacity: 0;
    transform: translateY(10px);
    animation: cprod-entrada 0.35s ease forwards;
}

.cprod-bloque--caracteristicas {
    animation-delay: 0s;
    background-color: #f0f9ff;
    padding: 0;
}

.cprod-bloque--impresoras {
    animation-delay: 0.1s;
    background-color: #f0f9ff;
    padding-bottom: 16px;
}

/* -> Títulos */
.cprod-titulo {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 20px;
    color: var(--e-global-color-secondary);
    background-color: #85cfff;
}

.cprod-titulo--impresoras {
    margin-top: 4px;
}

/* -> Tabla de atributos */
.cprod-titulo--impresoras {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 20px;
    color: #fff;
    background-color: var(--e-global-color-secondary);
}

.cprod-tabla {
    display: flex;
    flex-direction: column;
}

.cprod-fila {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #e0d9f5;
    gap: 12px;
    transition: background-color 0.2s ease;
}

.cprod-fila:last-child {
    border-bottom: none;
}

.cprod-fila:hover {
    background-color: #caeaff;
}

.cprod-label {
    font-size: 14px;
    font-weight: 700;
    color: #3a2f6b;
    min-width: 120px;
    flex-shrink: 0;
}

.cprod-valor {
    font-size: 14px;
    color: #3a2f6b;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.cprod-valor::before {
    content: ':';
    margin-right: 2px;
    color: #7b6fbf;
}

/* -> Círculo de color */
.cprod-color-circulo {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.cprod-fila:hover .cprod-color-circulo {
    transform: scale(1.15) translateZ(0);
    box-shadow: 0 0 0 3px rgba(83, 74, 183, 0.25);
}

/* -> Lista de impresoras */
.cprod-impresoras-lista {
    list-style: none;
    margin: 8px 16px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cprod-impresora-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #caeaff;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 0;
    animation: cprod-entrada 0.3s ease forwards;
}

.cprod-impresoras-lista li:nth-child(1) { animation-delay: 0.15s; }
.cprod-impresoras-lista li:nth-child(2) { animation-delay: 0.22s; }
.cprod-impresoras-lista li:nth-child(3) { animation-delay: 0.29s; }
.cprod-impresoras-lista li:nth-child(4) { animation-delay: 0.36s; }
.cprod-impresoras-lista li:nth-child(5) { animation-delay: 0.43s; }

.cprod-impresora-item:hover {
    background-color: var(--e-global-color-primary);
    transform: translateX(4px) translateZ(0);
}

.cprod-impresora-icono {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background-color: var(--e-global-color-primary);
    color: #ffffff;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.cprod-impresora-item:hover .cprod-impresora-icono {
    background-color: rgba(255, 255, 255, 0.25);
}

.cprod-impresora-icono svg {
    width: 18px;
    height: 18px;
}

.cprod-impresora-nombre {
    font-size: 14px;
    font-weight: 500;
    color: #3a2f6b;
    transition: color 0.2s ease;
}

.cprod-impresora-item:hover .cprod-impresora-nombre {
    color: #ffffff;
}

/* -> Botón ver lista completa */
.cprod-ver-mas-wrap {
    padding: 10px 16px 14px;
    text-align: right;
}

.cprod-ver-mas {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--e-global-color-primary);
    text-decoration: none;
    border: 1.5px solid var(--e-global-color-primary);
    border-radius: 6px;
    padding: 6px 14px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.cprod-ver-mas svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.cprod-ver-mas:hover {
    background-color: var(--e-global-color-primary);
    color: #ffffff;
    transform: translateY(-1px) translateZ(0);
}

.cprod-ver-mas:hover svg {
    transform: translateX(3px);
}

/* -> Animación de entrada */
@keyframes cprod-entrada {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -> Responsive tablets (768px) */
@media (max-width: 768px) {
    .cprod-wrapper {
        max-width: 100%;
    }

    .cprod-fila {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 16px;
    }

    .cprod-label {
        font-size: 13px;
        min-width: unset;
    }

    .cprod-valor {
        font-size: 13px;
    }

    .cprod-impresoras-lista {
        margin: 8px 12px 0;
    }

    .cprod-impresora-nombre {
        font-size: 13px;
    }
}

/* -> Responsive móvil (480px) */
@media (max-width: 480px) {
    .cprod-titulo {
        font-size: 12px;
        padding: 10px 16px;
    }

    .cprod-impresora-icono {
        width: 30px;
        height: 30px;
    }

    .cprod-impresora-icono svg {
        width: 16px;
        height: 16px;
    }
}

/* ==============================> "FICHA TECNICA + VALORACIONES" */

/* -> Contenedor principal */
.ft-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: stretch;
}

/* -> Bloque base */
.ft-bloque {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    border-radius: 14px;
    border: 1.5px solid #e5e0f8;
    border: none;
    background: #fff;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    -webkit-transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ft-bloque:hover {
    transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}

/* -> Título de bloque */
.ft-titulo {
    width: -webkit-fill-available;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #fff;
    background: var(--e-global-color-primary);
    padding: 8px 12px;
    border-radius: 8px 8px 0 0;
    text-transform: uppercase;
}

/* -> Número de rating */
.ft-rating-numero {
    font-size: 42px;
    line-height: 46px;
    font-weight: 700;
    color: var(--e-global-color-primary);
    margin: 12px 0 8px 0;
    transition: color 0.2s ease;
}

/* -> Estrellas */
.ft-estrellas {
    display: flex;
    gap: 3px;
    margin-bottom: 0;
}

.ft-estrella {
    font-size: 22px;
    transition: transform 0.2s ease;
    -webkit-transition: transform 0.2s ease;
}

.ft-estrella.llena {
    color: #f5a623;
}

.ft-estrella.vacia {
    color: #d8d8d8;
}

.ft-bloque:hover .ft-estrella.llena {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
}

/* -> Texto excelente */
.ft-excelente {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

/* -> Link ver comentarios */
.ft-ver-comentarios {
    font-size: 13px;
    color: var(--e-global-color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
    -webkit-transition: opacity 0.2s ease;
}

.ft-ver-comentarios:hover {
    opacity: 0.7;
}

/* -> Imagen PDF */
.ft-pdf-link {
    width: -webkit-fill-available;
    padding: 24px;
}

.ft-pdf-img {
    width: 72px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

.ft-pdf-link:hover .ft-pdf-img {
    transform: scale(1.1) translateY(-2px);
    -webkit-transform: scale(1.1) translateY(-2px);
    opacity: 0.85;
}

/* -> Responsive 768px */
@media (max-width: 768px) {
    .ft-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .ft-bloque {
        flex: 1 1 100%;
        padding: 16px 12px;
    }

    .ft-rating-numero {
        font-size: 34px;
    }

    .ft-estrella {
        font-size: 20px;
    }

    .ft-pdf-img {
        width: 60px;
    }
}

/* ==============================> PLANTILLA DE PRODUCTO */

.wd-single-price .price {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 16px;
}

.single-product form:not(.variations_form).cart {
    flex-wrap: nowrap;
}

.single-product form.variations_form .woocommerce-variation-add-to-cart {
    flex-wrap: nowrap;
}

/* INVENTARIO */

.product-template-default .inventario>div {
    display: flex;
    align-items: center;
    justify-content: center;
	gap: 12px;
}

.product-template-default .inventario .stock {
	margin: 0;
	color: #fff !important;
}

.product-template-default .inventario .stock::before {
	display: none;
}

.elementor-widget-wd_single_product_add_to_cart div.quantity{
    background: #fff;
    border-radius: 6px;
}

/* BOTON DE WHATSAPP EN FICHA DE PRODUCTO */

.btn-wsp-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: var(--btn-accented-brd-radius);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    vertical-align: middle;
    transition: background 0.3s;
    height: auto;
    max-width: -webkit-fill-available;
}

.btn-wsp-product:hover {
    background-color: #128C7E;
    color: white;
}

.btn-wsp-product i {
    margin-right: 0px;
    font-size: 20px;
}

/* RESPONSIVE */

@media(max-width: 768px) {
    .single-product form.cart {
        flex-wrap: wrap !important;
    }
}


/* ==============================> "USAR EN IMPRESORAS" */

/* -> Contenedor */
.uimp-wrapper {
    background-color: #f0f9ff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d9e9f5;
}

/* -> Título */
.uimp-titulo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 20px;
    margin: 0;
    color: #ffffff;
    background-color: var(--e-global-color-primary);
    background-image: linear-gradient(90deg, var(--e-global-color-secondary) 0%, var(--e-global-color-primary) 100%);
}

/* -> Grid */
.uimp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px;
}

/* -> Item */
.uimp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #caeaff;
    border-radius: 8px;
    padding: 10px 14px;
    opacity: 0;
    animation: uimp-entrada 0.3s ease forwards;
    transition: background-color 0.2s ease, transform 0.2s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    cursor: default;
}

.uimp-item:hover {
    background-color: var(--e-global-color-primary);
    transform: translateY(-2px) translateZ(0);
}

/* -> Icono */
.uimp-icono {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background-color: var(--e-global-color-primary);
    color: #ffffff;
    transition: background-color 0.2s ease;
}

.uimp-item:hover .uimp-icono {
    background-color: rgba(255, 255, 255, 0.25);
}

.uimp-icono svg {
    width: 18px;
    height: 18px;
}

/* -> Nombre */
.uimp-nombre {
    font-size: 14px;
    font-weight: 500;
    color: #3a2f6b;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.uimp-item:hover .uimp-nombre {
    color: #ffffff;
}

/* -> Animación de entrada */
@keyframes uimp-entrada {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -> Tablets (768px) */
@media (max-width: 768px) {
    .uimp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 16px;
    }

    .uimp-nombre {
        font-size: 13px;
    }
}

/* -> Móvil (480px) */
@media (max-width: 480px) {
    .uimp-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px;
    }

    .uimp-icono {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .uimp-icono svg {
        width: 16px;
        height: 16px;
    }
}

/* ==============================> DESCRIPCION DE PRODUCTO */

.wd-single-content h2{
    padding: 14px 20px;
    text-align: center;
    border-radius: 12px 12px 0 0;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background-image: linear-gradient(90deg, var(--e-global-color-secondary) 0%, var(--e-global-color-primary) 100%);
    background-color: var(--e-global-color-primary);
}

/* ==============================> "VALORACION DE PRODUCTO" */

.general-valoracion {
    box-shadow: 0px 0px 16px -4px rgba(0, 0, 0, 0.24);
}

.general-valoracion h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 20px;
    margin: 0;
    border-radius: 12px 12px 0 0;
    color: #ffffff;
    background-color: var(--e-global-color-primary);
    background-image: linear-gradient(90deg, var(--e-global-color-secondary) 0%, var(--e-global-color-primary) 100%);
}

.vp-valoracion {
    padding: 30px 4% 45px;
	display: flex;
	gap: 24px;
	align-items: flex-start;
	width: 100%;
	box-sizing: border-box;
}

/* -> Columnas */

.vp-columna {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.vp-puntuacion-wrap { flex: 1 1 48%; }
.vp-opiniones-wrap  { flex: 1 1 48%; }

/* -> Bloque base */

.vp-bloque {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	overflow: hidden;
}

.vp-bloque-titulo {
	background: var(--e-global-color-primary);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	padding: 12px 18px;
	text-align: center;
	letter-spacing: 0.3px;
}

/* -> Resumen de puntuacion */

.vp-resumen-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 18px;
}

.vp-promedio-numero {
	text-align: center;
	color: var(--e-global-color-primary);
	font-size: 52px;
	font-weight: 800;
	line-height: 1;
	min-width: 90px;
}

.vp-label-excelente {
	font-size: 14px;
	font-weight: 600;
	color: var(--e-global-color-primary);
	margin-top: 4px;
}

/* -> Estrellas */

.vp-estrellas {
	display: flex;
	justify-content: center;
	gap: 2px;
	margin-top: 6px;
}

.vp-estrellas .vp-star-on  { color: #f5a623; font-size: 18px; }
.vp-estrellas .vp-star-off { color: #ddd;    font-size: 18px; }

.vp-estrellas-sm .vp-star-on,
.vp-estrellas-sm .vp-star-off {
	font-size: 14px;
}

/* -> Barras de calificacion */

.vp-barras {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.vp-barra-fila {
	display: flex;
	align-items: center;
	gap: 8px;
}

.vp-barra-num {
	font-size: 13px;
	color: #555;
	min-width: 10px;
	text-align: right;
}

.vp-barra-track {
	flex: 1;
	height: 12px;
	background: #def2ff;
	border-radius: 6px;
	overflow: hidden;
}

.vp-barra-fill {
	height: 100%;
	background: #f5a623;
	border-radius: 6px;
	width: 0;
	transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* -> Formulario */

.vp-form-wrap .vp-bloque-titulo {
	background: #85cfff;
	color: var(--e-global-color-secondary);
}

.vp-form {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vp-label {
	font-size: 13px;
	font-weight: 600;
	color: #333;
}

.vp-input,
.vp-textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 14px;
	color: #333;
	background: #f9f5ff;
	box-sizing: border-box;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	-webkit-appearance: none;
}

.vp-input:focus,
.vp-textarea:focus {
	outline: none;
	border-color: var(--e-global-color-primary);
	box-shadow: 0 0 0 3px rgba(102, 51, 204, 0.12);
}

.vp-textarea {
	min-height: 110px;
	resize: vertical;
}

/* -> Selector de estrellas */

.vp-rating-selector {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 4px;
}

.vp-rating-selector input[type="radio"] {
	display: none;
}

.vp-rating-selector label {
	font-size: 28px;
	color: #ddd;
	cursor: pointer;
	transition: color 0.2s ease, transform 0.15s ease;
	-webkit-tap-highlight-color: transparent;
}

.vp-rating-selector label:hover,
.vp-rating-selector label:hover ~ label,
.vp-rating-selector input:checked ~ label {
	color: #f5a623;
}

.vp-rating-selector label:hover {
	transform: scale(1.2);
}

/* -> Boton enviar */

.vp-btn-enviar {
	background: #f5a623;
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 13px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	width: 100%;
	margin-top: 4px;
	transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
	-webkit-appearance: none;
}

.vp-btn-enviar:hover {
	background: #e09410;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(245, 166, 35, 0.35);
}

.vp-btn-enviar:active {
	transform: translateY(0);
	box-shadow: none;
}

.vp-btn-enviar:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* -> Mensaje exito */

.vp-mensaje-exito {
	margin: 14px 18px;
	padding: 12px 16px;
	background: #eaffea;
	border: 1px solid #90d890;
	border-radius: 6px;
	color: #2a7a2a;
	font-size: 16px;
	font-weight: 500;
	display: none;
}

/* -> Opiniones de clientes */

.vp-lista-opiniones {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.vp-opinion-item {
	display: flex;
	align-items: stretch;
	border-bottom: 1px solid #eee;
	transition: background 0.2s ease;
}

.vp-opinion-item:last-child {
	border-bottom: none;
}

.vp-opinion-item:hover {
	background: #faf7ff;
}

.vp-opinion-rating {
    background: var(--e-global-color-primary);
    color: #fff;
    min-width: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    gap: 4px;
    border-right: 1px solid #fff;
}

.vp-opinion-num {
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
}

.vp-opinion-badge {
	font-size: 11px;
	font-weight: 600;
	color: #ddd;
}

.vp-opinion-body {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.vp-opinion-texto {
    min-height: 64px;
    padding: 12px 16px;
    text-align: center;
	font-size: 16px;
	color: #333;
	margin: 0;
	line-height: 1.5;
}

.vp-opinion-autor {
    border-bottom: 1px solid #fff;
}

.vp-opinion-autor,
.vp-opinion-fecha {
    display: block;
    font-size: 16px;
    background: var(--e-global-color-primary);
    color: #fff;
    padding: 4px 10px;
    margin-top: 0;
    width: -webkit-fill-available;
    text-align: center;
}

.vp-sin-opiniones {
	padding: 20px;
	text-align: center;
	color: #999;
	font-size: 14px;
}

/* > "RESPONSIVE TABLET" */

@media (max-width: 768px) {
	.vp-valoracion {
		flex-direction: column;
		gap: 16px;
	}

	.vp-puntuacion-wrap,
	.vp-opiniones-wrap {
		flex: 1 1 100%;
		width: 100%;
	}

	.vp-resumen-inner {
		flex-direction: column;
		text-align: center;
	}

	.vp-barras {
		width: 100%;
	}

	.vp-promedio-numero {
		font-size: 44px;
	}
}

/* > "RESPONSIVE MOVIL" */

@media (max-width: 480px) {
	.vp-bloque-titulo {
		font-size: 13px;
	}

	.vp-promedio-numero {
		font-size: 38px;
	}

	.vp-rating-selector label {
		font-size: 24px;
	}

	.vp-btn-enviar {
		font-size: 13px;
		padding: 12px;
	}

	.vp-opinion-num {
		font-size: 20px;
	}
}

/* ==============================> PRODUCTOS RELACIONADO */

.productos-relacionados h2 {
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px 12px 0 0;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 20px;
    color: #ffffff;
    background-color: var(--e-global-color-primary);
    background-image: linear-gradient(90deg, var(--e-global-color-secondary) 0%, var(--e-global-color-primary) 100%);
    justify-content: center;
}