#product #content {
    position: relative;
    max-width: 452px;
    margin: 0 auto;
}
#product .rightcolumn {
    padding: 25px;
    top: 20px;
    position: sticky;
}
.leftcolumn .product-flags {
    left: 125px;
}
#product .js-product-container {
    align-items: flex-start;
    margin-bottom: 50px;
    margin-right: 0px;
}
div#description {
    margin-top: 11px;
}
.product_reference {
    font-size: 11px;
    display: none;
}
.product-manufacturer a {
    color: var(--color3);
    font-weight: bold;
    font-size: 14px;
}
.product-price {
    display: inline-block;
    color: black;
}
#product-description-short {
    color: #232323;
}
#product-description-short ul,
#product-description-short ol {
    padding-left: 0;
    list-style-position: inside;
}
#product-description-short ul li,
#product-description-short ol li {
    font-size: 0.9375rem;
    color: #7a7a7a;
}
#product-description-short ul {
    list-style-type: disc;
}
.product-variants-item {
    margin-bottom: 15px;
}

.product-variants-item ul {
    margin-bottom: 0px;
}
.product-information .manufacturer-logo {
    height: 3.125rem;
    margin-bottom: 1rem;
    border: none;
}
.product-information .product-description img {
    max-width: 100%;
    height: auto;
}
.product-information .product-description ul,
.product-information .product-description ol {
    padding-left: 0.75rem;
    list-style-position: inside;
}
.product-information .product-description ul li,
.product-information .product-description ol li {
    font-size: 0.9375rem;
    color: #7a7a7a;
}
.product-information .product-description ul {
    list-style-type: disc;
}
.input-color {
    position: absolute;
    width: 30px;
    height: 30px;
    cursor: pointer;
    opacity: 0;
    border-radius: 50%;
}
.input-container {
    position: relative;
}
.input-radio {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}
.input-color:checked + span, .input-color:hover + span, .input-radio:checked + span, .input-radio:hover + span {
    border: 1px solid var(--color3) !important;
    background: var(--color3);
    color: var(--btn-primary-text);
}
.radio-label {
    display: inline-block;
    padding: 0.125rem 0.625rem;
    font-weight: 600;
    background: #fff;
    border: 2px solid #fff;
}
.product-actions .control-label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    font-weight: bold;
}
.product-actions .add-to-cart {
    height: 52px;
    padding-top: 0px;
    line-height: 52px;
    max-width: 100%;
    width: 100%;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans';
}
.product-actions .add-to-cart svg {
    width: 20px;
    height: auto;
    margin-right: 7px;
}
.product-actions .add-to-cart .material-icons {
    line-height: inherit;
    color: white;
}
/* ===== CANTIDAD — REDISEÑO ===== */
.product-quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.product-quantity .qty,
.product-quantity .add {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    float: left;
    margin-bottom: 0.5rem;
}
.product-quantity .add {
    float: none;
    width: 100%;
}

/* Contenedor .qty — ancho fijo para los 3 elementos: 44+52+44=140px */
.product-quantity .qty {
    margin-right: 0.5rem;
    width: auto;
}

/* Wrapper bootstrap-touchspin — posición relativa, ancho fijo */
.product-quantity .input-group.bootstrap-touchspin {
    display: block;
    position: relative;
    width: 140px;
    height: 52px;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    border-radius: var(--border-radius-custom);
    overflow: hidden;
    background: #fff;
}

/* Input central — ocupa todo el ancho con padding lateral para los botones */
.product-quantity #quantity_wanted {
    display: block !important;
    width: 100% !important;
    height: 52px !important;
    padding: 0 44px !important;
    border: none !important;
    border-radius: 0 !important;
    text-align: center !important;
    font-size: 16px;
    font-weight: 600;
    color: #2D2D2D;
    background-color: #fff;
    position: relative;
    z-index: 1;
    -moz-appearance: textfield;
    margin: 0;
    box-sizing: border-box;
}
.product-quantity #quantity_wanted::-webkit-outer-spin-button,
.product-quantity #quantity_wanted::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Contenedor de botones — superpuesto sobre el input, flex row con space-between */
.product-quantity .input-group-btn-vertical {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 2;
    pointer-events: none;
}

