/* =========================================
   CONTENEDOR GENERAL
========================================= */

.show-ficha-color {
    background: #ffffff;
    font-family: "Gotham", sans-serif;
    overflow-x: hidden;
}

/* =========================================
   CONTENEDORES PRINCIPALES
========================================= */

.hero-color,
.formatos-color,
.cotizador-ficha,
.inspirate-ficha,
.otros-colores {
    width: 1280px !important;
    max-width: calc(100% - 120px) !important;

    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   HERO
========================================= */

.hero-color {
    padding-top: 180px;
}

/* =========================================
   TITULO
========================================= */

.hero-header {
    text-align: center;
    margin-bottom: 42px;
}

.hero-header h1 {
    font-family: "DinPro";
    font-size: 42px;
    font-weight: 400;
    color: #4b4036;

    line-height: 1;
    margin-bottom: 8px;
}

.hero-header p {
    font-family: "Gotham";
    font-size: 18px;
    font-weight: 300;

    color: #ac8b72;

    margin: 0;
}

/* =========================================
   GALERIA
========================================= */

.hero-galeria {
    display: grid;

    grid-template-columns: 165px 1fr;

    gap: 8px;
}

/* =========================================
   MINIATURAS CON HOVER / FORMATO
========================================= */

.miniaturas {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
}

.miniatura-item {
    position: relative;
    width: 165px;
    height: 194px;
    overflow: hidden;
    cursor: pointer;
}

.miniatura-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.miniatura-overlay {
    position: absolute;
    inset: 0;
    background: rgba(75, 64, 54, 0.68);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.miniatura-overlay span {
    color: #fefcf6;
    font-family: "Gotham", sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.2;
    padding: 0 10px;
    text-transform: uppercase;
}

.miniatura-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.78);
}

.miniatura-item:hover .miniatura-overlay {
    opacity: 1;
    visibility: visible;
}

