/* ===================================================== */
/* ======== CATÁLOGO · COLECCIÓN BODAS ======== */
/* ===================================================== */

.collection-page {
    background: #f8f6f3;
    padding: 60px 0 80px;
    overflow: hidden;
}

/* ===================================================== */
/* CONTAINER */
/* ===================================================== */

.collection-page .container-fluid {
    max-width: 1480px;
    margin: auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* ===================================================== */
/* BREADCRUMB */
/* ===================================================== */

.collection-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.collection-breadcrumb a {
    text-decoration: none;
    color: #8c8c8c;
    font-size: 13px;
    transition: .3s ease;
}

.collection-breadcrumb a:hover {

    color: #111;

}

.collection-breadcrumb span {

    color: #c2c2c2;

}

.collection-breadcrumb strong {
    color: #111;
    font-weight: 600;
}

/* ===================================================== */
/* HEADER */
/* ===================================================== */

.collection-top {

    margin-bottom: 38px;

}

.collection-subtitle {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b8955f;
    margin-bottom: 12px;
}

.collection-main-title {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1px;
    color: #111;
    margin-bottom: 16px;
    max-width: 680px;
}

.collection-description {
    max-width: 760px;
    font-size: 15px;
    line-height: 1.8;
    color: #6f6f6f;
}

/* ===================================================== */
/* FILTROS */
/* ===================================================== */

.collection-filters {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #ece7e2;
    margin-bottom: 38px;
}

/* ===================================================== */
/* SEARCH */
/* ===================================================== */

.search-box {

    position: relative;

}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 2;
    font-size: 14px;
}

.search-box .form-control {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #dddddd;
    padding-left: 42px;
    font-size: 13px;
    color: #111;
    box-shadow: none;
    transition: .3s ease;
}

.search-box .form-control:focus {

    border-color: #c8a96b;
    box-shadow: none;

}

/* ===================================================== */
/* SELECT */
/* ===================================================== */

.form-select {
    height: 44px;
    border-radius: 10px;
    border: 1px solid #dddddd;
    font-size: 13px;
    color: #111;
    padding-left: 14px;
    box-shadow: none;
    transition: .3s ease;
}

.form-select:focus {

    border-color: #c8a96b;
    box-shadow: none;

}

/* ===================================================== */
/* RESET BUTTON */
/* ===================================================== */

.reset-btn {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #d8c29b;
    background: #fff;
    color: #b8955f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: .3s ease;
}

.reset-btn:hover {
    background: #c8a96b;
    border-color: #c8a96b;
    color: #fff;
}

/* ===================================================== */
/* CONTADOR */
/* ===================================================== */

.products-count {
    margin-top: 12px;
    padding-left: 3px;
    font-size: 13px;
    color: #8b8b8b;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

/* ===================================================== */
/* CARD */
/* ===================================================== */

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all .35s ease;
    border: 1px solid #f0ece7;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.05);
}

/* ===================================================== */
/* IMAGE */
/* ===================================================== */

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    aspect-ratio: 1 / 0.92;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.product-card:hover .product-image img {

    transform: scale(1.03);

}

/* ===================================================== */
/* FAVORITO */
/* ===================================================== */

.favorite-btn {

    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.96);
    color: #b8955f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: .3s ease;
    z-index: 5;

}

.favorite-btn:hover {

    background: #111;
    color: #fff;

}

/* ===================================================== */
/* BADGE */
/* ===================================================== */

.product-badge {

    position: absolute;
    top: 12px;
    left: 12px;
    background: #111;
    color: #fff;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 5;

}

/* ===================================================== */
/* CONTENT */
/* ===================================================== */

.product-content {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* ===================================================== */
/* TITLE */
/* ===================================================== */

.product-title {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.35;
    color: #111;
    margin-bottom: 6px;
    min-height: 46px;
    display: flex;
    align-items: flex-start;
}

/* ===================================================== */
/* MIN */
/* ===================================================== */

.product-min {
    font-size: 12px;
    color: #8a8a8a;
    margin-bottom: 12px;
}

/* ===================================================== */
/* PRICE */
/* ===================================================== */

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    letter-spacing: -.3px;
    margin-bottom: 2px;
}

/* ===================================================== */
/* USD */
/* ===================================================== */

.product-usd {
    font-size: 11px;
    color: #9b9b9b;
    margin-bottom: 14px;
}

/* ===================================================== */
/* BUTTON */
/* ===================================================== */

.product-btn {
    margin-top: auto;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background: #1b1b1b;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: .3s ease;
}

.product-btn:hover {
    background: #b8955f;
    color: #fff;
}

/* ===================================================== */
/* PAGINATION */
/* ===================================================== */

.collection-pagination {
    margin-top: 55px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;

}

