
.header-1 .header-main .header-left .logo a img,
.offcanvas__logo img,
.footer-logo img {
    max-height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-logo img {
    max-height: 64px;
}

.header-1 .header-main .header-left {
    gap: 48px;
}

@media (max-width: 1399px) {
    .header-1 .header-main .header-left {
        gap: 24px;
    }
}

.header-top-section {
    background: var(--theme2);
}

.header-top-section .header-top-wrapper {
    min-height: 44px;
}

.header-top-anuncio {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--header);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* En pantallas chicas la dirección se come la barra: se deja sólo el
   teléfono y el anuncio, que es lo que interesa. */
@media (max-width: 767px) {
    .header-top-section .contact-list li:first-child {
        display: none;
    }
    .header-top-anuncio {
        font-size: 0.72rem;
    }
}

/* Con el efecto 3D apagado no hay canvas que pinte el fondo: la imagen se
   pone directo sobre la diapositiva. El velo oscuro va aparte para que el
   título blanco siga siendo legible sobre fotos claras. */
.showcase-slider-wrappper .slide-wrap.t2-slide-bg {
    position: absolute;
    inset: 0;
    background-image: var(--t2-slide-bg);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.showcase-slider-wrappper .slide-wrap.t2-slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* ── Cajón del carrito ─────────────────────────────────────────
   El tema no trae carrito lateral (usa una página aparte), así que
   esta maqueta es propia. Se apoya en las variables del tema para
   que siga respetando los colores configurados. */
.t2-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 9998;
}
.t2-cart-overlay.visible { opacity: 1; visibility: visible; }

.t2-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(400px, 92vw);
    height: 100%;
    background: #fff;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.16);
    transform: translateX(105%);
    transition: transform .3s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}
.t2-cart-drawer.abierto { transform: translateX(0); }

.t2-cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}
.t2-cart-head h4 { margin: 0; font-size: 1.05rem; }
.t2-cart-head button {
    border: 0;
    background: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #888;
}

.t2-cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }

.t2-cart-vacio { text-align: center; padding: 56px 16px; color: #bbb; }
.t2-cart-vacio i { font-size: 2.4rem; display: block; margin-bottom: 14px; }

.t2-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f4f4f4;
}
.t2-cart-item-info { flex: 1; min-width: 0; }
.t2-cart-item-nombre {
    font-weight: 600;
    font-size: 0.88rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.t2-cart-item-var    { font-size: 0.76rem; color: #999; }
.t2-cart-item-precio { font-size: 0.84rem; color: var(--theme); font-weight: 700; }

.t2-cart-item-qty { display: flex; align-items: center; gap: 8px; }
.t2-cart-item-qty button {
    width: 26px;
    height: 26px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    line-height: 1;
}
.t2-cart-item-qty span { min-width: 18px; text-align: center; font-weight: 700; }

.t2-cart-item-quitar {
    border: 0;
    background: none;
    color: #ccc;
    cursor: pointer;
    padding: 4px;
}
.t2-cart-item-quitar:hover { color: #e74c3c; }

.t2-cart-foot { padding: 20px 24px; border-top: 1px solid #eee; }
.t2-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 1rem;
}
.t2-cart-total strong { font-size: 1.2rem; color: var(--theme); }

.t2-cart-foot .theme-btn.disabled { opacity: .5; pointer-events: none; }

/* ── Vista rápida ──────────────────────────────────────────────
   El tema trae el ojito en las tarjetas pero no el modal que abre:
   su demo es HTML suelto. La maqueta es propia y se apoya en las
   variables del tema para respetar los colores configurados.        */
.t2-vr-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 10000;
}
.t2-vr-overlay.visible { opacity: 1; visibility: visible; }

.t2-vr-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    width: min(900px, 94vw);
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    z-index: 10001;
}
.t2-vr-modal.abierto {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.t2-vr-cerrar {
    position: absolute;
    top: 14px;
    right: 16px;
    border: 0;
    background: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}
.t2-vr-cerrar:hover { color: var(--header); }

.t2-vr-cargando {
    text-align: center;
    padding: 70px 20px;
    color: #bbb;
    font-size: 1.6rem;
}
.t2-vr-cargando a { font-size: 1rem; color: var(--theme); }

.t2-vr-foto {
    background: #f7f7f7;
    border-radius: 8px;
    overflow: hidden;
}
.t2-vr-foto img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    display: block;
}

.t2-vr-minis { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.t2-vr-minis img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    background: #f7f7f7;
}
.t2-vr-minis img.activa,
.t2-vr-minis img:hover { border-color: var(--theme); }

.t2-vr-marca {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #999;
    font-weight: 700;
}
.t2-vr-modal h3 { font-size: 1.35rem; margin: 6px 0 10px; }

.t2-vr-precio {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--theme);
    margin-bottom: 14px;
}

