/*PRODUCTS*/
.product-main{
    padding-top: 30px !important;
}
.product-main .row-single-product{
    max-width: 1200px;
}
.product-main .row-single-product .product-gallery{
    max-width: 55%;
    flex-basis: 55%;
}
.product-main .row-single-product .product-info{
    max-width: 45%;
    flex-basis: 45%;
    display: flex;
    flex-direction: column;
}
.shop-page-title{
    display: none;
}

.product-banner {
  position: relative;
  text-align: center;
  color: white;
}

.product-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.banner-overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.banner-title {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}
.products-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.section-mongup-container,
.section-product-category{
    padding-top: 30px;
}
.section-nailbox-container{
    background-color: #FFF3F8;
    padding-top: 30px;
}
.section-mongup-container .row-mongup,
.section-nailbox-container .row-nailbox,
.section-product-category .row-category{
    max-width: 1200px;
}
.section-mongup-container .row-mongup h2,
.section-nailbox-container .row-nailbox h2,
.section-product-category .row-category h2{
    text-align: center;
    color: var(--black);
}
.section-nailbox-container .row-nailbox h2{
    text-align: left;
    max-width: 40%;
    flex-basis: 40%;
    margin-left: 15px;
}
.section-mongup-container .product-small .col-inner,
.section-nailbox-container .product-small .col-inner,
.section-product-category .product-small .col-inner{
    border: 1.5px solid var(--black);
    border-radius: 8px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: var(--white);
}
.section-mongup-container .product-small img,
.section-nailbox-container .product-small img,
.section-product-category .product-small img{
    width: 100%;
    height: 240px;
    border-radius: 8px;
    object-fit: cover;
}
.section-mongup-container .title-wrapper .category,
.section-nailbox-container .title-wrapper .category,
.section-product-category .title-wrapper .category{
    display: none;
}
.section-mongup-container .show-on-hover,
.section-nailbox-container .show-on-hover,
.section-product-category .show-on-hover{
  display: none !important;
}
.section-mongup-container .box-text,
.section-nailbox-container .box-text,
.section-product-category .box-text{
    border: 1.5px solid var(--black);
    border-radius: 8px;
    margin-top: 15px;
    padding: 10px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    height: 125px;
    min-height: 100px;
}
.section-mongup-container .box-text .title-wrapper,
.section-nailbox-container .box-text .title-wrapper,
.section-product-category .box-text .title-wrapper{
    margin: 0;
    flex: 1;
    white-space: normal;
    overflow: visible;
    text-overflow: unset; 
    text-align: left;
    padding: unset;
}
.section-mongup-container .box-text .price-wrapper,
.section-nailbox-container .box-text .price-wrapper,
.section-product-category .box-text .price-wrapper{
    flex-shrink: 0;
    white-space: nowrap;
}
.section-mongup-container .box-text .title-wrapper a,
.section-nailbox-container .box-text .title-wrapper a,
.section-product-category .box-text .title-wrapper a{
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
}
.section-mongup-container .box-text .price-wrapper span.amount,
.section-nailbox-container .box-text .price-wrapper span.amount,
.section-product-category .box-text .price-wrapper span.amount{
    color: var(--white);
    font-size: 14px;
    background-color: var(--pink);
    border-radius: 8px;
    padding: 12px 8px;
}
.section-nailbox-container .title-tabs{
    display: flex;
    justify-content: space-between;
}
.section-nailbox-container .form-tabs{
    max-width: 60%;
    flex-basis: 60%;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
    padding-right: 15px;
}
.section-nailbox-container .form-tabs .active{
    color: var(--white);
    background-color: var(--black);
}
.section-nailbox-container .form-tabs a{
    padding: 2px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid var(--black);
    color: var(--black);
}


/* PRODUCT DETAILS */
.product-main #product-sidebar{
    display: none;
}
.product-main h1{
    font-size: 38px !important;
    color: var(--black);
    order: 1;
}
.product-main .woocommerce-breadcrumb{
    display: none;
}
.product-main .product-images,
.product-main .woocommerce-product-gallery__image,
.product-main .woocommerce-product-gallery__image img{
    height: 600px;
    object-fit: cover;
}
.product-main .product-thumbnails,
.product-main .product-thumbnails img{
    height: 180px;
    object-fit: cover;
}
.product-main .flickity-prev-next-button{
    width: 45px;
}
.product-main .flickity-prev-next-button .arrow, 
.product-main .flickity-prev-next-button svg{
    fill: var(--pink);
    border-color: var(--pink);
}
.product-main .slider .flickity-prev-next-button:hover .arrow, 
.product-main .slider .flickity-prev-next-button:hover svg{
    fill: var(--pink);
}
.product-main .image-tools .is-outline:hover{
    background-color: var(--pink);
    border-color: var(--pink);
}
.product-main span.amount{
    font-size: 28px;
    color: var(--pink);
    font-weight: bolder;
}
.product-main .price-wrapper{
    order: 2;
}
.product-main .product-info .is-divider{
    order: 3;
    max-width: 100%;
    background-color: var(--black);
    height: 1px;
}
.product-main .product-info .product-short-description{
    order: 5;
    border: 1px solid var(--pink);
    border-radius: 20px;
    padding: 20px;
    margin: .5em;
}
.product-main .link-product-ecommerce{
    order: 4;
    margin: .5em 0;
}
.product-main .link-product-ecommerce .col{
    padding-bottom: 15px;
}
.product-main .link-product-ecommerce img{
    width: 100%;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
}
.product-main .product-info h3{
    font-size: 24px !important;
    color: var(--pink);
}
.product-main .product-info h3,
.product-main .product-info h4,
.product-main .product-info p{
    font-family: 'Montserrat', sans-serif !important;
}
.product-main .product-info h4,
.product-main .product-info p{
    color: var(--black);
}
.product-main .row-gallery-product h2,
.product-main .row-single-product h2{
    text-align: center;
    color: var(--black);
}
.product-main .row-single-product h2{
    margin-top: 30px;
}