/* Ambos botones */
.product-quantity .input-group-btn-vertical .btn.bootstrap-touchspin-down,
.product-quantity .input-group-btn-vertical .btn.bootstrap-touchspin-up {
    position: static !important;
    width: 44px !important;
    height: 52px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    background: #fff !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    pointer-events: all !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    -webkit-transition: background 0.15s;
    transition: background 0.15s;
    line-height: normal;
    border-radius: 0 !important;
}
/* touchspin-down = MENOS → va a la izquierda (order:1) */
.product-quantity .input-group-btn-vertical .btn.bootstrap-touchspin-down {
    order: 1 !important;
    border-right: 1.5px solid rgba(0, 0, 0, 0.18) !important;
}
/* touchspin-up = MÁS → va a la derecha (order:3) */
.product-quantity .input-group-btn-vertical .btn.bootstrap-touchspin-up {
    order: 3 !important;
    border-left: 1.5px solid rgba(0, 0, 0, 0.18) !important;
}
.product-quantity .input-group-btn-vertical .btn.bootstrap-touchspin-down:hover,
.product-quantity .input-group-btn-vertical .btn.bootstrap-touchspin-up:hover {
    background: #f0f4f8 !important;
}

/* Iconos de los botones */
.product-quantity .input-group-btn-vertical .btn i {
    position: static !important;
    top: auto !important;
    left: auto !important;
    font-size: 18px;
    color: #2D2D2D;
    line-height: 1;
}

/* Ocultar prefix/postfix vacíos */
.product-quantity .input-group-addon.bootstrap-touchspin-prefix,
.product-quantity .input-group-addon.bootstrap-touchspin-postfix {
    display: none !important;
}

/* Altura de btn-touchspin */
.product-quantity .btn-touchspin {
    height: auto;
}

.nice-select:after {
    content: "\e5d7";
    font-family: 'Material Icons';
    display: block;
    font-size: 15px;
    position: absolute;
    top: 2px;
    right: 14px;
}
.product-discounts {
    margin-bottom: 1.5rem;
}
.product-discounts > .product-discounts-title {
    font-size: 0.875rem;
    font-weight: 600;
}
.product-discounts > .table-product-discounts thead tr th {
    width: 33%;
    padding: 0.625rem 1.25rem;
    text-align: center;
    background: #fff;
    border: 0.3125rem #f6f6f6 solid;
}
.product-discounts > .table-product-discounts tbody tr {
    background: #f6f6f6;
}
.product-discounts > .table-product-discounts tbody tr:nth-of-type(even) {
    background: #fff;
}
.product-discounts > .table-product-discounts tbody tr td {
    padding: 0.625rem 1.25rem;
    text-align: center;
    border: 0.3125rem #f6f6f6 solid;
}
.product-prices {
    margin-top: 15px;
    margin-bottom: 15px;
}

.product-price-box {
    background-color: #51a0de;
    border-radius: 10px;
    padding: 20px 25px;
    color: #fff;
    margin-bottom: 20px;
}

.product-price-box .price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 38px;
}

.product-price-box .unit-price {
    font-size: 1.1rem;
}

.product-price-box .price-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 10px 0 15px 0;
}

.product-price-box .main-price .price-label {
    font-size: 2rem;
    font-weight: 300;
}

.product-price-box .main-price .price-value {
    font-size: 3.5rem;
    font-weight: 400;
}

.product-price-box .tax-price {
    align-items: flex-start;
    margin-top: 10px;
}

.product-price-box .tax-price .price-label-group {
    display: flex;
    flex-direction: column;
}

.product-price-box .tax-price .price-label {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.1;
}

.product-price-box .tax-price .price-sublabel {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.1;
}

