@import url('../css/style.css');

.showing {
    opacity: 1 !important;
    position: relative;
}
/* endslider */

.banner img{
    width: 100%;
    height: auto;
    aspect-ratio: 2/1;
}
.mid-banner{
    position: relative;
    overflow: hidden;
    display: flex;
}
.mid-banner::after{
    content: "";
    position: absolute;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    border: 1px solid var(--primary-color);
    transform: translate(1rem,1rem);

}
.mid-banner img{
    width: 50%;
    height: auto;
    aspect-ratio: 4/3;
}
.dual-banner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    padding: 3rem;
    gap:2rem;
}
.dual-banner div:first-child {
    place-content: center;
    
}

.frame {
    position: relative;
    text-align: end;
    height: auto;
}
.frame img:first-child {
    position: relative;
    top: 0;
    right: 10%;
    width: 50%;
    aspect-ratio: 3/4;
}
.frame img:last-child{
    position: absolute;
    left: 10%;
    bottom: -10%;
    width: 40%;
}
.bottom-banner img{
    width: 100%;
    height: auto;
    aspect-ratio: 25/10;
}
.d-flex .product {
    max-width: calc((100% - 1rem) / 4);
}
.reel-slider{
    display: flex;
    overflow: hidden;
    gap: 1rem;
}
.reel-slider .product{
    min-width: calc((100% - 2rem)/3);
}
.product {
    min-width: calc((100% - 2rem)/4);
    position: relative;
}
video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
    
}

.video-banner{
    height: 60vh;
    background-image: url('/static/Images/banner.webp');
    background-size: cover;
    display: flex;
}

.video-banner>div:first-child{
    flex:40%;
}
.video-banner>div:nth-child(2){
    flex:20%;
    background-image: url('/static/Images/midnight_blue_star_lahenga_set2.webp');
    background-size: cover;
    background-position: center;
}
.video-banner>div:last-child{
    flex:40%;
}
.video-banner img{
    width: 100%;
}
.video-banner video{
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.product-name{
    font-weight: 600;
}
.product-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem .5rem ;
}
.product-grid h3{
    font-size: 20px;
    text-align: center;
}
.product-img{
    position: relative;
    margin-bottom: .5rem;
    transition: 0.35s linear;
    overflow: hidden;
    
}
.product-img img{
    width: 100%;
    height: auto;
    aspect-ratio: 9/12;
    
    transition: 0.25s linear;
    display: block;
}
.product-img:hover img {
    scale: 1.1;
    overflow: hidden;
  }
.discount {
    position: absolute;
    top: 15px;
    left: 0;
    padding: 1% 5%;
    background: var(--primary-color);
    font-size: 12px;
    color: white;
}
#wishlistitem {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 5px;
    border-radius: 50%;
  }

.new-arrival{
    padding: 3rem;
}


.combo .dgr-3{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    
    border: 5px solid #aeaeae;
    gap: 1rem;
    padding: 1rem;
}
.combopack {
    
    overflow: hidden;
    background-color: var(--black);
}
.combopack>img {
    width:100%;
    aspect-ratio: 3/4;
    padding: .5rem;
    
}
.combo-flex {
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f4f4f4;
    gap: .5rem;
    margin: 0 .5rem .5rem .5rem;
  }
.combopackitem div {
    width: 120px;
  }
.combopackitem{
    display: flex;
    gap: .5rem;
}
.combopackitem img{
    width: 100px;
    height: auto;
    aspect-ratio: 3/4;
    border-radius: 5px;
}
.combopackitem>div{
    background-color: white;
    padding: .5rem;
}
.combopackitem>div>p{
    font-size: 12px;
}

.add-to-cart-window{
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    background-color: rgba(0,0, 0,0.75);
}
.add-to-cart-window .dgr-2 {
    grid-template-columns: .8fr 1fr;
    width: 50%;
    color: black;
    padding: 2rem;
    background: #f4f4f4;
    
    position: relative;
    box-shadow:0 0 8px rgba(237, 75, 107, 0.7);
    gap: 1.5rem;
  }

  #hideblock {
    position: absolute;
    top: 0;
    right: 10px;
    padding: 5px;
    border-radius: 50%;
    width: 26px;
  }

