/* --- DETALLE HERO --- */
section.detalle-hero {
    position: relative;
    background: linear-gradient(rgba(34, 34, 34, 0.85), rgba(34, 34, 34, 0.85)), url('../img/bck-remeras-vintage.jpg');
    background-size: cover;
    background-position: center;
    height: 460px;

    margin-bottom: 0;
}

.detalle-title {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 50px;
    line-height: 1.3;
    color: #fff;
    text-transform: uppercase;
}



/* --- DETALLE PRODUCTO CONTENIDO --- */
.section.detalle-producto {
    padding: 100px 0;
    margin-bottom: 0;
}

/* .container-detalle {
    max-width: 1170px;
    margin: 30px auto;
    padding: 0 30px;
} */

.container-detalle {
    max-width: 1170px;
    margin: 30px auto;
    padding: 0 30px;
}


.detalle-box {
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,.3);
}
.detalle-box::after {
    display: table;
    content: ' ';
    clear: both;
}

.detalle-box-left,
.detalle-box-right {
    float: left;
    /* padding: 30px 10px; */

    /* border: solid 2px blue; */
}

.detalle-box-left {
    width: calc(100% - 480px);
}

.detalle-box-right {
    width: 460px;
}

/* IMAGE GALLERY */
.detalle-top {
    padding: 30px 10px !important;
}

.detalle-top img {
    width: 100%;
}


.detalle-thumbs {
    position: relative;
    padding: 24px 10px !important;
    /* height: 130px; */
    background: #f6f6f6;
}
.detalle-thumbs::after {
    display: block;
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    z-index: 100;

    background: linear-gradient(to right, rgba(255,255,255,.0), rgba(246, 246, 246, 1.0));
}
.detalle-thumbs::before {
    display: block;
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    z-index: 100;

    background: linear-gradient(to left, rgba(255,255,255,.0), rgba(246, 246, 246, 1.0));
}

.detalle-thumbs .swiper-slide {
    padding: 16px 0 12px 0;
    background-color: #FFFFFF;
    box-shadow: 0 0 2px rgba(120, 120, 120, .2);
    height: auto;

    transition: transform .2s, box-shadow .2s;
}
.detalle-thumbs .swiper-slide-active {
    transform: scale(1.1);
    box-shadow: 0 0 6px rgba(120, 120, 120, .4);
}

.detalle-thumbs img {
    /* width: 72px; */
    width: 100%;
}

/* --- DETALLE RIGHT --- */
.detalle-right-inner {
    padding: 30px;
}

.detalle-title-right {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
    margin-bottom: 18px;
}

.detalle-desc {
    color: #595959;
    margin-bottom: 14px;
}

.detalle-feature {
    padding: 14px 0;
}
.detalle-feature::after {
    /* CLEARFIX */
    display: table;
    content: ' ';
    clear: both;
}
.feature-title {
    float: left;
    width: 28%;

    text-align: left;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: #222;

}
.feature-content {
    float: left;
    width: 72%;

    text-align: left;
    
}
.feature-content.talle {

}
.feature-content.color {

}

.talle {
    display: inline-block;
    color: #b5b5b5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;

    transition: color .4s;
}
.talle:not(:last-child) {
    margin-right: 16px;
}
.talle:hover {
    color: #222;
}

.color {
    display: inline-block;
    width: 20px;
    height: 20px;

    transition: transform .4s;
}
.color:not(:last-child) {
    margin-right: 14px;
}
.color:hover {
    transform: scale(1.2);
}




.donde-comprar-btn-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;

    height: 149.36px;
    width: 480px;

    background-color: #F6F6F6;
}
.donde-comprar-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 256px;
    height: 50px;

    background-color: #FFF;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);

    transition: background-color .4s, color .4s;
}
.donde-comprar-btn:hover {
    background-color: #cc0001;
    color: #fff;
}

.donde-comprar-btn a,
.donde-comprar-btn a:link,
.donde-comprar-btn a:visited {
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding-left: 65px;

    color: #222;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;

    /* background-color: transparent; */

    background: url('../img/icon_polygon_7.png');
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;

    transition: background-color .4s, color .4s;
}
.donde-comprar-btn a:hover {
    color: #FFF;
}

.donde-comprar-cart {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #FFF;
}

@media (max-width: 1200px) {
    section.detalle-hero {
        height: 350px;
    }
    .detalle-title {
        font-size: 40px;
    }

    .section.detalle-producto {
        padding: 80px 0;
    }


    .donde-comprar-btn-wrapper {
        height: 126.88px;
    }
}

@media (max-width: 992px) {
    section.detalle-hero {
        height: 250px;
    }
    .detalle-title {
        font-size: 20px;
    }

    .section.detalle-producto {
        padding: 50px 0;
    }


    .detalle-top {
        padding: 30px !important;
    }

    .detalle-box-left,
    .detalle-box-right,
    .donde-comprar-btn-wrapper {
        width: 100%;
    }

    .donde-comprar-btn-wrapper {
        float: left;
        position: static;
        bottom: initial;
        right: initial;
    
        height: 149.36px;
        width: 100%;
    
        background-color: #F6F6F6;
    }
}

@media (max-width: 920px) {
    /* .detalle-box-left,
    .detalle-box-right {
        width: 100%;
    }

    .detalle-box-right {

    } */
}

@media (max-width: 767px) {

}

@media (max-width: 660px) {
    .detalle-thumbs .swiper-slide {
        padding: 8px 0 4px 0;
    }
}