.product-price-box .tax-price .price-value {
    font-size: 1.8rem;
    font-weight: 400;
}
.product-prices div {
    margin-bottom: 0px;
}
.product-prices div.product-discount {
    display: inline-block;
}
.product-prices .productListBtnDiv {
    display: none;
}
.product-prices .tax-shipping-delivery-label {
    font-size: 0.8125rem;
    color: #7a7a7a;
}
.product-prices .tax-shipping-delivery-label .delivery-information {
    padding: 0 0 0 2px;
    font-weight: 700;
}
.product-prices .tax-shipping-delivery-label .delivery-information::before {
    padding: 0 2px 0 0;
    content: "-";
}
.product-discount {
    color: #7a7a7a;
}
.product-discount .regular-price {
    margin-right: 0.625rem;
    font-weight: bold;
    text-decoration: line-through;
    font-size: 18px;
}
.has-discount.product-price,
.has-discount p,
.has-discount .page-content.page-cms ul,
.page-content.page-cms .has-discount ul {
    color: var(--color3);
}
.has-discount .discount {
    display: inline-block;
    padding: 0.3125rem 0.625rem;
    margin-left: 0.625rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    display:none;
    background: #f39d72;
}
.product-unit-price {
    margin-bottom: 0;
    font-size: 0.8125rem;
    color: #24b9d7;
}
.has-discount.product-price + .productListBtnDiv {
    display: none;
}
.tabs {

}
#_desktop_tabs .tabs {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    padding: 15px;
    margin-bottom: 50px;
}
.tabs .tab-pane {
    padding-top: 1.25rem;
}
.tabs .nav-tabs {
    border: none;
    border-bottom: #f6f6f6 2px solid;
}
.tabs .nav-tabs .nav-link {
    color: var(--color3);
    border: 0 solid transparent;
}
.tabs .nav-tabs .nav-link.active {
    color: var(--color1);
    border: none;
    border-bottom: var(--color3) 3px solid;
}
.tabs .nav-tabs .nav-link:hover {
    border: none;
    border-bottom: #24b9d7 3px solid;
}
.tabs .nav-tabs .nav-item {
    float: left;
    margin-bottom: -0.125rem;
}
.product-cover {
    position: relative;
    margin-bottom: 1.25rem;
}
.product-cover img {
    background: #fff;
}
.product-cover .layer {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    cursor: pointer;
    background: #000;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
}
.product-cover .layer:hover {
    opacity: 1;
}
.product-cover .layer .zoom-in {
    font-size: 3.125rem;
    color: #fff;
}
#product-modal .modal-content {
    padding: 0;
    background: transparent;
    border: none;
}
#product-modal .modal-content .modal-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -30%;
}
#product-modal .modal-content .modal-body .product-cover-modal {
    background: #fff;
}
#product-modal .modal-content .modal-body .image-caption {
    width: 800px;
    padding: 0.625rem 1.25rem;
    background: #fff;
    border-top: #f6f6f6 1px solid;
}
#product-modal .modal-content .modal-body .image-caption p,
#product-modal .modal-content .modal-body .image-caption .page-content.page-cms ul,
.page-content.page-cms #product-modal .modal-content .modal-body .image-caption ul {
    margin-bottom: 0;
}
#product-modal .modal-content .modal-body .thumbnails {
    position: relative;
}
#product-modal .modal-content .modal-body .mask {
    position: relative;
    z-index: 1;
    max-height: 49.38rem;
    margin-top: 2.188rem;
    overflow: hidden;
}
#product-modal .modal-content .modal-body .mask.nomargin {
    margin-top: 0;
}
#product-modal .modal-content .modal-body .product-images {
    margin-left: 2.5rem;
}
#product-modal .modal-content .modal-body .product-images img {
    width: 9.25rem;
    cursor: pointer;
    background: #fff;
}
#product-modal .modal-content .modal-body .product-images img:hover {
    border: #24b9d7 3px solid;
}
#product-modal .modal-content .modal-body .arrows {
    position: absolute;
    top: 0;
    right: 1.875rem;
    z-index: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    cursor: pointer;
}
#product-modal .modal-content .modal-body .arrows .arrow-up {
    position: absolute;
    top: -2rem;
    opacity: 0.2;
}
#product-modal .modal-content .modal-body .arrows .arrow-down {
    position: absolute;
    bottom: -2rem;
}
#product-modal .modal-content .modal-body .arrows i {
    display: inline;
    font-size: 6.25rem;
}
#blockcart-modal {
    color: #232323;
}
#blockcart-modal .modal-header {
    background: #fff;
}
#blockcart-modal .modal-header .close {
    opacity: 1;
}
#blockcart-modal .modal-header .close .material-icons {
    color: #363a42;
}
#blockcart-modal .modal-body {
    padding: 3.125rem 1.875rem;
    background: #fff;
}
#blockcart-modal .modal-body .divide-right span {
    display: inline-block;
    margin-bottom: 0.3125rem;
}
#product span.current-price-value {
    font-size: 32px;
    vertical-align: middle;
    display: inline-block;
    font-weight: bold;
}
.product-variants > .product-variants-item ul li {
    margin-right: 0px;
    display: inline-block;
}
.product-variants > .product-variants-item ul li label > span {
    padding: 6px 20px;
    line-height: 25px;
    border: 1px solid #9b9a9a;
    border-radius: var(--border-radius-custom);
}
.product-variants > .product-variants-item ul li label > span.color {
    font-size: 0px;
    display: block;
    cursor: pointer;
    border: 1px solid #9b9a9a;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 0px;
}

