.content-full {
    width: 100%;
    max-width: 1350px;
    justify-self: center;
    padding: 40px 40px;
    display: flex;
    flex-flow: column nowrap;
    height: auto;
}

.product-content {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    gap: 40px;
}

.product-aside {
    display: flex;
    flex-flow: column nowrap;
    gap: 20px;
}

.product-aside.image {
    width: 100%;
    max-width: 60%;
}

.product-aside.descrip {
    width: 100%;
    max-width: 40%;
}

.tag-title {
    width: 100%;
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
    gap: 10px;
}

.tag-title a {
    text-decoration: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
    text-transform: uppercase;
    color: #333333;
}

.tag-title span {
    color: #094fb2;
    font-weight: bold;
    padding: 0 5px;
    transition: .3s ease all;
}

.tag-title a:last-child {
    color: #003cff;
}

.tag-title a:hover {
    color: #003cff;
}

.tag-status {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 15px;
}

.tag-status>span {
    border-radius: 4px;
    padding: 5px 8px;
    background-color: #003cff;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.tag-status>span.liquidacion {
    background-color: #FF0000;
    color: #ffffff;
}

.tag-status>span.diferida {
    background-color: #094fb2;
    color: #ffffff;
}

/* Base para todos los chevrons */
[class^="chevron--"] {
    --size: 12px;
    /* tamaño del "lado" */
    --thickness: 3px;
    /* grosor del trazo */
    color: #333;
    /* color del ícono */
    position: relative;
    width: calc(var(--size) * 1.6);
    height: calc(var(--size) * 1.6);
    background: transparent;
    border: 0;
    padding: 0;
}

[class^="chevron--"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--size);
    height: var(--size);
    border-right: var(--thickness) solid currentColor;
    border-bottom: var(--thickness) solid currentColor;
    transition: transform .2s ease;
    transform: translate(-50%, -50%);
}

/* Direcciones */
.chevron--right::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.chevron--left::before {
    transform: translate(-50%, -50%) rotate(135deg);
}

.chevron--up::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.chevron--down::before {
    transform: translate(-50%, -50%) rotate(-135deg);
}


/* Slider ocupa 60% */
.product-slider {
    flex: 0 0 60%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Imagen destacada cuadrada */
.main-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1.5 / 1;
    box-shadow: inset 0px 0px 0px 3px #003cff;
    margin-bottom: 20px;
    padding: 3px;
}


.main-image>img {
    height: 100%;
    display: block;
}

.main-image>img {
    transition: opacity 0.5s ease-in-out;
    /* transición suave al cambiar */
    opacity: 1;
}

.fade-out {
    opacity: 0;
}

/* Carrusel */
.thumbs-container-big {
    position: relative;
}

.thumbs-container {
    position: relative;
    overflow: hidden;
}