.miniatura-item img,
.inspirate-item img,
.carousel-zoom-image {
    cursor: zoom-in !important;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(45, 35, 28, 0.78);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-content {
    width: 86vw;
    height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* X */
.gallery-close {
    top: 28px;
    left: 38px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Flechas */
.gallery-arrow {
    top: 50%;
    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* TAMAÑO REAL ICONOS */
.gallery-close i {
    font-size: 22px !important;
}

.gallery-arrow i {
    font-size: 20px !important;
}

/* Posiciones */
.gallery-prev {
    left: 32px;
}

.gallery-next {
    right: 32px;
}

/* =========================================
   BANNER PRINCIPAL ENFOCADO AL PISO
========================================= */

.imagen-principal img,
.carousel-ficha-color .carousel-item img {
    width: 100% !important;
    height: 600px !important;

    object-fit: cover !important;

    /* más abajo = más piso */
    object-position: center 78% !important;

    display: block !important;
}

/* =========================================
   BANNER PRINCIPAL ENFOCADO AL PISO
========================================= */

.imagen-principal img,
.carousel-ficha-color .carousel-item img {
    width: 100% !important;
    height: 600px !important;

    object-fit: cover !important;

    /* más abajo = más piso */
    object-position: center 78% !important;

    display: block !important;
}

/* =========================================
   FORMATOS
========================================= */

.formatos-color {
    margin-top: 75px;

    text-align: center;
}

.formatos-color h3 {
    font-family: "Gotham";

    font-size: 22px;

    font-weight: 300;

    color: #4b4036;

    margin-bottom: 50px;

    letter-spacing: 1px;
}

.formatos-grid {
    display: flex !important;

    justify-content: center !important;

    align-items: flex-start !important;

    flex-wrap: wrap !important;

    gap: 80px !important;

    width: 100% !important;
}

/* 1 elemento */
.formatos-grid .formato-card:only-child {
    max-width: 320px;
}

/* 2 elementos */
.formatos-grid .formato-card:nth-last-child(2):first-child,
.formatos-grid .formato-card:nth-last-child(2):first-child + .formato-card {
    max-width: 320px;
}

/* 3 elementos */
.formatos-grid .formato-card {
    width: 320px;
}

.formato-card img {
    width: 145px;

    height: 145px;

    object-fit: contain;

    margin-bottom: 26px;
}

.formato-card h4 {
    font-family: "Gotham";

    font-size: 16px;

    font-weight: 200;

    color: #705039;

    margin-bottom: 14px;
}

.formato-card p {
    font-family: "Gotham";

    font-size: 13.6px;

    line-height: 1.55;

    color: #ac8b72;

    margin: 4px;
}

/* =========================================
   COTIZADOR
========================================= */

.cotizador-ficha {
    margin-top: 90px;
}

.cotizador-box {
    background: #4b4036;
    padding: 72px 95px 55px;
    color: #f4ebdf;
}

.cotizador-head {
    text-align: center;
    margin-bottom: 72px;
}

.cotizador-head h2 {
    font-family: "DinPro";
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #f4ebdf;
    margin-bottom: 14px;
}

.cotizador-head p {
    font-family: "Gotham";
    font-size: 22px;
    font-weight: 300;
    color: #ac8b72;
    margin: 0;
}

.cotizador-specs {
    display: grid;
    grid-template-columns: 1fr 1fr 1.7fr 2.1fr 0.8fr;
    gap: 34px;
    border-bottom: 1px solid #b6a296;
    padding-bottom: 18px;
    margin-bottom: 34px;
}

.spec-item label {
    display: block;
    font-family: "Gotham";
    font-size: 16px;
    font-weight: 300;
    color: #b6a296;
    margin-bottom: 34px;
}

.input-select {
    width: 100%;
    border: none;
    background: transparent;
    color: #b6a296;
    font-family: "Gotham";
    font-size: 18px;
    font-weight: 300;
    outline: none;
    border-bottom: 1px solid transparent;
}

.spec-item select.input-select,
.spec-metros .input-select {
    border-bottom: 1px solid #b6a296;
    padding-bottom: 4px;
}

.input-select option {
    color: #4b4036;
}

.check-asistencia,
.cotizador-privacidad {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 28px 0 42px;
}

.check-asistencia input,
.cotizador-privacidad input {
    width: 18px;
    height: 18px;
    accent-color: #b6a296;
}

.check-asistencia label,
.cotizador-privacidad label {
    font-family: "Gotham";
    font-size: 14px;
    font-weight: 300;
    color: #b6a296;
}

.cotizador-form-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 18px;
}

.cotizador-form-grid .input-line {
    height: 36px;
    border: 1px solid #b6a296;
    background: transparent;
    color: #b6a296;
    font-family: "Gotham";
    font-size: 14px;
    padding: 0 16px;
    outline: none;
}

.cotizador-form-grid .input-half {
    grid-column: span 1.5;
}

.cotizador-form-grid select.input-half {
    grid-column: span 2;
}

.cotizador-form-grid .textarea {
    grid-column: 1 / -1;
    height: 90px;
    border: 1px solid #b6a296;
    background: transparent;
    color: #f4ebdf;
    font-family: "Gotham";
    font-size: 14px;
    padding: 16px;
    resize: none;
    outline: none;
}

.cotizador-form-grid input::placeholder,
.cotizador-form-grid textarea::placeholder {
    color: #b6a296;
    opacity: 1;
}

/* =========================================
   CAPTCHA COTIZADOR
========================================= */

.captcha-container {

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-top: 18px;

    margin-bottom: 3px;
}

.btn-enviar-color {
    width: 190px;

    height: 36px;

    margin-top: 50px;

    background: #b6a296;

    color: #fefcf6;

    border: none;

    border-radius: 4px;

    font-family: "Gotham";

    font-size: 18px;

    font-weight: 300;

    transition: all 0.3s ease;

    cursor: pointer;
}

/* HOVER */

.btn-enviar-color:hover {
    background: #705039;

    color: #fefcf6;

    transform: translateY(-2px);
}

.privacidad-cotizador {
    text-align: center;
    font-family: "Gotham";
    font-size: 13px;
    color: #b6a296;
    margin-top: -22px;
}

.privacidad-cotizador a {
    color: #b6a296;
    text-decoration: underline;
}
/* =========================================
   PRIVACIDAD SIMPLE
========================================= */

.cotizador-politica-simple {
    max-width: 760px;

    margin: 34px auto 20px;
}

.cotizador-check-simple {
    width: 100%;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    gap: 12px;

    cursor: pointer;
}

.cotizador-check-simple input {
    width: 15px;
    height: 15px;

    accent-color: #b6a296;

    margin-top: 2px;

    flex-shrink: 0;
}

.cotizador-check-simple span {
    font-family: "Gotham";
    font-size: 13px;
    font-weight: 300;
    line-height: 1.45;

    color: #b6a296;
}

.cotizador-check-simple a {
    color: #b6a296;
    text-decoration: underline;
}

/* PROMOCIONES */

.cotizador-privacidad {
    max-width: 760px;

    margin: 0 auto 35px !important;

    justify-content: flex-start;
    align-items: flex-start;
}

.cotizador-privacidad label {
    line-height: 1.45;
}
/* =========================================
   INSPIRATE
========================================= */

.inspirate-ficha {
    margin-top: 90px;
}

.inspirate-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 36px;
}

.inspirate-header h3 {
    font-family: "DinPro";

    font-size: 42px;

    font-weight: 400;

    color: #4b4036;

    margin-bottom: 6px;
}

.inspirate-header p {
    font-family: "Gotham";

    font-size: 22px;

    line-height: 1.3;

    color: #ac8b72;

    margin: 0;
}

/* =========================================
   BOTON VER TODO
========================================= */

.btn-ver-todo {
    width: 190px;

    height: 52px;

    border: 1px solid #705039;

    color: #4b4036;

    text-decoration: none;

    font-family: "DinPro";

    font-size: 24px;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: 0.3s ease;
}

.btn-ver-todo:hover {
    background: #4b4036;
    color: #f4ebdf;
}

/* =========================================
   SCROLL HORIZONTAL
========================================= */

.inspirate-scroll {
    display: flex;

    gap: 18px;

    overflow-x: auto;

    overflow-y: hidden;

    scroll-behavior: smooth;

    padding-bottom: 18px;

    scrollbar-width: none;

    -ms-overflow-style: none;
}

.inspirate-scroll::-webkit-scrollbar {
    display: none;
}

.inspirate-item {
    flex: 0 0 32%;
}

.inspirate-item img {
    width: 100%;

    height: 420px;

    object-fit: cover;

    display: block;
}

/* =========================================
   OTROS COLORES
========================================= */

.otros-colores {
    margin-top: 100px;

    text-align: center;
}

.otros-colores h3 {
    font-family: "DinPro";

    font-size: 38px;

    font-weight: 400;

    color: #4b4036;

    margin-bottom: 10px;
}

.otros-colores p {
    font-family: "Gotham";

    font-size: 18px;

    color: #ac8b72;

    margin-bottom: 50px;
}

/* =========================================
   GRID COLORES
========================================= */

.otros-colores-grid {
    display: flex;

    justify-content: center;

    align-items: flex-start;

    gap: 20px;

    flex-wrap: wrap;

    margin-top: 45px;
}

.color-item {
    width: 92px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-decoration: none;
}

.color-item img {
    width: 92px;

    height: 250px;

    object-fit: cover;

    display: block;

    transition: 0.35s ease;
}

.color-item span {
    margin-top: 14px;

    font-family: "Gotham", sans-serif;

    font-size: 13px;

    font-weight: 300;

    color: #705039;

    text-align: center;

    line-height: 1.2;

    opacity: 0;

    transition: 0.3s ease;
}

.color-item:hover img {
    transform: translateY(-6px);

    filter: brightness(0.94);
}

.color-item:hover span {
    opacity: 1;
}

/* =========================================
LIGHTBOX GOOGLE STYLE
========================================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;

    background: rgba(15, 15, 15, 0.96);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;

    opacity: 0;
    visibility: hidden;

    transition: all 0.25s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* CONTENEDOR */

.gallery-content {
    width: 90%;
    height: 90vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGEN */

.gallery-content img {
    max-width: 100%;
    max-height: 100%;

    object-fit: contain;

    border-radius: 4px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* BOTON CERRAR */

.gallery-close {
    position: absolute;

    top: 28px;
    right: 34px;

    width: 58px;
    height: 58px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: white;

    font-size: 34px;
    font-weight: 200;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(10px);

    transition: 0.25s ease;

    z-index: 30;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.16);

    transform: scale(1.05);
}

/* FLECHAS */
.gallery-arrow {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 74px;
    height: 74px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 60px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(10px);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;

    z-index: 20;

    opacity: 0.72;
}

/* HOVER */

.gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.16);

    transform: translateY(-50%) scale(1.06);

    opacity: 1;
}

/* POSICIONES */

.gallery-prev {
    left: 34px;
}

.gallery-next {
    right: 34px;
}

/* CURSOR */

.zoomable-image {
    cursor: pointer;
}
/* =========================
   FICHA COLOR FULL RESPONSIVE
========================= */

/* LAPTOP */
@media (max-width: 1400px) {
    .hero-color,
    .formatos-color,
    .cotizador-ficha,
    .inspirate-ficha,
    .otros-colores {
        width: 1120px !important;
        max-width: calc(100% - 70px) !important;
    }

    .imagen-principal img,
    .carousel-ficha-color .carousel-item img {
        height: 520px !important;
    }

    .miniatura-item {
        height: 168px !important;
    }

    .cotizador-box {
        padding: 60px 60px 50px !important;
    }

    .cotizador-specs {
        gap: 22px !important;
    }
}

/* TABLET */
@media (max-width: 991px) {
    .hero-color,
    .formatos-color,
    .cotizador-ficha,
    .inspirate-ficha,
    .otros-colores {
        width: 88% !important;
        max-width: 88% !important;
    }

    .hero-color {
        padding-top: 135px !important;
    }

    .hero-header h1 {
        font-size: 34px !important;
    }

    .hero-galeria {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .miniaturas {
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: none !important;
        order: 2;
    }

    .miniatura-item {
        width: 100% !important;
        height: 150px !important;
    }

    .imagen-principal {
        order: 1;
    }

    .imagen-principal img,
    .carousel-ficha-color .carousel-item img {
        height: 420px !important;
    }

    .formatos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 45px !important;
    }

    .cotizador-box {
        padding: 55px 42px 48px !important;
    }

    .cotizador-head {
        margin-bottom: 48px !important;
    }

    .cotizador-head h2 {
        font-size: 28px !important;
    }

    .cotizador-head p {
        font-size: 18px !important;
    }

    .cotizador-specs {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 28px 24px !important;
    }

    .spec-item label {
        margin-bottom: 14px !important;
    }

    .cotizador-form-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .cotizador-form-grid select.input-half {
        grid-column: span 1 !important;
    }

    .inspirate-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 28px !important;
    }

    .inspirate-item {
        flex: 0 0 48% !important;
    }

    .inspirate-item img {
        height: 350px !important;
    }

    .color-item span {
        opacity: 1 !important;
    }
}