/* La descripción puede venir larguísima desde el panel; se acota para que el
   modal no se vuelva una página y el botón siga a la vista. */
.t2-vr-desc {
    color: var(--text);
    line-height: 1.7;
    font-size: 0.9rem;
    max-height: 96px;
    overflow: hidden;
}

.t2-vr-vars { display: flex; gap: 14px; flex-wrap: wrap; margin: 18px 0; }
.t2-vr-var { min-width: 150px; flex: 1; }
.t2-vr-var label {
    display: block;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 5px;
}

.t2-vr-qty { margin-bottom: 18px; }
.t2-vr-qty label {
    display: block;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 5px;
}
.t2-vr-qty input {
    width: 92px;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.t2-vr-acciones {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.t2-vr-ficha {
    color: var(--header);
    text-decoration: underline;
    font-size: 0.86rem;
}

@media (max-width: 767px) {
    .t2-vr-modal { padding: 24px 18px; }
    .t2-vr-foto img { height: 240px; }
}

/* El tema deja los iconos de la tarjeta encogidos hasta que le pasas el
   mouse por encima. En táctil no hay hover, así que ahí se dejan fijos. */
@media (hover: none) {
    .shop-card-items .thumb .gt-shop-icon li { transform: scaleX(1); }
}

/* ── Inicio de sesión y registro ───────────────────────────────
   Reusa la caja de la vista rápida, más angosta. El tema no trae
   cuentas de usuario, así que toda esta maqueta es propia.          */
.t2-sesion-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 10000;
}
.t2-sesion-overlay.visible { opacity: 1; visibility: visible; }

.t2-sesion-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    width: min(420px, 92vw);
    max-height: 92vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    padding: 34px 30px 30px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    z-index: 10001;
}
.t2-sesion-modal.abierto {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.t2-sesion-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 22px;
    border-bottom: 1px solid #eee;
}
.t2-sesion-tabs button {
    flex: 1;
    border: 0;
    background: none;
    padding: 10px 4px;
    font-weight: 600;
    font-size: 0.92rem;
    color: #999;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}
.t2-sesion-tabs button.activa {
    color: var(--header);
    border-bottom-color: var(--theme);
}

/* Vacío no ocupa lugar: si reservara alto, el formulario brincaría al
   aparecer el primer mensaje. */
.t2-sesion-aviso { display: none; }
.t2-sesion-aviso.ok,
.t2-sesion-aviso.error {
    display: block;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}
.t2-sesion-aviso.ok    { background: #eaf7ee; color: #2e7d47; border: 1px solid #c7e8d2; }
.t2-sesion-aviso.error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6c2; }

.t2-sesion-modal .form-label {
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 5px;
}
.t2-sesion-modal .theme-btn[disabled] { opacity: .6; pointer-events: none; }

/* ── Detalle de producto ───────────────────────────────────────
   El tema muestra una sola foto fija. Acá hay galería, porque los
   productos traen imágenes adicionales desde el panel. */
.gt-shop-details-image img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    background: #f7f7f7;
}