.pagination .page-item {
    list-style: none;
}

.pagination .page-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: .3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.pagination .page-link:hover {
    background: #111;
    color: #fff;
}

.pagination .page-item.active .page-link {
    background: #111;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    opacity: .4;
    pointer-events: none;
}

/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */

@media (max-width: 1200px) {

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 991px) {

    .collection-page {
        padding: 50px 0 70px;
    }

    .collection-page .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .collection-main-title {
        font-size: 38px;
        max-width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .collection-filters {
        padding: 14px;
    }

}

@media (max-width: 576px) {

    .collection-page {
        padding: 40px 0 60px;
    }

    .collection-main-title {
        font-size: 30px;
        line-height: 1.1;
    }

    .collection-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-content {
        padding: 13px;
    }

    .collection-filters {
        border-radius: 14px;
    }

    .search-box .form-control,
    .form-select,
    .reset-btn {
        height: 42px;
        font-size: 13px;
    }

}

/* =========================================
GALERÍA DE PRODUCTOS
========================================= */

.product-image{
    position: relative;
}

/* Imagen principal */

.main-product-img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    cursor: pointer;

    transition: transform .4s ease;
}

.product-image:hover .main-product-img{
    transform: scale(1.03);
}

.product-main-image{
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #f7f4ef;
}

.product-main-image img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.product-card:hover .product-main-image img{
    transform: scale(1.03);
}

/* Miniaturas */

.product-thumbs{
    display: flex;
    gap: 10px;
    padding: 14px 4px 0;
    justify-content: center;
}

.product-thumbs .thumb{
    width: 58px;
    height: 58px;
    border-radius: 14px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .3s ease;
    opacity: .7;
    background: #fff;
}

.product-thumbs .thumb:hover{
    opacity: 1;
    transform: translateY(-2px);
}