.related-products-slider .product-item img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
}
.product-container .product-footer{
    display: none;
}
.related-products-slider .product-item {
    padding: 10px;
    background: #fff;
    border: 1.5px solid #35252F;
    margin: 0 15px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.related-products-slider h4{
    color: var(--black);
    font-size: 16px;
    font-family: 'Montserrat', sans-serif !important;
    background-color: unset;
    margin: 0;
    flex: 1;
    white-space: normal;
    overflow: visible;
    text-overflow: unset; 
    text-align: left;
    padding: unset;
}

.related-products-slider .price {
      flex-shrink: 0;
      white-space: nowrap;
}
.related-products-slider .product-item .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1.5px solid #35252F;
    border-radius: 8px;
    margin-top: 15px;
    padding: 5px;
    flex-wrap: nowrap;
    height: 110px;
    min-height: 100px;
}

.related-products-slider span.amount {
    color: var(--white);
    font-size: 14px;
    background-color: var(--pink);
    border-radius: 8px;
    padding: 12px 8px;
}
.related-products-slider .slick-next:before, 
.related-products-slider .slick-prev:before{
    color: var(--black);
    font-size: 26px;
}
.row-single-product .product-info .cart{
    display: none;
}


/************** REPONSIVE **************/
/* TABLET */
@media only screen and (min-width: 768px) and (max-width: 1023px){
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-nailbox-container .title-tabs{
        flex-direction: column;
    }
    .section-nailbox-container .row-nailbox h2,
    .section-nailbox-container .form-tabs{
        flex-basis: 100%;
        max-width: 100%;
    }
    .section-nailbox-container .form-tabs{
        justify-content: start;
        margin: 0 0 30px 15px;
    }
    .section-nailbox-container .form-tabs a{
        padding: 6px 25px;
    }
    
    .product-main .row-single-product .product-gallery,
    .product-main .row-single-product .product-info{
        max-width: 100%;
        flex-basis: 100%;
    }
    .row-single-product .product-info .next-prev-thumbs{
        display: none;
    }
    .gallery-slide img{
        height: 350px !important;
    }
    .acf-slick-gallery .slick-center img{
        height: 400px !important;
    }
    .related-products-slider .slick-prev,
    .related-products-slider .slick-next{
        display: none !important;
    }
}


@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape){
    .section-nailbox-container .form-tabs{
        margin-right: 15px;
    }
    .related-products-slider .slick-prev,
    .related-products-slider .slick-next{
        display: none !important;
    }
}


/* MOBILE */
@media only screen and (max-width: 767px){
    .product-banner img{
        height: 250px;
    }
    .banner-overlay-content{
        width: 100%;
    }
    .products-grid{
        grid-template-columns: 1fr;
    }
    .section-nailbox-container .title-tabs{
        flex-direction: column;
    }
    .section-nailbox-container .row-nailbox h2,
    .section-nailbox-container .form-tabs{
        max-width: 100%;
        flex-basis: 100%;
    }
    .section-nailbox-container .form-tabs a{
        font-size: 16px;
        width: 100%;
        padding: 10px 25px;
    }
    .section-nailbox-container .form-tabs{
        flex-direction: column;
        margin: 0 15px 30px 15px;
    }
    .product-main .row-single-product{
        padding-top: 30px;
    }
    
    /* DETAIL */
    .product-main .row-single-product{
        padding-top: 30px;
    }
    .product-main .row-single-product .product-gallery,
    .product-main .row-single-product .product-info{
        max-width: 100%;
        flex-basis: 100%;
    }
    .product-main .product-images, 
    .product-main .woocommerce-product-gallery__image, 
    .product-main .woocommerce-product-gallery__image img{
        height: 450px;
    }
    .product-main .product-thumbnails, 
    .product-main .product-thumbnails img{
        height: 100px;
    }
    .row-single-product .product-info .next-prev-thumbs{
        display: none;
    }
    .row-single-product .link-product-ecommerce .row-ecommerce{
        max-width: 1200px !important;
    }
    .gallery-slide img{
        height: 280px !important;
    }
    .acf-slick-gallery .slick-center img{
        height: 300px !important;
    }
    /*.row-single-product .mfp-image-holder .mfp-arrow{*/
    /*    display: none;*/
    /*}*/
    .related-products-slider .slick-prev{
        left: -12px;
    }
    .related-products-slider .slick-next{
        right: -9px;
    }
    .related-products-slider .slick-next:before, 
    .related-products-slider .slick-prev:before{
        font-size: 22px;
    }
}

@media (max-width: 767px) and (orientation: landscape){
    .products-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .section-nailbox-container .form-tabs{
        flex-direction: row;
    }
    .section-nailbox-container .form-tabs a{
        text-align: center;
    }
}