.t2-prod-miniaturas {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.t2-prod-miniaturas img {
    width: 76px;
    height: 76px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    background: #f7f7f7;
    transition: border-color .2s ease;
}
.t2-prod-miniaturas img:hover,
.t2-prod-miniaturas img.activa { border-color: var(--theme); }

.t2-prod-variaciones {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.t2-prod-variacion { min-width: 180px; }
.t2-prod-variacion label {
    display: block;
    font-weight: 600;
    font-size: 0.84rem;
    margin-bottom: 6px;
}

.t2-prod-descripcion {
    color: var(--text);
    line-height: 1.75;
}

/* El tema no contempla un botón inhabilitado: lo usan las tarjetas de
   producto agotado y el carrito vacío. Va acá para que valga en los
   tres lugares y no repetirlo. */
.theme-btn.disabled {
    opacity: .55;
    pointer-events: none;
    cursor: default;
}

.cart-quantity .theme-btn.disabled { opacity: .55; pointer-events: none; }

@media (max-width: 767px) {
    .gt-shop-details-image img { height: 340px; }
}

/* ── Contacto ──────────────────────────────────────────────────
   El tema trae un formulario que envía a un PHP suyo; acá no hay
   endpoint que reciba mensajes, así que el canal real es WhatsApp. */
.t2-contacto-item { display: flex; gap: 14px; margin-bottom: 22px; }
.t2-contacto-icono {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--theme);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.t2-contacto-item span {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #999;
    font-weight: 700;
}
.t2-contacto-item p { margin: 2px 0 0; }

.t2-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 13px 26px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s ease;
}
.t2-wa-btn:hover { opacity: .88; color: #fff; }

.t2-contacto-mapa iframe,
.t2-contacto-mapa > * {
    width: 100% !important;
    min-height: 440px;
    border: 0;
    border-radius: 10px;
}

.t2-contacto-form {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 10px;
}

/* ── Checkout ──────────────────────────────────────────────────*/
.t2-checkout-card,
.t2-checkout-resumen {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 24px;
}
.t2-checkout-resumen { position: sticky; top: 100px; }

.t2-resumen-items { list-style: none; padding: 0; margin: 18px 0; }
.t2-resumen-items li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f3f3;
}
.t2-resumen-items .nombre { display: block; font-weight: 600; font-size: 0.9rem; }
.t2-resumen-items .var    { display: block; font-size: 0.76rem; color: #999; }
.t2-resumen-items .cant   { font-size: 0.8rem; color: #777; }

.t2-resumen-linea {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}
.t2-resumen-total {
    display: flex;
    justify-content: space-between;
    padding: 14px 0 4px;
    border-top: 2px solid #eee;
    margin-top: 8px;
    font-size: 1.1rem;
}
.t2-resumen-total strong { color: var(--theme); }

/* ── Resultado de la orden ─────────────────────────────────────*/
.t2-orden-estado {
    text-align: center;
    padding: 44px 24px;
    border-radius: 12px;
    margin-bottom: 28px;
}
.t2-orden-estado.ok    { background: #eaf7ee; }
.t2-orden-estado.falla { background: #fdecea; }
.t2-orden-icono        { font-size: 3.4rem; margin-bottom: 14px; }
.t2-orden-estado.ok    .t2-orden-icono { color: #2e9e52; }
.t2-orden-estado.falla .t2-orden-icono { color: #d64541; }

.t2-orden-detalle {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 28px;
}
.t2-orden-total td { border-top: 2px solid #eee; }

@media (max-width: 991px) {
    .t2-checkout-resumen { position: static; }
}

/* ── Banners de la portada ─────────────────────────────────────
   Van de a dos. Con textos de largo distinto, uno queda más bajo que
   el otro y el renglón se ve chueco: se estiran al alto de la fila.
   El `min-height` es para cuando el único texto es el título y el
   banner quedaría como una franja delgada.                          */
.shop-banner-section .shop-banner-items {
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.shop-banner-section .shop-banner-items .content {
    width: 100%;
}

/* A una sola columna las imágenes del tema son apaisadas y el texto se
   encima con el motivo de la foto; se le baja el alto. */
@media (max-width: 991px) {
    .shop-banner-section .shop-banner-items {
        min-height: 240px;
    }
}

/* ── Búsqueda del catálogo ─────────────────────────────────────
   El tema no contempla una vista de resultados, así que el aviso de
   "qué estás buscando" y la salida se arman acá.                    */
.t2-cat-busqueda {
    margin: 4px 0 0;
    font-size: 0.86rem;
    color: #777;
}
.t2-cat-busqueda strong { color: var(--header); }
.t2-cat-busqueda a {
    margin-left: 10px;
    color: var(--theme);
    text-decoration: underline;
}

/* ── Imágenes de catálogo ──────────────────────────────────────
   Las fotos de producto y categoría vienen en proporciones
   distintas. Sin recorte, las tarjetas quedan de alturas dispares
   y la rejilla se ve chueca.                                       */
.shop-card-items .thumb img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.categorie-left-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.categorie-right-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .categorie-left-image img {
        height: 380px;
    }
}


.t2-enc .page-heading {
    padding: var(--t2-enc-alto, 190px) 0 calc(var(--t2-enc-alto, 190px) * 0.63);
}

.t2-enc::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    opacity: var(--t2-enc-velo, 0);
    z-index: 1;
}

@media (max-width: 767px) {
    .t2-enc .page-heading {
        padding: calc(var(--t2-enc-alto, 190px) * 0.68) 0 calc(var(--t2-enc-alto, 190px) * 0.47);
    }
}

@media (max-width: 991px) {
    .showcase-slider-wrappper,
    .showcase-slider-wrappper .hero-1 {
        height: var(--t2-hero-alto-movil, 80vh);
    }

    .showcase-slider-wrappper .hero-1 {
        padding-top: calc(var(--t2-hero-alto-movil, 80vh) * 0.28);
    }

    .showcase-slider-wrappper .slide-wrap.t2-slide-bg {
        background-image: var(--t2-slide-bg-movil, var(--t2-slide-bg));
        background-position: var(--t2-hero-foco-movil, 50%) center;
    }

    .showcase-slider-wrappper .hero-1 .hero-content {
        transform: translateY(-60px);
    }

    .showcase-slider-wrappper .swiper-slide-active .hero-content {
        transform: translateY(0);
    }
}

@media (max-width: 1399px) {
    .header-main .header-right .header-icon {
        display: flex;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .header-main .header-right {
        gap: 14px;
    }

    .header-main .header-right .header-icon {
        gap: 16px;
    }

    .header-main .header-right .header-icon li a i {
        font-size: 18px;
    }
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
    display: none;
}

.preloader .animation-preloader .txt-loading {
    letter-spacing: 0.06em;
}

.gt-shop-details-wrapper .gt-shop-details-content .price-list {
    margin-bottom: 18px;
}

.gt-shop-details-wrapper .gt-shop-details-content .price-list li {
    font-size: 0.9rem;
    color: #8a8a8a;
}

.gt-shop-details-wrapper .gt-shop-details-content .price-list li span {
    display: block;
    margin-top: 2px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--theme);
}

.t2-prod-variaciones {
    margin: 24px 0;
}

.t2-prod-variacion {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 320px;
}

.t2-prod-variacion label {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8a8a8a;
}

.t2-prod-variaciones .t2-prod-variacion select,
.t2-prod-variaciones select.prod-var {
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 12px 42px 12px 16px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background-color: #fff;
    color: var(--header);
    font-size: 0.98rem;
    line-height: 1.2;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23555' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    cursor: pointer;
    transition: border-color .2s ease;
}

.t2-prod-variaciones select:focus {
    outline: none;
    border-color: var(--theme);
}

.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty {
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    min-width: 140px;
    padding: 8px 12px;
}

.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .shop-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .gt-shop-details-wrapper .gt-shop-details-content {
        margin-top: 32px;
    }

    .gt-shop-details-image img {
        height: 420px;
    }
}

@media (max-width: 575px) {
    .gt-shop-details-image img {
        height: 300px;
    }

    .t2-prod-miniaturas img {
        width: 60px;
        height: 60px;
    }

    .gt-shop-details-wrapper .gt-shop-details-content h2 {
        font-size: 1.6rem;
    }

    .gt-shop-details-wrapper .gt-shop-details-content .price-list li span {
        font-size: 1.7rem;
    }

    .t2-prod-variacion {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: none;
    }

    .gt-shop-details-wrapper .gt-shop-details-content .cart-quantity {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty {
        justify-content: space-between;
    }

    .gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .shop-btn {
        width: 100%;
    }
}

.gt-shop-details-content .t2-prod-variaciones {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    width: 100%;
}

.gt-shop-details-content .t2-prod-variacion {
    flex: 1 1 240px !important;
    min-width: 240px !important;
    max-width: 340px;
}

.gt-shop-details-content .t2-prod-variaciones select {
    width: 100% !important;
    max-width: none !important;
    min-width: 240px !important;
}

.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty {
    width: 132px;
    min-width: 132px;
    padding: 0;
    overflow: hidden;
}

.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty button {
    width: 40px;
    height: 48px;
    font-size: 20px;
    background: none;
    border: 0;
    cursor: pointer;
}

.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty button:hover {
    color: var(--theme);
}

.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty input {
    width: 52px;
    height: 48px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: 0;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    background: none;
    -moz-appearance: textfield;
}

.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty input::-webkit-outer-spin-button,
.gt-shop-details-wrapper .gt-shop-details-content .cart-quantity .qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 575px) {
    .gt-shop-details-content .t2-prod-variacion {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        max-width: none;
    }

    .gt-shop-details-content .t2-prod-variaciones select {
        min-width: 100% !important;
    }
}