.thumbs {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

/* Miniaturas cuadradas */
.thumbs img {
    width: 40px;
    flex: 0 0 calc((100% - 40px) / 3);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: inset 0px 0px 0px 3px #003cff;
    cursor: pointer;
    padding: 3px;
}

/* Flechas */
.nav-arrow {
    position: absolute;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 3px solid #003cff;
    cursor: pointer;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.nav-arrow.left {
    left: -17.5px;
}

.nav-arrow.right {
    right: -17.5px;
}

.nav-arrow.left>span {
    right: -2px;
}

.nav-arrow.right>span {
    left: -2px;
}

.nav-arrow>span {
    color: #003cff;
    --size: 8px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .product-layout {
        flex-direction: column;
    }
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: Arial, sans-serif;
    color: #333;
}

.product-info .brand {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 25px;
}

.product-info .sku {
    font-size: 18px;
    color: #999;
}

.product-info .sku>span:nth-child(2),
.product-info .sku>span:nth-child(4) {
    color: #003cff;
    font-weight: bold;
}

.product-info .title {
    font-size: 32px;
    font-weight: 900;
    line-height: 30px;
    color: #555;
    padding: 0px 0px 20px 0px;
}

.product-info .features {
    font-size: 20px;
    color: #555;
    padding: 10px 0px 40px 0px;
}

.product-info .price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-info .price>div>span:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #02004D;
    color: #fff;
    border-radius: 4px;
    font-weight: 900;
    height: 30px;
    width: auto;
    padding: 0px 10px;
    font-size: 15px;
    margin-left: 5px;
}

.product-info .price .main-price {
    font-size: 60px;
    font-weight: bold;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    color: #003cff;
    /* amarillo destacado */
}

.product-info .price .logos-pay {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.product-info .price .logos-pay>img {
    height: 30px;
    padding-right: 10px;
}

.product-info .price .text-price {
    padding-top: 5px;
    font-size: 16px;
    color: #666;
}

.product-info .price .text-price-first {
    padding-bottom: 10px;
}

.product-info .price .normal-price {
    font-size: 16px;
    color: #7aa7ff;
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    align-items: center;
}

.product-info .price .normal-price.text {
    color: #777;
}

.product-info .price .normal-price.main {
    font-size: 18px;
    padding: 10px 0px;
    font-size: bold !important;
}

.normal-price .woocommerce-Price-amount.amount {
    display: initial !important;
    background-color: transparent !important;
    color: #7aa7ff !important;
    border-radius: 0 !important;
    font-weight: 900 !important;
    height: auto !important;
    width: auto !important;
    padding: 0px !important;
    font-size: 16px !important;
    margin-left: 0 !important;
}

.product-info button[name="add-to-cart"] {
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0px 20px;
    background-color: #003cff !important;
    color: #fff;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.product-info button[name="add-to-cart"]:hover {
    background-color: #02004D !important;
}

.product-info button[name="add-to-cart"]>svg {
    width: 50px;
    fill: #fff;
    padding-right: 15px;
}

.stock-bm {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #666;
    font-size: 16px;
}

.stock-bm span {
    display: flex;
    justify-content: space-between;

    align-items: center;
}

.stock-bm span>div {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}

.hr-info {
    height: 3px;
    width: 100%;
    background-color: #003cff;
    margin: 10px 0px;
}

.stock-bm span>div>svg,
.stock-bm span>div>i,
.stock-bm span>div>img {
    fill: #666;
    height: 30px;
    width: 30px;
    min-height: 30px;
    min-width: 30px;
    margin-right: 10px;
}

.stock-bm span>div>i {
    font-size: 30px;
}

.stock-qty {
    font-weight: bold;
    color: #094fb2;
}

.stock-bm span>.more-info {
    align-items: start;
}

.stock-bm span>span {
    color: #003cff;
    font-weight: bold;
}



.stock-bm span>div>div {
    display: initial;
}

.stock-bm span>div .highlight {
    color: #003cff;
    font-weight: bold;
}

.infoBloque {
    margin-top: 40px;
    margin-bottom: 15px;
    overflow: hidden;
}

.infoEncabezado {
    border-bottom: 3px solid #003cff;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.infoEncabezado h3 {
    margin: 0;
    color: #555;
    font-size: 22px;
}

.iconChevron {
    display: none;
    transition: transform 0.3s ease;
}

.iconChevron.abierto {
    transform: rotate(180deg);
}

.infoContenido {
    padding: 15px 0;
    display: block;
}

#bloqueEspecificaciones {
    width: 35%;
}

#bloqueDescripcion {
    width: 65%;
}

/* ==== Estilo para Especificaciones ==== */
.tablaEspecificaciones {
    width: 100%;
    border-collapse: collapse;
}

.tablaEspecificaciones tr:nth-child(odd) {
    background-color: #c0cef8;
    /* amarillo claro */
}

.tablaEspecificaciones tr:nth-child(even) {
    background-color: #f2f2f2;
    /* gris claro */
}

.tablaEspecificaciones td {
    color: #333;
    padding: 12px;
    font-size: 16px;
}

.tablaEspecificaciones td:first-child {
    font-weight: bold;
    width: 35%;
}

/* Ocultar mobile slider en desktop */
.mobile-slider {
    display: none;
    position: relative;
    max-width: 95%;
    left: 2.5%;
    margin-bottom: 20px;
}

.mobile-slider .thumbs img {
    width: 40px;
    flex: 0 0 100%;
}

.mobile-slides {
    display: flex;
    transition: transform 0.3s ease;
}

.mobile-slides img {
    width: 100%;
    flex-shrink: 0;
}

/* Mostrar solo en mobile */
@media (max-width: 768px) {
    .iconChevron {
        display: block;
    }

    .product-slider {
        display: none;
    }

    .mobile-slider {
        display: block;
    }
}


