.inspirate-page {
    background: #ffffff !important;
    padding-top: 200px;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    font-family: "Gotham", sans-serif;
}

.inspirate-page + footer,
.inspirate-page ~ footer {
    margin-top: 0 !important;
}
/* HERO */

.inspirate-hero {
    text-align: center;
    margin-bottom: 78px;
}

.inspirate-hero h1 {
    color: #4B4036;
    font-family: "DinProRegular", sans-serif;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.inspirate-hero p {
    color: #ac8b72;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 980px;
    margin: 0 auto;
}

/* FILTROS */

.filtros-inspirate {
    margin-bottom: 82px;
}

.filtros-inspirate h2 {
    color: #000;
    font-size: 30px;
    font-family: "DinProRegular";
    font-weight: 500;
    margin-bottom: 36px;
}

.filtros-row {
    padding-left: 55px;
}

.select-coleccion {
    width: 165px;
    border: 0;
    border-bottom: 1px solid #ac8b72;
    background: transparent;
    color: #7b563e;
    font-size: 19px;
    font-weight: 300;
    outline: none;
    padding: 9px 0;
    appearance: auto;
}

/* BOTONES PRODUCTOS */

.productos-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    max-width: 1120px;
}

.btn-producto {
    min-width: 145px;

    width: auto;

    height: auto;

    min-height: 42px;

    padding: 10px 18px;

    border: 1px solid #ac8b72;

    background: transparent;

    border-radius: 3px;

    color: #705039;

    font-size: 16px;

    font-weight: 300;

    letter-spacing: 0.8px;

    line-height: 1.15;

    font-family: "Gotham", sans-serif;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    white-space: normal;

    transition: all 0.3s ease;

    flex-shrink: 0;

    cursor: pointer;
}

/* HOVER + ACTIVO */

.btn-producto:hover,
.btn-producto.activo-producto {
    border-color: #705039;

    background: #705039 !important;
    color: #fefcf6 !important;

    transform: translateY(-2px);
}
/* GALERÍA */

.galeria-inspirate {
    margin-top: 0;
}

.grid-inspirate {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 58px;
    row-gap: 62px;
}

.item-galeria {
    display: block;
}

.col-4-img {
    grid-column: span 4;
}

.col-8-img {
    grid-column: span 8;
}

.col-6-img {
    grid-column: span 6;
}

.col-3-img {
    grid-column: span 3;
}

.img-box {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
}