.input-color:checked + span.color {
    border: 1px solid var(--color3) !important;
}
.input-color:checked + span.color{

}
/*social sharing*/
.social-sharing ul li {
    display: inline-block;
    background: none;
    vertical-align: top;
}
.social-sharing .title {
    background: transparent;
    border: none;
    padding-left: 0px;
}
.social-sharing ul {
    padding: 10px 0px;
    width: max-content;
    margin: 0 auto;
}
.social-sharing ul li {
    padding: 0px 5px;
}
.social-sharing ul i {
    background: white;
}
.social-sharing .dropdown-menu {
    margin-top: 0px;
    background: white;
    max-width: max-content;
}
.dropdown-animation {
    animation: fadeInDown 0.3s;
}
.product-variants-item ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -10%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
/*social sharing end*/
.product-features > dl.data-sheet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.product-features > dl.data-sheet dd.value, .product-features > dl.data-sheet dt.name {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 40%;
    flex: 1 0 40%;
    min-height: 2.5rem;
    padding: 0.625rem;
    margin-right: 0.625rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: capitalize;
    word-break: normal;
    background: #ebe9e9;
    border-radius: var(--border-radius-custom);
}
.tabs .content_mobile{
    display: none;
}
.tabs_container {
    background:white;
    padding: 30px 0px;
}
.clearfix.wishlist_btn .imgbtn {
    padding: 0px;
}

.clearfix.wishlist_btn {
    position: absolute;
    top: 20px;
    right: 20px;
}
#product .rightcolumn h1.h1 {
    margin-bottom: 15px;
    padding-right: 5px;
}
.manufacturer_content label.label {
    font-weight: bold;
}
.manufacturer_content {
    display: flex;
    justify-content: space-between;
    margin: 20px 0px 20px;
}

.product-variants-item ul.type_color label {
    display: flex;
    align-items: center;
}
.product-variants > .product-variants-item ul.type_color li label > span:not(.color) {
    padding: 0px 5px;
    border: none;
}
section.product-features {
    margin-top: 15px;
}
div#product-details label.label {
    font-weight: bold;
}
section.product-pack .h4 {
    width: 100%;
}
section.product-pack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
section.product-pack article .card .pack-product-container {
    display: flex;
    flex-direction: column;
}