.product-thumbs .thumb.active{
    border-color: #c7a26a;
    opacity: 1;
    box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

/* Favorito */

.favorite-btn{
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all .3s ease;
}

.favorite-btn:hover{
    transform: scale(1.08);
    background: #fff;
}

.favorite-btn i{
    font-size: 16px;
    color: #2d2d2d;
}

/* =========================================
MINIATURAS PRODUCTO
========================================= */

.product-thumbs{
    display: flex;
    gap: 10px;
    padding: 14px 16px 0;
}

.product-thumbs .thumb{
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .25s ease;
    opacity: .75;
}

.product-thumbs .thumb:hover{
    opacity: 1;
    transform: translateY(-2px);
}

.product-thumbs .thumb.active{
    border-color: #c8a46b;
    opacity: 1;
    box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
/* =========================================
FAVORITOS ACTIVOS
========================================= */

.favorite-btn.active{
    background: #c6a56a;
    border-color: #c6a56a;
}

.favorite-btn.active i{
    color: white;
}

.favorite-btn i{
    transition: .3s ease;
}

.favorite-btn:hover{
    transform: scale(1.08);
}

/* =========================================
PINTEREST BUTTON
========================================= */

.pinterest-btn{
    position: absolute;

    top: 70px;
    right: 14px;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: white;

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

    text-decoration: none;

    box-shadow: 0 6px 20px rgba(0,0,0,.08);

    transition: .3s ease;

    z-index: 5;
}

.pinterest-btn i{
    color: #E60023;
    font-size: 1rem;
}

.pinterest-btn:hover{
    transform: scale(1.08);
}

/* =========================================
BOTÓN VER INSPIRACIÓN
========================================= */

.experience-btn{
    width: 100%;
    height: 48px;
    margin-top: 16px;
    margin-bottom: 8px;
    border: 1px solid #d7b98c;
    background: transparent;
    border-radius: 14px;
    font-size: .92rem;
    font-weight: 600;
    color: #2c2c2c;
    transition: all .3s ease;
    cursor: pointer;
}

.experience-btn:hover{
    background: #c6a56a;
    border-color: #c6a56a;
    color: white;

    transform: translateY(-2px);
}

/* =========================================
MODAL EXPERIENCE
========================================= */

.experience-modal{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;

    z-index: 99999;

    display: none;
}

.experience-modal.active{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay */

.experience-overlay{
    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.75);

    backdrop-filter: blur(6px);
}

/* Caja modal */

.experience-content{
    position: relative;

    width: 92%;
    max-width: 1100px;

    max-height: 92vh;

    overflow-y: auto;

    background: #fff;

    border-radius: 28px;

    z-index: 5;

    animation: modalFade .4s ease;
}

/* Animación */

@keyframes modalFade{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

/* Botón cerrar */

.experience-close{
    position: absolute;

    top: 18px;
    right: 18px;

    width: 48px;
    height: 48px;

    border: none;

    border-radius: 50%;

    background: white;

    font-size: 1.8rem;

    box-shadow: 0 8px 25px rgba(0,0,0,.12);

    z-index: 20;

    cursor: pointer;
}

/* Galería */

.experience-gallery{
    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(240px,1fr));

    gap: 14px;

    padding: 16px;
}

/* Imágenes */

.experience-gallery img{
    width: 100%;

    height: 320px;

    object-fit: cover;

    border-radius: 18px;
}

/* Info */

.experience-info{
    padding: 10px 35px 35px;

    text-align: center;
}

.experience-info h2{
    font-size: 2rem;

    margin-bottom: 14px;

    color: #2c2c2c;
}

.experience-info p{
    font-size: 1rem;

    line-height: 1.7;

    color: #777;

    max-width: 700px;

    margin: auto;
}

/* Responsive */

@media(max-width:768px){

    .experience-gallery{
        grid-template-columns: 1fr;
    }

    .experience-gallery img{
        height: 240px;
    }

    .experience-info h2{
        font-size: 1.5rem;
    }

}

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

.budget-btn{
    width: 100%;
    border: 1px solid #d4b483;
    background: transparent;
    color: #1f1f1f;
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 18px;
    transition: all .3s ease;
    cursor: pointer;
}

.budget-btn:hover{
    background: #d4b483;
    color: #fff;
}

/* BOX */

.budget-box{
    display: none;
    margin-top: 16px;
    padding: 18px;
    border-radius: 18px;
    background: #faf8f5;
    border: 1px solid rgba(212,180,131,.25);
    animation: fadeBudget .35s ease;
}

/* ACTIVO */

.budget-box.active{
    display: block;
}

/* GROUP */

.budget-group{
    margin-bottom: 14px;
}

.budget-group label{
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
    font-weight: 500;
}

/* SELECT */

.budget-group select{
    width: 100%;
    height: 46px;
    border-radius: 12px;
    border: 1px solid #e2ddd5;
    background: #fff;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
    transition: all .3s ease;
}

.budget-group select:focus{
    border-color: #d4b483;
    box-shadow: 0 0 0 3px rgba(212,180,131,.15);
}

/* BOTON CALCULAR */

.calculate-btn{
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 14px;
    background: #1f1f1f;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    transition: all .3s ease;
    cursor: pointer;
}

.calculate-btn:hover{
    background: #d4b483;
}

/* RESULTADO */

.budget-result{
    margin-top: 16px;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(212,180,131,.25);
    text-align: center;
    display: none;
}

.budget-result.active{
    display: block;
}

.budget-total{
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 6px;
}

.budget-text{
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* ANIMACION */

@keyframes fadeBudget{

    from{
        opacity: 0;
        transform: translateY(10px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

/* MOBILE */

@media(max-width:768px){

    .budget-btn{
        font-size: 13px;
        padding: 11px 14px;
    }

    .budget-box{
        padding: 14px;
    }

    .budget-total{
        font-size: 22px;
    }

}

/* INPUT NUMBER + DATE */

.budget-group input{
    width: 100%;
    height: 46px;
    border-radius: 12px;
    border: 1px solid #e2ddd5;
    background: #fff;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
    transition: all .3s ease;
}

.budget-group input:focus{
    border-color: #d4b483;
    box-shadow: 0 0 0 3px rgba(212,180,131,.15);
}

/* =========================================
MODAL COTIZADOR PREMIUM
========================================= */

.budget-modal{

    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);

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

    opacity: 0;
    visibility: hidden;

    transition: .4s;

    z-index: 99999;
}

.budget-modal.active{

    opacity: 1;
    visibility: visible;
}

.budget-modal-content{

    width: 92%;
    max-width: 520px;

    background: #fff;

    border-radius: 30px;

    padding: 45px;

    position: relative;

    animation: modalUp .4s ease;
}

@keyframes modalUp{

    from{
        transform: translateY(40px);
        opacity:0;
    }

    to{
        transform: translateY(0);
        opacity:1;
    }
}

.budget-close{

    position: absolute;
    top: 20px;
    right: 20px;

    border:none;
    background:none;

    font-size: 22px;
    cursor:pointer;
}

.budget-subtitle{

    letter-spacing: 3px;
    font-size: 12px;
    color:#b8955c;
}

#budgetTitle{

    margin:15px 0 30px;
    font-size: 34px;
}

.budget-group{

    margin-bottom:20px;
}

.budget-group label{

    display:block;
    margin-bottom:10px;

    font-size:14px;
}

.budget-group input,
.budget-group select{

    width:100%;
    height:58px;

    border:1px solid #ddd;
    border-radius:14px;

    padding:0 20px;

    font-size:15px;
}

.calculate-budget-btn{

    width:100%;
    height:60px;

    border:none;
    border-radius:16px;

    background:#111;
    color:#fff;

    font-weight:600;

    margin-top:15px;
}

/* =========================================
MODAL COTIZADOR PREMIUM
========================================= */

.quote-modal{

    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.55);

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

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 99999;

    padding: 20px;
}

.quote-modal.active{

    opacity: 1;
    visibility: visible;
}

/* CONTENEDOR */

.quote-modal-content{

    width: 92%;
    max-width: 520px;

    background: #fff;

    border-radius: 24px;

    padding: 28px;

    position: relative;

    animation: modalFade .25s ease;

    max-height: 90vh;

    overflow: hidden;
}

/* ANIMACION */

@keyframes quoteUp{

    from{
        transform: translateY(25px);
        opacity: 0;
    }

    to{
        transform: translateY(0);
        opacity: 1;
    }
}

/* BOTON CERRAR */

.quote-close{

    position: absolute;
    top: 14px;
    right: 14px;

    width: 34px;
    height: 34px;

    border: none;
    border-radius: 50%;

    background: #f5f5f5;

    cursor: pointer;

    font-size: 14px;
}

/* TITULO */

.quote-title{

    font-size: 26px;
    font-weight: 500;

    margin-bottom: 22px;

    color: #1d1d1d;
}

/* GRUPOS */

.quote-group{

    margin-bottom: 14px;
}

/* LABEL */

.quote-group label{

    display: block;

    margin-bottom: 6px;

    font-size: 13px;

    color: #777;
}

/* INPUTS */

.quote-group input,
.quote-group select{

    width: 100%;
    height: 46px;

    border: 1px solid #e7e7e7;
    border-radius: 12px;

    padding: 0 14px;

    font-size: 14px;

    background: #fafafa;

    transition: .2s;
}

.quote-group input:focus,
.quote-group select:focus{

    outline: none;

    border-color: #c6a15b;

    background: #fff;
}

/* BOTON */

.quote-calc-btn{

    width: 100%;
    height: 48px;

    border: none;
    border-radius: 14px;

    background: #c6a15b;
    color: #fff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: .3s;

    margin-top: 8px;
}

.quote-calc-btn:hover{

    transform: translateY(-2px);
}

/* RESULTADO */

.quote-result-box{

    margin-top: 22px;

    padding: 22px;

    background: #faf7f2;

    border-radius: 18px;
}

/* TOTAL */

.quote-total{

    font-size: 28px;
    font-weight: 700;

    color: #1d1d1d;

    margin-bottom: 14px;
}

/* INFO */

.quote-result-box p{

    font-size: 14px;
    line-height: 1.6;

    color: #555;

    margin-bottom: 10px;
}

/* FINANCIACION */

.payment-box{

    margin-top: 18px;

    background: #fff;

    border: 1px solid #eee;

    border-radius: 16px;

    padding: 18px;
}

.payment-box h4{

    font-size: 15px;

    margin-bottom: 14px;

    color: #1d1d1d;
}

.payment-box p{

    font-size: 13px;

    line-height: 1.6;

    margin-bottom: 10px;
}

/* PREGUNTA */

.quote-question{

    margin-top: 22px;

    text-align: center;
}

.quote-question h3{

    font-size: 15px;

    line-height: 1.5;

    color: #1d1d1d;

    margin-bottom: 18px;
}

/* ACCIONES */

.quote-actions{

    display: flex;
    gap: 10px;
}

.quote-actions button{

    flex: 1;

    height: 46px;

    border: none;
    border-radius: 12px;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}

.quote-yes{

    background: #c6a15b;
    color: #fff;
}

.quote-no{

    background: #efefef;
    color: #444;
}

/* WARNING */

.quote-warning{

    background: #fff4f4;

    border: 1px solid #ffd6d6;

    color: #9a4b4b;

    padding: 18px;

    border-radius: 16px;

    font-size: 13px;

    line-height: 1.7;

    margin-top: 20px;
}

/* MOBILE */

@media(max-width:768px){

    .quote-modal-content{

        padding: 22px;
    }

    .quote-title{

        font-size: 22px;
    }

    .quote-total{

        font-size: 24px;
    }

}
/* =========================================
BOTÓN CALCULAR MODAL
========================================= */

.quote-action{
    margin-top: 18px;
}

.quote-calculate-btn{
    width: 100%;
    height: 48px;

    border: none;
    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #c8a96b,
        #b9924f
    );

    color: #fff;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;

    cursor: pointer;

    transition: .3s ease;
}

.quote-calculate-btn:hover{
    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.quote-model-name{

    font-size: 14px;
    color: #9b7b4b;

    margin-bottom: 18px;

    font-weight: 500;

    letter-spacing: .4px;
}