#itemdata label {
    border: 1px solid;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;

}

#itemdata input[type="radio"]{
    display: none;
}
input[type="radio"]:disabled + label {
    color: white;
    cursor: not-allowed;
    opacity: 0.5;
    background-color: var(--primary-color);
}
input[type="radio"]:checked + label {
    background-color: var(--primary-color);
    color: white;
    
}
#productimage{
    width: 100%;
    height: 100%;
}
.add-to-cart-window .dgr-2>div> * {
    margin: 0.7rem 0;
  }

.add-to-cart-window .price {
    font-size: 22px;
    display: inline;
}
.add-to-cart-window .mrp{
    padding: 0;
}
.mrp .green{
    font-size: .8em;
    padding: 0;
}

.add-to-cart-window .price-disclaimer {
    font-size: 12px;
    display: inline;
  }

/* product page */
.breadcrumb {
    padding: 1rem 0 0 3rem;
}
.product-container{
    padding: 1rem 3rem 3rem 3rem;
    width: 100%;
}
.view-image{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    background-color: black;
    display: none;
    justify-content: center;
    align-items: center;
}
#myslide{
    width: auto;
    height: 80%;
}

#exit-view{
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
}
.image-gallery{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: max-content;
}
.image-gallery div{
    overflow: hidden;
    
}
.image-gallery img{
    width: 100%;
    
    transition: .35s ease-in-out;
}
.image-gallery img:hover{
    scale: 1.5;
}
.product-detail>*{
    margin-top: 1rem;
}
.price{
    display: inline;
}
strike{
    color: var(--text-color);
    font-weight: 400;
    margin-left: 5px;
    font-size: .8em;
}
.mrp{
    display: inline;
    font-size: 25px;
    font-weight: 400;
    padding: 0 10px;
}
.price-disclaimer {
    font-size: 15px;
    color: gray;
    font-weight: 500;
    margin: 0;
    padding: 0;
    line-height: 15px;
    display: block;
}
.sizes {
    display: flex;
    gap: .5rem;
    margin: .5rem 0;
}
.size{
    border: 0.5px solid gray;
    padding: .5rem 1rem;
    border-radius: 5px;
    font-size: 16px;
}
.size:hover{
    background-color: gray;
    cursor: pointer;
}
.shop-btn1{
    display: none;
}
.shop-btn button {
    background: var(--secondary-color);
    padding: 1rem;
    width: 50%;
    color: white;
    border: none;
    border-radius: 8px;
}

#size-chart {
    position: absolute;
    right: 2rem;
    transform: translateY(-20px);
}
.product button{
    padding: .5rem;
    width: 90%;
    font-size: .8rem;
    background: transparent;
    color: black;
    border: 1px solid;
    transform: translateX(5%);
    margin-top: 15px;
}
button:hover {
  background: var(--secondary-color);
  color: white;
}
.highlight-title{
    font-size: 13px;
    font-weight: 500;
    line-height: 26px;
    color: rgba(0,0, 0,0.6)
}
.highlight-description{
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    color: var(--black)
}
.highlights{
    border-bottom: 0.5px solid rgba(0,0, 0,0.4);
    padding-bottom: 1rem;
}
.collaps{
    height: 45px;
    overflow: hidden;
}
.collaps-head{
    display: flex;
    justify-content: space-between;
}

#sizechart #closeicon1 {
  width: 25px;
}

#sizechart {
    display: none;
    justify-content: center;
    padding: 1rem;
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 100;
    top: 0;
    left: 0;
    align-items: center;
    background-color: rgba(0,0, 0,0.75);
}
#sizechart .chart{
    height: 90%;
}