.item-galeria img {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.item-galeria:hover img {
    transform: scale(1.025);
}

.item-galeria p {
    margin-top: 22px;
    margin-bottom: 0;
    color: #b79a84;
    font-size: 17px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.item-galeria p strong {
    color: #4b4036;
    font-weight: 500;
}

.d-none-inspirate {
    display: none !important;
}

/* BOTÓN CARGAR MÁS */

.btn-cargar-mas {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 250px;
    height: 48px;

    margin-top: 40px;
    margin-bottom: 70px;

    border-radius: 4px;

    border: 1px solid #705039;
    background: transparent;

    color: #705039;

    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1.5px;

    transition: all 0.3s ease;
}

.btn-cargar-mas:hover {
    border-color: #705039;

    background: #705039 !important;
    color: #fefcf6 !important;

    transform: translateY(-2px);
}

/* TABLET */

@media (max-width: 1200px) {
    .grid-inspirate {
        column-gap: 38px;
    }

    .item-galeria img {
        height: 480px;
    }
}

/* MOBILE */

@media (max-width: 992px) {
    /* QUITAR SALTOS DE LÍNEA EN MOBILE */

    .inspirate-page {
        padding-top: 120px;
    }

    .inspirate-hero {
        margin-bottom: 60px;
    }

    .inspirate-hero h1 {
        font-size: 24px;
    }

    .inspirate-hero p {
        font-size: 12px;
        padding: 0 18px;
    }

    .filtros-inspirate {
        margin-bottom: 70px;
    }

    .filtros-inspirate h2 {
        font-size: 23px;
        text-align: center !important;
    }

    .filtros-row {
        padding-left: 0;
        text-align: center !important;
    }

    .select-coleccion {
        margin: 0 auto 25px auto !important;

        display: block !important;

        text-align: center !important;
        text-align-last: center !important;
    }

    /* BOTONES SUPERIORES */
    .productos-wrapper {
        gap: 14px;

        justify-content: center !important;

        align-items: center !important;
    }

    .btn-producto {
        width: 135px;

        height: 42px;

        font-size: 16px;

        display: flex !important;

        justify-content: center !important;

        align-items: center !important;

        text-align: center !important;
    }

    .grid-inspirate {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .col-4-img,
    .col-8-img,
    .col-6-img,
    .col-3-img {
        grid-column: span 1;
    }

    .item-galeria {
        text-align: center !important;
    }

    .item-galeria img {
        height: auto;
    }

    /* TEXTOS DE IMÁGENES */
    .item-galeria p {
        font-size: 16px;

        text-align: center !important;

        max-width: 320px !important;

        margin: 22px auto 0 auto !important;

        line-height: 1.6 !important;
    }

    .btn-cargar-mas {
        min-width: 190px;
        height: 44px;
        font-size: 20px;
    }

    .inspirate-hero h1 br,
    .inspirate-hero p br,
    .filtros-inspirate h2 br,
    .item-galeria p br,
    .btn-producto br {
        display: none !important;
    }
}
/* MOBILE - BOTONES CENTRADOS */
@media (max-width: 575px) {
    .productos-wrapper {
        width: 100% !important;

        display: flex !important;

        flex-wrap: wrap !important;

        justify-content: center !important;

        align-items: center !important;

        gap: 14px !important;

        padding: 0 10px !important;

        margin: 0 auto !important;
    }

    .btn-producto {
        width: calc(50% - 8px) !important;

        max-width: 145px !important;

        min-width: unset !important;

        height: 42px !important;

        margin: 0 !important;

        display: flex !important;

        justify-content: center !important;

        align-items: center !important;

        text-align: center !important;
    }
    .select-coleccion {
        width: 175px !important;
        min-width: 175px !important;
        font-size: 18px !important;
        padding-right: 36px !important;
        background-position: right 12px center !important;
    }
    .btn-producto br {
        display: block !important;
    }
}

/* RENDER TIPOGRAFIA */
.inspirate-page,
.inspirate-page * {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;

    text-rendering: geometricPrecision !important;

    font-kerning: normal !important;

    font-feature-settings: "kern" 1 !important;

    box-sizing: border-box !important;
}

/* FIX SELECT SAFARI */
/* SELECT CON FLECHA CUSTOM */
.select-coleccion {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !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='%23705039' 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");

    background-repeat: no-repeat !important;

    background-position: right 8px center !important;

    background-size: 16px !important;

    padding-right: 34px !important;

    cursor: pointer !important;
}

/* FIX BOTONES FLEX */
.productos-wrapper {
    display: flex !important;

    flex-wrap: wrap !important;

    justify-content: flex-start !important;

    align-items: center !important;

    width: 100% !important;

    overflow: visible !important;

    gap: 18px 24px !important;
}

/* BOTONES UNIFORMES */
.btn-producto {
    min-width: 145px !important;

    min-height: 42px !important;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    text-align: center !important;

    white-space: nowrap !important;

    transform: translateZ(0);

    backface-visibility: hidden;
}

/* FIX GRID SAFARI */
.grid-inspirate {
    min-width: 0 !important;
}

/* FIX IMAGENES */
.item-galeria img {
    transform: translateZ(0);

    backface-visibility: hidden;

    will-change: transform;
}

/* FIX OVERFLOW */
.item-galeria,
.img-box,
.grid-inspirate {
    overflow: hidden !important;
}