/* MOBILE */
@media (max-width: 575px) {
    .hero-color,
    .formatos-color,
    .cotizador-ficha,
    .inspirate-ficha,
    .otros-colores {
        width: 88% !important;
        max-width: 88% !important;
    }

    .hero-color {
        padding-top: 115px !important;
    }

    .hero-header {
        margin-bottom: 30px !important;
    }

    .hero-header h1 {
        font-size: 28px !important;
    }

    .hero-header p {
        font-size: 15px !important;
    }

    .imagen-principal img,
    .carousel-ficha-color .carousel-item img {
        height: 320px !important;
        object-position: center !important;
    }

    .miniaturas {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }

    .miniatura-item {
        height: 105px !important;
    }

    .miniatura-overlay span {
        font-size: 10px !important;
    }

    .formatos-color {
        margin-top: 55px !important;
    }

    .formatos-grid {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .formato-card img {
        width: 120px !important;
        height: 120px !important;
    }

    .formato-card h4 {
        font-size: 19px !important;
    }

    .formato-card p {
        font-size: 14px !important;
    }

    .cotizador-ficha {
        margin-top: 65px !important;
    }

    .cotizador-box {
        padding: 42px 22px 40px !important;
    }

    .cotizador-head {
        margin-bottom: 36px !important;
    }

    .cotizador-head h2 {
        font-size: 23px !important;
        line-height: 1.2 !important;
    }

    .cotizador-head p {
        font-size: 16px !important;
        line-height: 1.35 !important;
    }

    .cotizador-specs {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        border-bottom: none !important;
    }

    .spec-item label {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }

    .input-select {
        font-size: 15px !important;
    }

    /* =========================================
   CHECKBOXES COTIZADOR MOBILE
========================================= */

    .check-asistencia,
    .cotizador-politica-simple,
    .cotizador-privacidad {
        width: 100% !important;
        max-width: 320px !important;
    
        margin-left: auto !important;
        margin-right: auto !important;
    
        display: block !important;
    }
    
    .check-asistencia,
    .cotizador-privacidad {
        margin-top: 24px !important;
        margin-bottom: 30px !important;
    }
    
    .cotizador-politica-simple {
        margin-top: 24px !important;
        margin-bottom: 20px !important;
    }
    
    .check-asistencia,
    .cotizador-check-simple,
    .cotizador-privacidad {
        display: grid !important;
        grid-template-columns: 13px 1fr !important;
        column-gap: 12px !important;
    
        align-items: start !important;
    }
    
    .check-asistencia input,
    .cotizador-check-simple input,
    .cotizador-privacidad input {
        width: 13px !important;
        height: 13px !important;
    
        margin: 3px 0 0 0 !important;
    
        flex-shrink: 0 !important;
    }
    
    .check-asistencia label,
    .cotizador-check-simple span,
    .cotizador-check-simple a,
    .cotizador-privacidad label {
        font-size: 11px !important;
        line-height: 1.45 !important;
        text-align: left !important;
    }
    /* =========================================
       FORMULARIO
    ========================================= */

    .cotizador-form-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .cotizador-form-grid .input-line,
    .cotizador-form-grid .textarea,
    .cotizador-form-grid select.input-half {
        grid-column: 1 / -1 !important;
    }

    .btn-enviar-color {
        width: 160px !important;
        height: 38px !important;
        font-size: 16px !important;
        margin-top: 35px !important;
    }

    .privacidad-cotizador {
        font-size: 11px !important;
        line-height: 1.4 !important;
        margin-top: -10px !important;
    }
    
    .captcha-container {

        width: 100% !important;
    
        display: flex !important;
    
        justify-content: center !important;
    
        align-items: center !important;
    
        margin-top: -8px !important;
    
        margin-bottom: 8px !important;
    
        transform: scale(0.90);
    
        transform-origin: center;
    }

    /* =========================================
       INSPÍRATE
    ========================================= */

    .inspirate-ficha {
        margin-top: 65px !important;
    }

    .inspirate-header h3 {
        font-size: 30px !important;
    }

    .inspirate-header p {
        font-size: 16px !important;
    }

    .btn-ver-todo {
        width: 160px !important;
        height: 45px !important;
        font-size: 19px !important;
    }

    .inspirate-scroll {
        gap: 14px !important;
    }

    .inspirate-item {
        flex: 0 0 82% !important;
    }

    .inspirate-item img {
        height: 310px !important;
    }

    /* =========================================
       OTROS COLORES
    ========================================= */

    .otros-colores {
        margin-top: 70px !important;
    }

    .otros-colores h3 {
        font-size: 29px !important;
    }

    .otros-colores p {
        font-size: 15px !important;
        margin-bottom: 35px !important;
    }

    .otros-colores-grid {
        gap: 24px 16px !important;
    }

    .color-item {
        width: 82px !important;
    }

    .color-item img {
        width: 82px !important;
        height: 210px !important;
    }

    .color-item span {
        font-size: 11px !important;
        opacity: 1 !important;
    }

    /* =========================================
       LIGHTBOX
    ========================================= */

    .gallery-content {
        width: 92vw !important;
        height: 82vh !important;
    }

    .gallery-close {
        width: 46px !important;
        height: 46px !important;
        font-size: 28px !important;
    }

    .gallery-arrow {
        width: 44px !important;
        height: 44px !important;
        font-size: 34px !important;
    }
}

/* MOBILE MUY PEQUEÑO */
@media (max-width: 380px) {
    .hero-color {
        padding-top: 105px !important;
    }

    .hero-header h1 {
        font-size: 24px !important;
    }

    .imagen-principal img,
    .carousel-ficha-color .carousel-item img {
        height: 285px !important;
    }

    .miniatura-item {
        height: 88px !important;
    }

    .cotizador-box {
        padding: 36px 18px !important;
    }

    .inspirate-item img {
        height: 270px !important;
    }

    .color-item {
        width: 74px !important;
    }

    .color-item img {
        width: 74px !important;
        height: 190px !important;
    }
}

/* FIX FICHA COLOR - TODOS LOS NAVEGADORES */
.show-ficha-color,
.show-ficha-color * {
    box-sizing: border-box !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: geometricPrecision !important;
    font-kerning: normal !important;
}

/* SELECTS CON FLECHA */
.show-ficha-color select,
.show-ficha-color .input-select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;

    background-color: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b6a296' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 8px center !important;
    background-size: 15px !important;

    padding-right: 34px !important;
    cursor: pointer !important;
}

.show-ficha-color select::-ms-expand {
    display: none;
}

/* FIX IMÁGENES SAFARI */
.miniatura-item img,
.imagen-principal img,
.carousel-ficha-color .carousel-item img,
.inspirate-item img,
.color-item img {
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
}