section.product-pack article .card {
    display: flex;
}
section.product-pack article {
    max-width: 150px;
    display: flex;
}
.pack-product-container img {
    max-width: 100%;
    height: auto;
}
section.product-pack .h4 {
    width: 100%;
    margin: 0px;
}
.price_units_packs {
    display: flex;
    justify-content: space-between;
}
.pack-product-name {
    margin-bottom: 5px;
    flex-grow: 1;
    margin-top: 5px;
}
section.product-customization.js-product-customization li.product-customization-item {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}
section.product-customization.js-product-customization li.product-customization-item label {
    width: 100%;
}
section.product-customization.js-product-customization li.product-customization-item textarea {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
}
.product-description img{
    max-width: 100%;
    height: auto
}

@media (max-width: 991px) {
    #blockcart-modal .modal-body .divide-right span {
        display: block;
        padding: 0 0.5rem;
    }
    div#tab-content {
        display: none;
    }
    .tabs .nav-tabs .nav-item {
        width: 100%;
        float: none;
        margin-bottom: 0px;
    }
    .tabs .nav-tabs .nav-link.active, .tabs .nav-tabs .nav-link, .tabs .nav-tabs .nav-link:hover {
        color: var(--color1);
        border-top: 1px solid #efefef;
        border-bottom: none;
        padding: 0px 15px;
        line-height: 50px;
        background: #f8fafc;
    }
    .tabs .nav-tabs .nav-link:after {
        content: "+";
        float: right;
        font-size: 24px;
        font-weight: 300;
    }
    .tabs .nav-tabs .nav-link.actived:after {
        content: "-";
    }
    .tabs {
        margin: 20px 0px 30px;
    }
    #product .rightcolumn {
        padding: 15px;
    }
    .manufacturer_content {
        flex-direction: column;
    }
    .product-reference.text-end {
        text-align: left !important;
        margin-top: 10px;
    }
    .tabs .content_mobile {
        background: #f8fafc;
        padding: 15px
    }


}
@media(max-width:767px) {
    #product .js-product-container {
        margin-left: 0px;
    }
    .leftcolumn {
        padding: 0;
    }
    .rightcolumn {
        margin-top: 15px;
    }
    .leftcolumn .product-flags {
        left: 10px;
    }
    .product-images-ecommzoom .thumb-container-ecommzoom ul li {
        padding:0px;
    }

}





a#btnAddProduct i {
    display: none;
}

a#btnAddProduct {
    width: 100%;
}
.product-description iframe {
    position: relative !important;
}

/* ===== MP TRUST BADGES — OVERRIDE PÁGINA DE PRODUCTO ===== */
/* Grid 2×2 con tarjetas bordeadas */

#product .mp-trust {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 16px;
    width: 100%;
    left: initial;
    margin: 0;
    right: initial;
}
#product .mp-trust-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
}

#product .mp-trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 14px !important;
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    border-right: 1px solid #E2E8F0 !important;
    border-radius: 8px !important;
}

#product .mp-trust-item:last-child {
    border-right: 1px solid #E2E8F0 !important;
}

#product .mp-trust-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
}

#product .mp-trust-icon svg {
    width: 18px !important;
    height: 18px !important;
}

#product .mp-trust-text h4 {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1C1C1C !important;
    margin: 0 0 2px 0 !important;
    line-height: 1.3 !important;
}
.grid_mode_zoom .cover-image-ecommzoom {
    background: white;
    border-radius: 14px;
    border: 1px solid #E2E8F0;
    padding: 10px;
}
#product .mp-trust-text p {
    font-size: 12px !important;
    color: #64748B !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}
@media(max-width: 767px){
    #product .mp-trust > .container {
        padding: 0px;
    }
    #product .rightcolumn {
        padding: 0px;
    }
}

.js-mailalert.text-center {
    display: flex;
    flex-wrap: wrap; /* Obligatorio para que los elementos puedan bajar de línea */
    align-items: center;
    margin-bottom: 30px;
}

/* Selecciona el primer elemento y le da el 100% */
.js-mailalert.text-center > :first-child {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Selecciona a partir del segundo elemento (el 2º y el 3º) y les da el 50% */
.js-mailalert.text-center > :nth-child(n+2) {
    flex: 0 0 50%;
    max-width: 50%;
}

section.featured-products.clearfix.mt-3 {
    margin-bottom: 80px;
}