.shop-btn{
    display: flex;
    gap: 1rem;
}
.wishlist{
    display: block;
}
.wishlist1{
    display: none;
}
h3 span{
    font-size: .9rem;
    font-weight: 400;
}
.mobile-price{
    display: none;
}
.active-offer ul li{
    margin-top: .5rem;
    list-style: none;
}

/* collection page */
.collection-heading{
    position: sticky;
    top: 100px;
    z-index: 2;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.collection{
    display: block;
    padding: 0 3rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.page-heading{
    position: sticky;
    width: 100%;
    top: 100px;
    z-index: 10;
    background-color: white;
}
#filter{
    position: absolute;
    right: 4rem;
    width: 20px;
    top: 15px;
}
.filter-section {
  position: fixed;
  height: 100vh;
  overflow-y: scroll;
  scrollbar-width: thin;
  top: 0%;
  left: -100%;
  width: 25%;
  background-color: white;
  z-index: 100;
  padding: 1rem;
}
#filter-icon{
    width: 20px;
    position: absolute;
    right: 3rem;
    top: 15px;
}
.filter-section h3{
    position: sticky;
    top:0 ;
    z-index: 2;
    background-color: white;
}
.filter-section hr{
    margin: 1rem 0;
}
.filter-section ul li{
    display: flex;
    justify-content: space-between;
    padding-right: 10px;
    font-size: 1.1rem;
} 
.filter-section button{
    background: var(--secondary-color);
    padding: 0.5rem 1rem;
    color: white;
    border: none;
    border-radius: 8px;
    width: 45%;
    margin: 0.5rem 0;
}
.filterbutton{
    position: sticky;
    bottom: 0;
    z-index: 2;
}

.product-section{
    flex: 75;
    padding: 1rem;
}
.grid-view{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem .5rem;
}
#maxvalue {
    position: absolute;
    right: 10px;
    bottom: 0;
}
#minvalue {
    position: absolute;
    bottom: 0;
    left: 0;
  }
.price-rangebar {
    position: relative;
    height: 40px;
}
#pricerange {
    width: 95%;    
    padding: 0;
    margin: 0;
}
#pricerange:focus{
    box-shadow: none;
    border: none;
}

.mobile-filter {
    display: none;
}
.checkout-container{
    display: flex;
    gap: 1rem;
}
.checkout-item {
    display: grid;
    grid-template-columns: auto 5fr 1fr 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
  }
.checkout-item .cart-quantity{
    height: min-content;
}
.checkout-item img{
    width: 50px;
}
.item-data{
    flex: 7;
}
.checkout-summary{
    flex: 3;
    padding-left: 1rem;
    border-left: 1px solid;
}
.checkout-summary>div{
    margin: .75rem 0;
}

.checkout-summary input{
    border: 0.6px solid #d0d5dd;
    border-radius: 8px;
    padding: 0.5rem .75rem;
    font-size: 10px;
    background: transparent;
}

.checkout-summary button {
    background: var(--black);
    padding: .5rem .75rem;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 10px;
}

#cod, #pay-now{
font-size: 14px;
padding: .75rem;
}
.order-item{
    display: grid;
    grid-template-columns: .5fr 1fr 7fr .5fr 1fr 1fr;
    gap: 1rem;
    border: 1px solid var(--secondary-color);
    
    padding: 1rem;
    margin-bottom:2rem;
}
.order-item img{
    width: 100px;
}
.small-img{
    width: 100px;
}
.progress {
    width: 100%;
    height: 5px;
    margin: 20px 0 5px 0;
    background-color: rgb(216, 216, 216);
    display: flex;
    justify-content: space-between;

}

.progresstag {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    z-index: 2;
}

.colorDiv {
    height: 100%;
    width: 0%;
    background-color: blue;
}
.item-detail-veiw {
    border: 1px solid var(--secondary-color);
    
    padding: 1rem;
    margin-bottom:2rem;
  }

  .item-detail-veiw div{
    display: flex;
    justify-content: space-between;
  }
  .item-detail-veiw div:first-child() {
    max-width: 16.5%;
}

  #rating-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--secondary-color);
    padding: 2rem;
    z-index: 1;
}