/* ==== Comportamiento en Mobile ==== */
@media (max-width: 768px) {
    .infoContenido {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        padding: 0px;
    }

    .infoContenido>p {
        padding: 15px 0px;
    }

    .infoBloque.abierto .infoContenido {
        /* espacio suficiente para contenido */
        padding: 0px;
    }

    .product-aside {
        gap: 20px;
    }

    .product-aside.image {
        gap: 0;
    }
}

/* ========== BASE (ya lo tienes arriba) ========== */

/* --- RESPONSIVE --- */


@media (max-width: 1024px) {

    .content-full {
        padding: 30px 60px;
    }

    .product-content {
        gap: 20px;
    }

    .tag-title a {
        font-size: 18px;
    }

    .tag-status span {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .content-full {
        padding: 20px;
    }

    .product-content {
        flex-direction: column;
        gap: 30px;
    }

    .product-info .sku {
        font-size: 15px;
    }

    .product-info .title {
        line-height: 28px;
        font-size: 22px;
    }

    .product-info .features {
        font-size: 22px;
    }

    .product-aside.image,
    .product-aside.descrip {
        max-width: 100%;
    }

    .tag-status {
        flex-wrap: wrap;
        gap: 8px;
    }

    .product-info .price .main-price {
        font-size: 40px;
    }

    .product-info .price .text-price {
        font-size: 15px;
    }

    .product-info .price .normal-price {
        font-size: 15px;
    }

    .product-info button[name="add-to-cart"] {
        margin-top: 10px;
        margin-bottom: 20px;
        padding: 15px 20px;
        border-radius: 4px;
        font-size: 20px;
    }

    .stock-bm {
        font-size: 14px;
    }

    .stock-bm span>div>svg {
        height: 25px;
        width: 25px;
        min-height: 25px;
        min-width: 25px;
    }
}

@media (max-width: 480px) {
    .content-full {
        padding: 40px 15px;
    }

    .tag-title>p {
        font-size: 16px;
    }

    .tag-status>span {
        font-size: 14px;
        padding: 4px 6px;
    }

    .logos-pay img {
        height: 25px;
    }

    #bloqueDescripcion,
    #bloqueEspecificaciones {
        width: 100%;
    }

    /* Especificaciones como lista */
    .tablaEspecificaciones {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
    }

    .tablaEspecificaciones tr {
        display: flex;
        justify-content: space-between;
        padding: 8px;
    }

  
    .tablaEspecificaciones td {
        flex: 1;
        padding: 5px;

    }
}

.tablaEspecificaciones td.destacado {
    background-color: #003cff !important;
}

/* CSS */
.product-info .quantity {
    margin-top: 15px;
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #d0d7de;
    border-radius: 0;
    /* sin bordes redondeados */
    overflow: hidden;
    /* que queden “pegados” */
    font: 16px/1.2 system-ui, sans-serif;
    background: #fff;
    width: max-content;
}

.product-info .quantity input {
    width: 80px;
    border: 0;
    padding: 8px 10px;
    text-align: center;
    font: inherit;
    outline: none;
    -moz-appearance: textfield;
    /* quita flechas en Firefox */
}
.screen-reader-text, .stock.in-stock{
    display: none;
}

.product-info .quantity input::-webkit-outer-spin-button,
.product-info .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    /* quita flechas en Chrome */
    margin: 0;
}

.qty__btn {
    width: 44px;
    min-width: 44px;
    display: grid;
    place-items: center;
    user-select: none;
    cursor: pointer;
    border-radius: 0;
    background: #f6f8fa;
    font-weight: 600;
}

/* separadores finos entre botones/input */
.qty__btn[data-action="decrement"] {
    border-right: 1px solid #d0d7de;
}

.qty__btn[data-action="increment"] {
    border-left: 1px solid #d0d7de;
}

.qty__btn:hover {
    background: #eef2f6;
}

.qty__btn:active {
    transform: translateY(0.5px);
}

.qty__btn:focus-visible {
    outline: 2px solid #4c9aff;
    outline-offset: -2px;
}

.qty:focus-within {
    box-shadow: 0 0 0 2px rgba(76, 154, 255, .25);
    border-color: #8ab4f8;
}

.qty__btn.is-disabled {
    opacity: .4;
    pointer-events: none;
}