#product-review-form textarea{
    margin: 1rem 0;
    border: 1px solid var(--secondary-color);
    height: 100px;
    outline: none;
    padding: 1rem;
}
#return-order {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    background: aliceblue;
    padding: 2rem;
}
#return-order form>*{
    margin: 5px 0;
    padding: 5px;
}

#orderreturn input{
    padding: .25rem;
}

#invoice{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f5f5f5;
    padding: 2rem;
    z-index: 100;
    box-shadow:0 0 8px rgba(237, 75, 107, 0.7);
    border: 1px solid;
    max-width: 90%;
    height: 90vh;
    overflow-y: scroll;
}
#invoice section{
    background-color: gray;
}
.order-update{
    position: fixed;
    top: 50%;
    left: 50%;
    max-height: 90vh;
    overflow-y: scroll;
    scrollbar-width: thin;
    transform: translate(-50%, -50%);
    background: var(--secondary-color);
    padding: 2rem;
    z-index: 100;
    box-shadow:0 0 8px rgba(237, 75, 107, 0.7);
    border: 1px solid;
}
#order_update_form {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 0.1rem 1rem;
    place-items: flex-start;
    align-items: center;
    width: 100%;
}
#order_update_form input{
    width: 100%;
}
#order_update_form input[type=checkbox] {
    width: auto;
}
.about-block{
    display: flex;
    gap: 2rem;
}
.celebrity-review{
    display: flex;
    gap: 1rem;
    overflow-x: hidden;
    scrollbar-width: none;
}
.review {
    overflow: hidden;
    min-width: calc((100% - 4rem) / 5);
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-img{
    width: 100%;
}
.rate-div{
    transform: translateY(-15px);
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding:2px 10px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#scroll-right, #scroll-right1 {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 30px;
  z-index: 1;
  transform: translateY(-50%);
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  padding: 2px;
}
#scroll-left, #scroll-left1 {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 30px;
  z-index: 1;
  transform: translateY(-50%);
  border: 1px solid var(--secondary-color);
  border-radius: 50%;
  padding: 2px;
}
.questions {
    display: grid;
    grid-template-columns: 99fr 1fr;
    margin-bottom: .5rem ;
}
.faq {
    border: 0.5px solid var(--text-color);
    padding: 1rem;
    height: 55px;
    overflow: hidden;
}
.about-image{
    max-width: 50%;
}
.vision-mission{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}



@media (max-width: 1024px) and  (min-width: 768px) {
    .product{
        min-width:calc((100% - 5rem)/4);
    }
    
    .image-gallery div:first-child {
        grid-column: span 2;
    }
    .product-grid{
        grid-template-columns: repeat(4,1fr);
    }
    .product-grid .product{
        width: 100%;
    }
    .combo .dgr-4{
        grid-template-columns: 1fr 1fr;
    }
    .mobile-filter {
        display: none;
    }
    .review{
        min-width: calc((100% - 3rem)/3);
    }

}

@media (max-width: 768px) {
    .slide-dots{
        left: calc(99% - 85px);
        top: 80%;
        width: 85px;
    }
    .dual-banner {
        grid-template-columns: 1fr;
        padding: 1rem;
        margin-bottom: 30px;
    }

    .new-arrival{
        padding:2rem .5rem;
    }
    
    .reel-slider{
        gap: .5rem;
    }
    .reel-slider .product{
        min-width: calc((100% - .5rem)/2);
    }

    .product-grid{
        grid-template-columns: 1fr 1fr;
    }
    .combo .dgr-4{
        grid-template-columns: 1fr 1fr;
    }

    .product {
        min-width: calc((100% - 3rem)/2);
      }
    .product-container{
        padding: 1rem;
    }
    .breadcrumb{
        display: none;
    }
    .collaps{
        height: 45px;
    }
    .dgr-2{
        grid-template-columns: 1fr;
    }

    .image-gallery{
        display: flex;
        overflow-x:scroll ;
        overflow-y: hidden;
        scrollbar-width: none;
    }
    .image-gallery div{
        min-width: 70vw;
    }
    
    .product-container{
    overflow: hidden;
    }
    .image-gallery img{
        min-width: 100%;
    }
    .shop-btn{
        display: none;
        position: fixed;
        bottom: 0;
        width: 100%;
        left: 0;
        background-color: var(--secondary-color);
        padding: 1rem;
        z-index: 1000;
    }

    .shop-btn1{
        position: fixed;
        bottom: 0;
        width: 100%;
        left: 0;
        background-color: #f4f4f4;
        padding: 1rem;
        z-index: 98;
        display: flex;
        gap: .5rem;
    }
    
    .mobile-price{
        display: block;
        text-align: center;
        align-content: center;
        padding: 0 10px;
    }
    .add-to-cart{
        width: 100%;
    }
    .wishlist{
        display: none;
    }
    .wishlist1{
        display: none;
        width: auto !important;
    }
    .sizes{
        gap: 0;
        justify-content: space-around;
    }
    
    .add-to-cart-window{
        align-items: center;
        z-index: 100;
    }

    .add-to-cart-window .dgr-2{
        width: 80%;
        padding: 1rem;
        gap: .5rem;
        display: table-column;
    }
    .add-to-cart-window .dgr-2>div{
        width: 100%;
    }
    .add-to-cart-window .dgr-2>div>*{
        margin: 0.5rem 0;
    }
    #itemdata label{
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
    }

    .add-to-cart-window .price, .add-to-cart-window .mrp{
        font-size: 15px;
        display: inline;
    }
    .add-to-cart-window .price-disclaimer {
        font-size: 12px;
        display: inline;
      }

    .add-to-cart-window h4{
        font-size: 12px;
    }

    .add-to-cart-window button{
        padding: .5rem;
    }
    /* collection page */
    .collection{
        flex-direction: column;
        padding: 2rem 0.5rem;
    }
    .collection-heading{
        top: 80px;
    }
    .filter-section{
        width: 80%;
    }
    #filter-icon{
        right: 1rem;
    }
    .product-section{
        padding: 0 0 10px 0;
    }
    .product-section .grid-view{
        grid-template-columns: 1fr 1fr;
        gap: 2rem 0.5rem;
        padding: 0;
    }
    
      .combo .dgr-3{
        grid-template-columns: 1fr;
      }
      .item-detail-veiw{
        margin-bottom:1rem;
      }
      .item-detail-veiw div{
        gap: .5rem;
      }
      .item-detail-veiw h5 {
        font-size: 12px;
      }
      .small-img{
        width: 50px;
    }
    .checkout-container{
        display: block;
    }
    .checkout-summary {
        border-top: 0.5px solid var(--black);
        margin-top: 1rem;
        padding-left: 0;
        border-left: none;
    }
    .mid-banner::after{
        width: calc(100% - 1.5rem);
        height: calc(100% - 1.5rem);
        transform: translate(.5rem,.5rem);
    }
    
    .about-block{
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .about-image{
        width: 100%;
        height: 100%;
    }
    .celebrity-review{
        gap: .5rem;
    }
    .review{
        min-width: calc((100% - .5rem)/2);
    }
    #sizechart #closeicon1 {
        top: 50px;
    }
    
    #sizechart{
        width: 100%;
        overflow-x: scroll;
        left: 0;
        justify-content: flex-start;
    }
    #sizechart .chart{
        width: 100%;
        height: auto;
    }
    .order-update{
        width: 90%;
        padding: 1rem;
    }
    #order_update_form input {
        width: auto;
      }
    #order_update_form{
        width: max-content;
    }
    .video-banner{
        height: 40vh;
    }
    .video-banner>div:first-child{
        display: none;
    }
    .video-banner>div:nth-child(2){
        flex:50%;
    }
    .video-banner>div:last-child{
        flex:50%;
    }
}
