@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root{
   --blue:#2980b9;
   --red:tomato;
   --orange:orange;
   --black:#333;
   --white:#fff;
   --bg-color:#eee;
   --dark-bg:rgba(0,0,0,.7);
   --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
   --border:.1rem solid #999;
}

*{
   font-family: 'Poppins', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
   text-transform: capitalize;
   
}


html{
   font-size: 62.5%;
   overflow-x: hidden;
   
}

.container{
   max-width: 1300px;
   margin:0 auto;
   
   /* padding-bottom: 5rem; */
}

section{
   padding:1rem;
}

.heading{
   text-align: center;
   font-size: 3.5rem;
   text-transform: uppercase;
   color:var(--black);
   border-bottom: 2rem;
   text-decoration: underline;
}

.btn,
.option-btn,
.delete-btn{
   display: block;
   width: 100%;
   text-align: center;
   background-color: var(--blue);
   color:var(--white);
   font-size: 1.7rem;
   padding:1.2rem 3rem;
   border-radius: .5rem;
   cursor: pointer;
   margin-top: 1rem;
}

.btn:hover,
.option-btn:hover,
.delete-btn:hover{
  background-color: white;
      color:rgb(14, 14, 90);
}

.option-btn i,
.delete-btn i{
   padding-right: .5rem;
}

.option-btn{
   background-color: var(--orange);
}

.delete-btn{
   margin-top: 0;
   background-color: var(--red);
}

.message{
   background-color: var(--blue);
   position: absolute;
   top:0; left:0; right: 0;
   z-index: 10000;
   border-radius: .5rem;
   background-color: var(--white);
   padding:1.5rem 2rem;
   margin:0 auto;
   max-width: 1200px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap:1.5rem;
}

.message span{
   font-size: 2rem;
   color:var(--black);
}

.message i{
   font-size: 2.5rem;
   color:var(--black);
   cursor: pointer;
}

.message i:hover{
   color:var(--red);
}

.header{
   background-color: var(--blue);
   position: sticky;
   top:0; left:0;
   z-index: 1000;
}

.header .flex{
   display: flex;
   align-items: center;
   padding:1.5rem 2rem;
   max-width: 1200px;
   margin:0 auto;
}

.header .flex .logo{
   margin-right: auto;
   font-size: 2.5rem;
   color:var(--white);
}

.header .flex .navbar a{
   margin-left: 2rem;
   font-size: 2rem;
   color:var(--white);
}

.header .flex .navbar a:hover{
   color:yellow;
}

.header .flex .cart{
   margin-left: 2rem;
   font-size: 2rem;
   color:var(--white);
}

.header .flex .cart:hover{
   color:yellow;
}
.top-nav .nav-links a{
   position: relative;
}
.top-nav .nav-links a span{
   position: absolute;
   padding: 0px 5px;
   border-radius: 50%;
   right: -5px;
   top: -15px;
   border: 1px solid black;
   background-color:black;
   color:white;
   font-size: 10px;
}

#menu-btn{
   margin-left: 2rem;
   font-size: 3rem;
   cursor: pointer;
   color:var(--white);
   display: none;
}

.add-product-form{
   max-width: 50rem;
   background-color: var(--bg-color);
   border-radius: .5rem;
   padding:2rem;
   margin:0 auto;
   margin-top: 2rem;
}

.add-product-form h3{
   font-size: 2.5rem;
   margin-bottom: 1rem;
   color:var(--black);
   text-transform: uppercase;
   text-align: center;
}

.add-product-form .box{
   text-transform: none;
   padding:1.2rem 1.4rem;
   font-size: 1.7rem;
   color:var(--black);
   border-radius: .5rem;
   background-color: var(--white);
   margin:1rem 0;
   width: 100%;
}

.display-product-table table{
   width: 100%;
   text-align: center;
}

.display-product-table table thead th{
   padding:1.5rem;
   font-size: 2rem;
   background-color: var(--black);
   color:var(--white);
}

.display-product-table table td{
   padding:1.5rem;
   font-size: 2rem;
   color:var(--black);
}

.display-product-table table td:first-child{
   padding:0;
}

.display-product-table table tr:nth-child(even){
   background-color: var(--bg-color);
}

.display-product-table .empty{
   margin-bottom: 2rem;
   text-align: center;
   background-color: var(--bg-color);
   color:var(--black);
   font-size: 2rem;
   padding:1.5rem;
}

.message{
   position: sticky;
   top:0; left:0; right:0;
   padding:15px 10px;
   background-color: var(--white);
   text-align: center;
   z-index: 1000;
   box-shadow: var(--box-shadow);
   color:var(--black);
   font-size: 20px;
   text-transform: capitalize;
   cursor: pointer;
}

.btn,
.delete-btn,
.option-btn{
   display: inline-block;
   padding:10px 30px;
   cursor: pointer;
   font-size: 18px;
   color:var(--white);
   border-radius: 5px;
   text-transform: capitalize;
}

.btn:hover,
.delete-btn:hover,
.option-btn:hover{
   background-color: white;
      color:rgb(14, 14, 90);
}

.btn{
   background-color: var(--blue);
   margin-top: 10px;
}

.delete-btn{
   background-color: var(--red);
}

.option-btn{
   background-color: var(--orange);
}

.form-container{
   height: max-content;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding:20px;
   padding-bottom: 70px;
   margin-top: 100px;
}

.form-container form{
   width: 500px;
   border-radius: 5px;
   border:var(--border);
   padding:20px;
   text-align: center;
   background-color: var(--white);
}

.form-container form h3{
   font-size: 30px;
   margin-bottom: 10px;
   text-transform: uppercase;
   color:var(--black);
}

.form-container form .box{
   width: 100%;
   border-radius: 5px;
   border:var(--border);
   padding:12px 14px;
   font-size: 18px;
   margin:10px 0;
}

.form-container form p{
   margin-top: 20px;
   font-size: 20px;
   color:var(--black);
}

.form-container form p a{
   color:var(--red);
}

.form-container form p a:hover{
   text-decoration: underline;
}


.edit-form-container{
   position: fixed;
   top:0; left:0;
   z-index: 1100;
   background-color: var(--dark-bg);
   padding:2rem;
   display: none;
   align-items: center;
   justify-content: center;
  height: 1000px;
   width: 100%;

   
   
}
.edit-form-container form .edit-container{
   height: 1500px;
   
}
.edit-form-container form{
   width: 50rem;
   border-radius: .5rem;

   background-color: var(--white);
   text-align: center;
   padding:2rem;
    height: 1000px;
   overflow-y: scroll;
    
}

.edit-form-container form .box{
   width: 100%;
   background-color: var(--bg-color);
   border-radius: .5rem;
   margin:1rem 0;
   font-size: 1.7rem;
   color:var(--black);
   padding:1.2rem 1.4rem;
   text-transform: none;
}
.user-profile{
   padding:20px;
   text-align: center;
   border:var(--border);
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: 5px;
   margin:20px auto;
   max-width: 500px;
}

.user-profile p{
   margin-bottom: 10px;
   font-size: 25px;
   color:var(--black);
}

.user-profile p span{
   color:var(--red);
}

.user-profile .flex{
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap:10px;
   align-items: flex-end;
}

.products .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, 48rem);
   gap:1.5rem;
   
   justify-content: center;
   margin-top: 0px;
   height: max-content;
   border-radius: 5px;
   
   
}
.carousel-head-container{
   display:flex;
   flex-direction: column;
   width:470px;
   height: 480px;
position: relative;
justify-content: center;
align-items: center;
border: 1px solid black;
}
.carousel-container {
    text-align: center;
    background-color:white;
    color:white;
    width: 405px;
    height: 405px;
  }

  .carousel {
    width: 400px;
    height: 400px;
    background-color:white;
    color:white;
    overflow: hidden;
   
    border-radius: 10px;
    margin-bottom: 10px;
    
  }

  .carousel-images {
    display: flex;
    color:white;
    background-color:white;
    transition: transform 0.3s ease-in-out;
  }

  .carousel-images img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
    user-select: none;
  }

  .dotsss {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .dotss {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
  }

  .dotss.actives {
    background: #333;
  }

  /* Fullscreen overlay */
  .fullscreen-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,10);
    justify-content: center;
    opacity: 0.3px;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
    
  }

  .fullscreen-main {
    max-width: 90%;
    max-height: 70%;
    margin-bottom: 20px;
  }

  .fullscreen-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 20px;
  }

  .fullscreen-thumbs img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s;
  }

  .fullscreen-thumbs img.active {
    border: 2px solid #fff;
  }

  .close-btn {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 1001;
  }
   .cont{
    
 position: absolute;
 
      right:0;
      top:0;
      width:100%;
  
      
      height:850px;
    
      background-color:white;
      padding:10px;
      z-index: 999;
     transition: all 1s ease;
  }
  .cont .account-container {
            min-width: 330px;
            max-width: 700px;
            margin: auto;
            padding:40px;
            border-bottom: 1px solid black;
            background-color:white;
        }
.products .box-container1{
   display: grid;
   grid-template-columns: repeat(auto-fit, 25rem);
  gap: 0.1rem;
  row-gap: 0.5rem;
   
   justify-content: center;
   margin-top: 0px;
   height: max-content;
   border-radius: 5px;
   
   
}


.products .box-container1 .box1 img{
   height: 200px;
   object-fit: cover;
   align-items: center;
   width: 100%;
   box-sizing: border-box;
   transition: all 0.3s ease;
   border-radius: 5px;
}
.image-container{
   overflow: hidden;
   padding: 10px;
}
.product-clicked:hover .image-container img{
   transform: scale(1.10);
   
}


.products .box-container1 .box1 .btn{
position: absolute;
right: 10px;
bottom: 5px;
   width: 100px;
}
.products .box-container1 .box1{
   position: relative;
   padding:1rem;
   height: 290px;
   box-shadow: var(--box-shadow);
   align-items: center;
   
   box-shadow: 1px 1px 10px grey;
   width: 100%;
   box-sizing: border-box;

}

.products .box-container1 .box1 h3{
   align-items: start;
   padding: 5px 0px;
   font-size: 1.5rem;
   color:var(--black);
}

.products .box-container1 .box1 .price{
   font-size: 1.5rem;
   color:var(--black);
   
}

.products .box-container .detailed-product{
   display: flex;
   flex-direction: column;
   
   
}
.products .dot{
   width: 100%;
   color: white;
   box-shadow: 0px 2px 2px grey;
}
.products .box-container .detailed-product .mrp_price{
   text-decoration: line-through;
   font-size:16px;
   margin-top: 5px;
   font-weight: 500;
   font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
   color: rgba(61, 57, 57, 0.808);
}
.products .box-container .detailed-product .product-name{
   font-size: 2rem;
   font-weight: 800;
   letter-spacing: 1px;
   display: flex;
   flex-wrap: wrap;
}

.products .box-container .detailed-product .dis-price-details{
   display: flex;
   flex-direction: row;

}
.products .box-container .detailed-product .price{
   font-size: x-large;
   font-weight: 600;
   margin-top: -2px;
}
.products .box-container .detailed-product b{
   /*color:rgb(21, 155, 21);*/
   font-size: 18px;
   margin: 5px;
   margin-top: 0px;
   color: white;
   width: max-content;
   height: 25px;
   padding-top: 3px;
   padding-bottom: 3px;
   text-align: center;
   letter-spacing: 1.5px;
   background-color: green;

}

.products .box-container .box{
   text-align: center;
   padding:2rem;
   
   align-items: center;
   border-radius: .5rem;
   
   min-width: 100%;
   box-sizing: border-box;

}

.products .box-container .slider-container{
   width: 100%;
   box-shadow: 2px 2px 10px black ;
   overflow: hidden;
   position: relative;
   height: 416px;
}
.products .box-container .slider-track{
   display: flex;
   flex-direction: row;
   transition: transform 0.5s ease;
   
}
.products .box-container .slider-container .controls{
   position: absolute;
   top: 45%;
   width: 100%;
  
   display: flex;
   justify-content: space-between;
}
 .carousel-head-container .controls{
   position: absolute;
   top: 45%;
   width: 100%;
  
   display: flex;
   justify-content: space-between;
}
.products .box-container .slider-container .controls .buttonleft{
   background-color: #000000a0;
   color: white;
   border: none;
  
   padding: 5px 10px;
   font-size: 18px;
   cursor: pointer;
   border-radius: 50%;
}
.carousel-head-container .controls .buttonleft{
   background-color: #000000a0;
   color: white;
   border: none;
  width:30px;
   padding: 5px 10px;
   font-size: 18px;
   cursor: pointer;
   border-radius: 50%;
}
.products .box-container .slider-container .controls .buttonright{
   background-color: #000000a0;
   color: white;
   border: none;
  
   padding:5px 10px;
   font-size: 18px;
   cursor: pointer;
   border-radius: 50%;
}
.carousel-head-container .controls .buttonright{
   background-color: #000000a0;
   color: white;
   border: none;
  width:30px;
   padding:5px 10px;
   font-size: 18px;
   cursor: pointer;
   border-radius: 50%;
}
.dots-container{
   position: absolute;
   bottom: 25px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   gap: 7px;
   
}
.dots{
   width: 13px;
   height: 13px;
   background-color: rgba(0, 0, 0,0.3);
   border-radius: 50%;
   cursor: pointer;
   transition: background-color 0.5s ease,width 0.5s ease;
}
.dots.active{
   width: 22px;
   height: 12px;
   border-radius: 36%;
   background-color: rgb(6, 6, 62);
}

.products .box-container .box img{
   height: 350px;
   box-sizing: border-box;
   align-items: center;
   width: 90%;
   
}
.products .product-color{
  display: flex;
  flex-direction:row;
  justify-content: center;
  flex-wrap: wrap;
  background-color: white;
  width: max-content;
  height: max-content;
  padding: 1rem;
   margin: 3px;
   border-radius: 4px;
   box-shadow: 1px 1px 5px black inset, 0px 2px 5px black;
}
.product-color-container{
   display: flex;
   flex-direction:row;
   overflow-x: auto;
   width: 100%;
   height: max-content;
   gap: 3px;
   justify-content: start;
   margin: 1px;
   align-items: center;
   
}
.product-color-container::-webkit-scrollbar{
   display:none;
}
.mens-main-conatiner{
            display: flex; flex-direction:row; margin-top: 7px; gap: 7px;  flex-wrap: wrap;
        }
        .mens-products{
            display: flex;
  flex-direction:column;
  flex-wrap: wrap;
  justify-content: center;
  width: max-content;
  height: max-content;
  margin: 0px;
  margin-bottom:10px;
  
        }
        .products-exp{
            display: flex;
  flex-direction:row;
  justify-content: center;
  flex-wrap: wrap;
  background-color: white;
  width: max-content;
  height: max-content;
  padding: 1rem;
   margin: 3px;
   border-radius: 4px;
   box-shadow: 1px 1px 5px black inset, 0px 2px 5px black;
        }
        .products-exp img{
            width: 100px; height: 100px; object-fit: cover;
        }
        .mens-name{
            margin-top:7px; display:flex; align-items: center; justify-content: center;
        }
.product-color-container::-webkit-scrollbar{
   
   height: 8px;
}

.product-color-container::-webkit-scrollbar-track{
   background-color:white;
   border-radius: 2px;
   cursor: pointer;
}

.product-color-container::-webkit-scrollbar-thumb{
   background-color: rgb(6, 6, 56);
   border-radius: 5px;
   cursor: pointer;
}

.product-color-container .product-color-details{
   display: flex;
  flex-direction:column;
  flex-wrap: wrap;
  justify-content: center;
  width: 90px;
  height: max-content;
  margin: 0px;
  margin-bottom:5px;
  
  }
  .product-container{
   color: black;
   margin-top:5px;
  }
.borders{
   border: 1px solid rgb(0, 0, 0);
   border-radius: 3px;
}
.products  .product-color img{
   height: 6rem;
   width: 60px;
   align-items: center;
   object-fit: cover;
   
   
}
.products h2{
   margin-top: 2px;
   margin-bottom:2px;
   text-align: center;
   font-family: 'Poppins', sans-serif;
}

.products .box-container .box h3{
   margin:1rem 0;
   font-size: 2.5rem;
   color:var(--black);
}

.products .box-container .box .price{
   font-size: 2.5rem;
   color:var(--black);
}
.searchedproducts{
   position:absolute; font-size:2.8rem; margin-top:10px; top:-40px; left:40%; padding-bottom:10px; align-items:center; justify-content:center;
}
.mrp_price1{
   width: max-content;
    padding: 0px;
    text-transform: capitalize;
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    color:grey;
  margin-top:2px;
  margin-right:4px;
    background-color: transparent;text-decoration: line-through;
    
}
.cart-empty p{
   font-size:25px; margin-left:-10px;
}
.size-container .sizes .size{
   width:max-content; 
            height:max-content; 
            font-size:16px; 
            font-weight:600;
            cursor: pointer;
            border:2px solid rgb(6,6,62); 
            padding:5px 13px; 
            border-radius:10%;
            text-align: center;
}
.main-cart-size{
   border: 1px solid rgba(0, 0, 0, 0.3);
   outline: none;
   margin-top:3px;
  margin-left: 0px;
  height: 21px;
  padding: 3px;
   color:var(--black);
   cursor: pointer;
   width: 4.5rem;
   text-align: center;
   align-items: center;
   justify-content: center;
   font-size:1.3rem;
}
.size-absolute{
   position: absolute;
   display: none;
   left:-86px;
   top: 28px;
   width: 170px;
   flex-direction: row;
   justify-content: start;
   flex-wrap: wrap;
   margin-top: 2px;
   background-color: rgb(255, 255, 255);
   border: 1px solid rgb(6, 6, 62);
   /* box-shadow: 2px 2px 10px rgb(6, 6, 62); */
   border-radius: 7px;
}
.cart-sizes{
   display: flex;
   flex-direction: row;
   position: relative;
}
.cart-sizes .cart-size{
   width:48px; 
   margin: 5px 4px;
            height:max-content; 
            font-size:13px; 
            font-weight:600;
            cursor: pointer;
            border:2px solid rgb(6,6,62); 
            padding:4px 1px; 
            border-radius:10%;
            text-align: center;
            background-color: white;
}

.fill{
   color:white;
   background-color:rgb(6,6,62);
}
.shopping-cart table{
   text-align: center;
   width: 100%;
}


.shopping-cart table tr td{
   border-bottom: var(--border);
   padding:1.5rem;
   font-size: 2rem;
   color:var(--black);
}

.cart-details{
   display: grid;
   grid-template-columns: 70% 30%;
   margin-top: 2rem;
}
.top-details{
   display: grid;
  grid-template-columns: repeat(auto-fit, 39rem);
   height: 81vh;
   overflow-y: scroll;
   gap: 1rem;
   width: 100%;
   justify-content: center;
   align-items: start;
   
}
.top-details::-webkit-scrollbar{
   width: 7px;
}

.top-details::-webkit-scrollbar-track{
   background-color: white;
   border-radius: 2px;
   cursor: pointer;
}

.top-details::-webkit-scrollbar-thumb{
   background-color: rgb(6, 6, 56);
   border-radius: 5px;
   cursor: pointer;
}

.details-top{
   display: grid;
   margin-top: 5px;
   grid-template-columns: 40% 57%;
   align-items: center;
   gap: 2rem;
   border: 1px solid rgba(0, 0, 0, 0.3);
   min-height: 230px;
   max-height: max-content;
   align-items: center;
   box-shadow: 0px 1px 5px rgb(6, 6, 56);
   justify-content: center;
   
}
.cart-image{
   width: 150px;
   height: 150px;
   object-fit: cover;
   border: 1px solid rgba(0, 0, 0, 0.3);
 /*  box-shadow: 1px 1px 5px rgb(6, 6, 56);*/
   padding: 5px;
   margin-left: 10px;
   
}
.detail-box{
   margin-top: 9px;
   display: grid;
   row-gap: 0.1rem;
   padding-right: 2px;
   
  
}
.totalamt{
   display: flex;
   flex-direction: row;
   font-size: 1.2rem;
   align-items: center;
   
   
   
}
.cart-qty{
   display: flex;
   flex-direction: row;
   align-items: center;
}
.cart-price{
   font-size: 1.8rem;
   font-weight: 600;
}
.cart-remove {
   color: rgb(223, 146, 5);
   font-weight: 520;
   font-size: larger;
   cursor:pointer;
   width:max-content
}
.cart-quantity{
   border: 1px solid rgba(0, 0, 0, 0.3);
   outline: none;
  height:21px;
  
  padding: 3px;
  padding-bottom: 4px;
   color:var(--black);
   border-radius:3px;
   width: 2.5rem;
   text-align: center;
   align-items: center;
   justify-content: center;
   font-size:1.3rem;
}

.subtotal{
   
   margin-left:0.1px;
   font-size: 1.2rem;
   font-weight: 600;
}
.size-down{
   justify-content:center;
    align-items:center;
     padding-top:4px; 
     padding-left:2px; 
     padding-right:2px;
   height:21px; 
   margin-top:3px; 
   font-weight:600; 
   border:1px solid grey;
}
.plus-btn{
   justify-content:center;
    align-items:center;
     padding-top:4px; 
     padding-left:2px; 
     padding-right:2px;
   height:21px; 
   margin-top:4px; 
   margin-left:-3px;
   font-weight:600; 
   border:1px solid grey;
   cursor:pointer;
}
.minus-btn{
   justify-content:center;
    align-items:center;
     padding-top:4px; 
     padding-left:2px; 
     padding-right:2px;
   height:21px; 
   margin-top:4px; 
   margin-right:-3px;
   font-weight:600; 
   border:1px solid grey;
   cursor: pointer;
}
.qty-name{
   align-items: center;
   font-size: 1.4rem;
   font-weight: 500;
   margin-right:3px;
}
.price-box{
   display: flex;
   
}
.cart-name{
   color: rgb(6, 6, 56);
   font-size: 1.3rem;
   text-transform:none;
   font-weight:600;
   margin-bottom: 1px;
   
   font-family: 'Poppins', sans-serif;
}
.cart-des{
    color: #666;
   font-size: 1.1rem;
   text-transform:none;
   font-weight:600;
   margin-bottom: 1px;
   
   font-family: 'Poppins', sans-serif;
}
.bottom-details{
   display: flex;
    justify-content: center;
   align-items: center;
   border-left: 1px solid black;
}
.bottom-details .details-bottom{
   display: flex;
   flex-direction: column;
  padding: 8px;
   width: 300px;
   height: max-content;
   border-radius: 10px;

   box-shadow: 0 4px 12px rgba(0,0,0,0.4);
   
  
}
.details-bottom h1{
   margin-top:2px;
   align-items: center;
   justify-content: center;
   font-weight: 900;
   text-decoration: underline;
}
.details-bottom h2{
   font-weight: 500;
   margin-top: 20px;
   margin-left: 0px;
}
.total{
   display: flex;
   justify-content: space-between;
   margin-top: 0px;
}
.totalname{
   font-size: 1.5rem;
 font-weight: 450;
   margin: 0px;
   color: #333;
}
#grandTotal{
   font-size: 1.5rem;
 font-weight: 800;
   margin: 0px;
}
#savingTotal,#delivery-fee{
   font-size: 1.5rem;
        font-weight: 800;
        margin:0px;  
}
.checkout{

   display: flex;
   height: 30px;
   color: white;
   justify-content: center;
   align-items: center;
   background-color: blue;
   margin: 10px;
   font-size: 1.3rem;
}
.checkout:hover{
   background-color: black;
}


.continue-shop{
    display: flex;
   height: 30px;
   font-style: sans-serif;
   justify-content: center;
   align-items: center;
   text-decoration: underline;
   margin: 10px;
}
.continue-shop a{
   color: black;
   font-size: 1.2rem;
   font-style: sans-serif;
}
.continue-shop a:hover{
   color: orange;
}
.cart-empty{
   display:flex; position: fixed; 
   font-size: 20px;
   top:50%; left:0%;
    justify-content:center;  
    align-items:center; 
    padding:10px; flex-direction:column;
    width:100%;

   }
    .cart-empty a{
   font-size:20px; 
   width: 20%;
}
/* time slot style start*/

.delivery-wrap{ max-width:960px; margin:0 auto; }
  h1{ font-size:26px; margin:6px 0 12px; font-weight:700; }

  /* main card - default */
  .select-card{
    background: #fff7f7;
    border:2px solid rgba(229,57,53,0.18);
    color:#b91c1c;
    padding:18px 16px;
    border-radius:12px;
    box-shadow: 0 6px 14px rgba(229,57,53,0.04);
    text-align:center;
    cursor:pointer;
    user-select:none;
    display:inline-block;
    min-width:260px;
  }
  .select-card .title{ font-size:16px; font-weight:700; margin-bottom:6px; }
  .select-card .sub{ font-size:13px; color:#374151; opacity:0.9; }

  /* scheduled compact card */
  .select-card.scheduled{
    background: var(--green-light);
    border:2px solid rgba(23,164,90,0.18);
    color:#071221;
    padding:8px 12px;
    display:flex;
    align-items:center;
    gap:10px;
    min-width:220px;
  }
  .scheduled .check{
    width:34px;
    height:34px;
    min-width:34px;
    border-radius:8px;
    background: rgba(23,164,90,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--green);
    font-weight:700;
    font-size:16px;
  }
  .scheduled .meta{ text-align:left; line-height:1.05; font-size:13px; width: max-content;}
  .scheduled .meta .lbl{ font-weight:700; font-size:13px; color:var(--green); display:block; margin-bottom:2px; }
  .scheduled .meta .when{ font-weight:600; color:#071221; opacity:0.95; }

  /* modal/backdrop */
  .backdrop{
    position:fixed; inset:0;
    background:rgba(20,24,28,0.44);
    display:flex; align-items:center; justify-content:center;
    z-index:100; opacity:0; pointer-events:none; transition:opacity .16s ease;
  }
  .backdrop.show{ opacity:1; pointer-events:auto; }
  .modal{
    width:760px; max-width:96%;
    background:white; border-radius:14px; padding:18px;
    box-shadow: var(--shadow); position:relative;
  }
  .modal .close{
    position:absolute; right:12px; top:12px; width:34px; height:34px;
    border-radius:50%; background:#f1f4f6; display:flex; align-items:center; justify-content:center;
    cursor:pointer; font-weight:700; color:#6b7280;
  }
  .modal h2{ font-size:20px; margin:4px 0 10px 0; font-weight:700; }

  .date-row{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px; }
  .nav-left, .nav-right{
    width:36px; height:36px; display:flex; align-items:center; justify-content:center; font-size:18px;
    cursor:pointer; color:#222; user-select:none; border-radius:8px;
  }
  .nav-left.disabled{ color:#94a3b8; cursor:not-allowed; opacity:0.6; }
  .date-center{ text-align:center; flex:1; }
  .date-center a{ display:inline-block; text-decoration:underline; color:orange; font-weight:600; font-size:15px; }
  .small-date{ color:#475569; font-size:13px; }

  .slots-grid{
    display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin:6px 0 16px; align-items:center;
  }
  .slot{
    border-radius:10px; border:1px solid rgb(2, 2, 35,0.6); padding:14px 12px; text-align:center;
    font-weight:700; font-size:14px; color:#24313a; cursor:pointer; background:transparent;
    transition:all 0.5s ease; user-select:none;
  }
  .slot:hover{ transform:translateY(-3px); box-shadow:0 6px 14px rgba(16,24,32,0.2); border:1px solid rgb(2, 2, 35,0.9);}
  .slot.selected{ border:2px solid orange; background:linear-gradient(180deg, rgba(164, 96, 23, 0.06), rgba(164, 117, 23, 0.02)); color:orange; }
  .slot.disabled{ opacity:0.5; cursor:not-allowed; pointer-events:none; }

  .confirm-row{ margin-top:6px; display:flex; align-items:center; justify-content:center; }
  .confirm-btn{ width:100%; max-width:420px; background:#d9dde1; border-radius:10px; padding:10px 12px; font-size:15px; font-weight:700; color:#3f4650; border:none; cursor:not-allowed; }
  .confirm-btn.enabled{ background:rgb(2, 2, 35); color:#fff; cursor:pointer; box-shadow:0 6px 18px rgba(23,164,90,0.14); }

  @media (max-width:560px){
    .modal{ padding:14px; border-radius:12px; }
    .slot{font-size: 14px;}
    .slots-grid{ gap:10px; grid-template-columns:repeat(2,1fr); }
    .confirm-btn{ max-width:100%; }
    .select-card.scheduled{ min-width:190px; gap:10px; }
  }
/* time slot style end*/

/* bottom navbar */


    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background-color: #ffffff;
      border-top: 1px solid #ccc;
      display: none;
      justify-content: space-around;
      align-items: center;
      box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }

    .nav-item {
      text-align: center;
      font-size: 14px;
      color: #333;
      text-decoration: none;
      flex: 1;
    }

    .nav-item:hover {
      background-color: #f0f0f0;
    }

    .nav-item i {
      display: block;
      font-size: 20px;
      margin-bottom: 4px;
      color:rgb(6, 6, 56);
    }
    /* top navbar */
        .top-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      background-color: #ffffff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.6);
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 999;
    }

    .logo {
        width: 100px;
        height:50px;
      font-size: 20px;
      font-weight: bold;
      color: #333;
      text-decoration: none;
      
    }

    .search-bar {
      flex: 1;
      margin: 0 20px;min-width: 20px;
      max-width: 550px;
    }

    .search-bar form {
      display: flex;
    }

    .search-bar input[type="text"] {
      flex: 1;
      
      padding: 8px 12px;
      border: 1px solid #ccc;
      
      border-radius: 4px 0 0 4px;
      font-size: 14px;
    }

    .search-bar button {
      padding: 8px 14px;
      
      color: black;
      border: 1px solid #007BFF;
      border-left: none;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
      font-size: 14px;
    }

    .search-bar button:hover {
      background-color: #0056b3;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-size: 14px;
      display: flex;
      align-items: center;
    }

    .nav-links i {
      margin-right: 6px;
      font-size: 18px;
    }
/* address.php style */
.section-title{
    margin:2px 0 15px;
    font-size:18px;
    font-weight:600;
    color:#333;
}

.delivery-options{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.delivery-card{
    cursor:pointer;
}

.delivery-card input{
    display:none;
}

.card-content{
    background:#fff;
    border:2px solid #e5e7eb;
    border-radius:14px;
    padding:9px;
    text-align:center;
    transition:.25s;
    height:100%;
}

.card-content img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:10px;
}

.card-content h4{
    margin:5px 0;
    font-size:16px;
    color:#111;
}

.card-content p{
    font-size:13px;
    color:#555;
}

/* Selected state */
.delivery-card input:checked + .card-content{
    border-color:#22c55e;
    background:#f0fdf4;
    box-shadow:0 8px 20px rgba(34,197,94,.25);
    transform:translateY(-3px);
}

/* Hover effect */
.delivery-card:hover .card-content{
    border-color:#93c5fd;
}

/* Mobile responsive */
@media(max-width:768px){
    .delivery-options{
         grid-template-columns:repeat(3,1fr);
    }
}

/* ORDER PAGE STYLE START*/
.order-container {
   display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    height: max-content;
    flex-wrap: wrap;
    padding: 10px;
}

.order-card {
  display: flex;
    width: 32%;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 1px 5px rgb(6, 6, 56);
    flex-direction: row;
    align-items: center;
}

.order-img img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 5px;
    
    object-fit: cover;
}

.order-details {
    margin-left: 15px;
    flex: 1;
}

.order-details h3 {
    margin: 0;
    font-size: 20px;
}

.desc {
    margin:0px;
    font-size: 12px;
    color: #666;
}


.ord-qty-price{
    font-size:14px;
    font-weight:600;
    padding: 5px;
}
.mrp {
    text-decoration: line-through;
    color: #888;
    margin-right: 6px;
}

.price {
    font-weight: bold;
    color: #000;
    margin-right: 6px;
}

.offer {
    color: green;
    font-weight: bold;
}

.qty-box {
    margin-top: 0px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    padding: 4px;
}
.ord-qty{
     font-weight: 600;
    text-align: center;
    border: none;
    font-size: 15px;
    margin-left:5px;
    margin-right:5px;
}
.ord-qty-name{
     margin-left:2px;
}
.qty-box button {
    width: 32px;
    height: 32px;
    font-size: 20px;
    cursor: pointer;
    border: none;
    background: #eee;
}

.qty-box input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 16px;
}
.size-qty{
   display: flex;

}
.size-select {
   margin-top: 0px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
   margin-right:5px;
   margin-left:5px;
    padding: 4px;
}
.ord-size-name{
    margin-left:2px;
}
.ord-size{
    font-weight: 600;
    text-align: center;
    border: none;
    font-size: 15px;
    margin-left:5px;
    margin-right:5px;
}





.ord-status {
    color: green;
    display:flex;

    font-weight: bold;
    margin-top: 5px;
    
    font-size: 20px;  
}

/* 📱 MOBILE VIEW */
@media (max-width: 768px) {
  
    .order-card {
        width: 100%;
        flex-direction: row;
       
    }

    .order-details {
        margin-left: 10px;
        margin-top: 5px;
    }

    .order-img img {
        width: 130px;
        height: 130px;
    }
    .order-details h3 {
    margin-top:4px;
    font-size: 11px;
}
    

.desc {
    margin-top:4px;
    font-size: 9px;
    color: #666;
    font-weight: 500;
}


.ord-qty-price{
    font-size:12px;
    font-weight:600;
}




.qty-box {
    margin-top: 0px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.qty-box button {
    width: 15px;
    height: 15px;
    font-size: 10px;
    cursor: pointer;
    border: none;
    background: #eee;
}
.ord-qty{
     font-weight: 600;
    text-align: center;
    border: none;
    font-size: 10px;
    margin-left:5px;
    margin-right:5px;
}
.qty-box input {
    width: 25px;
    text-align: center;
    border: none;
    font-size: 8px;
}
.ord-size{
    font-weight: 600;
    text-align: center;
    border: none;
    font-size: 10px;
    margin-left:5px;
    margin-right:5px;
}
.size-select {
    margin-top: 0px;
    padding: 6px;
    border-radius: 5px;
    border: 1px solid #ccc;
}



.ord-status {
    color: green;
    font-weight: bold;
    font-size: 10px;
    margin-top: 5px;
}
}

/* ORDER PAGE STYLE END*/
.form-container{
   position: absolute;
   
   width: 100%;
  left: 0;
   top: -100px;
   height: 100%;
   background-color: white;
 
}
.box-heading{
   width: 100%;
   position: relative;
   border-bottom: 1px solid rgb(6,6,60);
   padding-bottom: 5px;
}


.form-container .box-heading a{
   position: absolute;
   left: 0;
   bottom: 10%;
   font-size: 3rem;
   color: rgb(6, 6, 60);
   font-weight: 500;
}
.form-container1 {
   position: relative;
      max-width: 500px;
      margin: auto;
      background: #fff;
      padding: 10px;
      border-radius: 12px;
     
    }

.form-container1 .shipping-details{
      margin:0px;
      display:flex;
      margin-top:10px;
      margin-bottom:30px;
      align-items:center;
      justify-content:center;
      padding:0px;
     
      
    }
    .form-container1 .shipping-details h1{

    border-bottom: 1px solid black;
    }
    .popup{
      position:fixed;
      top: 20px;
      right: 27px;
      background-color: rgb(6, 6, 62);
      color: whitesmoke;
      padding: 15px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      z-index:1000;
      font-size: 13px;
      opacity: 0;
      letter-spacing: 1px;
      line-height: 5px;
      text-transform: none;
      visibility: hidden;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    .popup.show{
      opacity: 1;
      visibility:visible;
    }
    .error-message{
      color: red;
      font-size: 14px;
      margin-top: 2px;
      text-transform: none;
      font-weight: 700;
      display: none;
    }
    .main-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 2px solid #ccc;
  border-radius: 10px;
  cursor: zoom-in;
}
.manimage{
   width: 250px;
  height: 250px;
  object-fit: cover;
  border: 2px solid #ccc;
  border-radius: 10px;
   cursor: pointer;
}

/* Zoom Modal */
.zoom-modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.zoom-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {transform: scale(0.5);}
  to {transform: scale(1);}
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ff4444;
}

    .form-group {
      margin-bottom: 15px;
      background-color:whitesmoke;
      padding: 10px;
      border-radius:10px;
       box-shadow: 0 0 10px rgba(0,0,0,0.6);
    }

    label {
      display: block;
      font-size: 14px;
      margin-bottom: 6px;
      color: #6b6b6b;
    }

    input {
      width: 90%;
     padding: 5px;
     text-transform: capitalize;
      border:none;
      outline:none;
      
     font-weight:600;
      font-size: 16px;
      background-color:transparent;
    }

    .row {
      display: flex;
      gap: 15px;
    }

    .row .form-group {
      flex: 1;
    }
#editBtn{
   color: rgb(14, 14, 90);
   position: absolute;
   right: 20px;
   font-size: 18px;
      font-weight: bold;
}
    .btn {
      width: 100%;
      padding: 12px;
      background-color:rgb(14, 14, 90);
      color: white;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 25px;
    }

    .btn:hover {
      background-color: white;
      color:rgb(14, 14, 90);
    }
   .discount_percentage1{
      font-size: 1.3rem;
      margin-top: 4px;
      margin-left: 3px;
      color: green;
      
   } 
.shopping-cart table input[type="submit"]{
   padding:.5rem 1.5rem;
   cursor: pointer;
   font-size: 2rem;
   background-color: var(--orange);
   color:var(--white);
}

.shopping-cart table input[type="submit"]:hover{
   background-color: var(--black);
}

.shopping-cart table .table-bottom{
   background-color: var(--bg-color);
}

.shopping-cart .checkout-btn{
   text-align: center;
   margin-top: 1rem;
}

.shopping-cart .checkout-btn a{
   display: inline-block;
   width: auto;
}

.shopping-cart .checkout-btn a.disabled{
   pointer-events: none;
   opacity: .5;
   user-select: none;
   background-color: var(--red);
}

.checkout-form form{
   padding:2rem;
   border-radius: .5rem;
   background-color: var(--bg-color);
}

.checkout-form form .flex{
   display: flex;
   flex-wrap: wrap;
   gap:1.5rem;
}

.checkout-form form .flex .inputBox{
   flex:1 1 40rem;
}

.checkout-form form .flex .inputBox span{
   font-size: 2rem;
   color:var(--black);
}

.checkout-form form .flex .inputBox input,
.checkout-form form .flex .inputBox select{
   width: 100%;
   background-color: var(--white);
   font-size: 1.7rem;
   color:var(--black);
   border-radius: .5rem;
   margin:1rem 0;
   padding:1.2rem 1.4rem;
   text-transform: none;
   border:var(--border);
}

.display-order{
   display: flex;
   flex-wrap: wrap;
   background-color: var(--white);
   border-radius: .5rem;
   text-align: center;
   padding:1.5rem;
   margin:0 auto;
   margin-bottom: 2rem;
   box-shadow: var(--box-shadow);
   border:var(--border);
}

.display-order span{
   display: flex;
   

   border-radius: .5rem;
   margin: 1px 10px;
   background-color: var(--bg-color);
   padding: 35px;
   font-size: 2rem;
   color:var(--black);
   margin:.5rem;
   text-align: center;
   align-items: center;
   justify-content: center;
   flex-direction: column;
   
}
.display-order span img{
   width: 250px;
   border-radius: 10px;
   box-shadow: 5px 5px 10px black;
   margin: 10px 15px;
}

.grand-total p{
   display: flex;
   width: 250px;
   font-size: large;
   align-content: center;
   text-align: center;
   align-items: center;
   justify-content: center;
   background-color: var(--red);
   color:var(--white);
   padding:1rem;
   margin-top: 2rem;
 
}

.order-message-container{
   position: fixed;
   top:0; left:0;
   height: 100vh;
   overflow-y: scroll;
   overflow-x: hidden;
   padding:2rem;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 1100;
   background-color: var(--dark-bg);
   width: 100%;
}

.order-message-container::-webkit-scrollbar{
   width: 1rem;
}

.order-message-container::-webkit-scrollbar-track{
   background-color: var(--dark-bg);
}

.order-message-container::-webkit-scrollbar-thumb{
   background-color: var(--blue);
}

.order-message-container .message-container{
   width: 50rem;
   background-color: var(--white);
   border-radius: .5rem;
   padding:2rem;
   text-align: center;
}

.order-message-container .message-container h3{
   font-size: 2.5rem;
   color:var(--black);
}

.order-message-container .message-container .order-detail{
   background-color: var(--bg-color);
   border-radius: .5rem;
   padding:1rem;
   margin:1rem 0;
}

.order-message-container .message-container .order-detail span{
   background-color: var(--white);
   border-radius: .5rem;
   color:var(--black);
   font-size: 2rem;
   display: inline-block;
   padding:1rem 1.5rem;
   margin:1rem;
}

.order-message-container .message-container .order-detail span.total{
   display: block;
   background: var(--red);
   color:var(--white);
}

.order-message-container .message-container .customer-details{
   margin:1.5rem 0;
}

.order-message-container .message-container .customer-details p{
   padding:1rem 0;
   font-size: 2rem;
   color:var(--black);
}

.order-message-container .message-container .customer-details p span{
   color:var(--blue);
   padding:0 .5rem;
   text-transform: none;
}


















/* media queries  */

@media (max-width:1200px){

  

   .shopping-cart table{
      width: 120rem;
   }

   .shopping-cart .heading{
      text-align: left;
   }

   .shopping-cart .checkout-btn{
      text-align: left;
   }
/* address style */
.form-container{
   position: absolute;
   width: 100%;
  left: 0;
   top: -100px;
   height: 112%;
   background-color: white;
 
}
.products .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, 39rem);
   gap:1.5rem;
   
   justify-content: center;
   margin-top: 5px;
   height: max-content;
   border-radius: 5px;
   
   
}
.form-container1 {
   position: relative;
      max-width: 500px;
      margin: auto;
      background: #fff;
      padding: 10px;
      border-radius: 12px;
     
    }

.form-container1 .shipping-details{
      margin:0px;
      display:flex;
      margin-top:10px;
      margin-bottom:30px;
      align-items:center;
      justify-content:center;
      padding:0px;
     
}
.form-container .heading{
   text-align: center;
   font-size: 3.5rem;
   text-transform: uppercase;
   color:var(--black);
   
   text-decoration: underline;
}
.products .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, 48rem);
   gap:1.5rem;
   
   justify-content: center;
   margin-top: 5px;
   height: max-content;
   border-radius: 5px;
   
   
}

}

@media (max-width:991px){

   html{
      font-size: 55%;
   }
     .cart-details{
   display: grid;
   grid-template-columns: 65% 35%;
}
       .top-details{
   display: grid;
  grid-template-columns: repeat(auto-fit, 40rem);
   height: 81vh;
   overflow-y: scroll;
}
.details-top{
   display: grid;
 width:100%;
   grid-template-columns: 35% 52%;
   align-items: center;
   gap: 6rem;
   border: 1px solid rgba(0, 0, 0, 0.3);
   min-height: 230px;
   max-height: max-content;
   margin-top: 1rem;
   box-shadow: 0px 1px 5px rgb(6, 6, 56);
   justify-content: center;
}
.cart-image{
   width: 150px;
   height: 150px;
   object-fit: cover;
   border: 1px solid rgba(0, 0, 0, 0.3);
   box-shadow: 1px 1px 5px rgb(6, 6, 56);
   padding: 5px;
   margin-left: 10px;
   
}
.detail-box{
   margin-top: 0px;
   display: grid;
   row-gap: 0.1rem;
   
  
}
.products .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, 48rem);
   gap:1.5rem;
   
   justify-content: center;
   margin-top: 5px;
   height: max-content;
   border-radius: 5px;
   
   
}
  .bottom-details{
  
   display: flex;
    justify-content: center;
   align-items: center;
  
 
}
.bottom-details .details-bottom{
   display: flex;
   flex-direction: column;
  padding: 8px;
   width: 300px;
   height: max-content;
   border-radius: 10px;
margin-left: 5px;
   box-shadow: 0 4px 12px rgba(0,0,0,0.4);
   
  
}
.details-bottom h1{
   margin-top:2px;
   align-items: center;
   justify-content: center;
   font-weight: 900;
   text-decoration: underline;
   font-size: 15px;
}
.details-bottom h2{
   font-weight: 500;
   margin-top: 20px;
   margin-left: 0px;
}
.total{
   display: flex;
   justify-content: space-between;
   margin-top: 0px;
}
.totalname{
   font-size: 1.5rem;
 font-weight: 450;
   margin: 0px;
   color: #333;
}
#grandTotal{
   font-size: 1.5rem;
 font-weight: 800;
   margin: 0px;
}
#savingTotal,#delivery-fee{
   font-size: 1.5rem;
        font-weight: 800;
        margin:0px;  
}
.checkout{

   display: flex;
   height: 30px;
   color: white;
   justify-content: center;
   align-items: center;
   background-color: blue;
  
   font-size: 1.3rem;
}
.checkout:hover{
   background-color: black;
}




.continue-shop a{
   color: black;
   font-size: 1.2rem;
   font-style: sans-serif;
}
.continue-shop a:hover{
   color: orange;
}
/* address style */
.form-container{
   position: absolute;
   width: 100%;
  left: 0;
   top: -100px;
   height: 112%;
   background-color: white;
 
}
.form-container1 {
   position: relative;
      max-width: 500px;
      margin: auto;
      background: #fff;
      padding: 10px;
      border-radius: 12px;
     
    }

.form-container1 .shipping-details{
      margin:0px;
      display:flex;
      margin-top:10px;
      margin-bottom:30px;
      align-items:center;
      justify-content:center;
      padding:0px;
     
      
    }
    
.plus-btn{
   justify-content:center;
    align-items:center;
     padding-top:4px; 
     padding-left:2px; 
     padding-right:2px;
   height:18px; 
   margin-top:3px; 
   margin-left:-3px;
   font-weight:600; 
   border:1px solid grey;
   cursor:pointer;
}
.minus-btn{
   justify-content:center;
    align-items:center;
     padding-top:4px; 
     padding-left:2px; 
     padding-right:2px;
   height:18px; 
   margin-top:3px; 
   margin-right:-3px;
   font-weight:600; 
   border:1px solid grey;
   cursor: pointer;
}
.cart-quantity{
   border: 1px solid rgba(0, 0, 0, 0.3);
   outline: none;
  height:18px;
  
  padding: 3px;
  
  padding-bottom: 4px;
   color:var(--black);
   
   width: 2.5rem;
   text-align: center;
   align-items: center;
   justify-content: center;
   font-size:1.3rem;
}

}

@media (max-width:600px){



   .header .flex .navbar{
      position: absolute;
      top:99%; left:0; right:0;
      background-color: var(--blue);
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
      transition: .2s linear;
   }

   .header .flex .navbar.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
   }

   .header .flex .navbar a{
      margin:2rem;
      display: block;
      text-align: center;
      font-size: 2.5rem;
   }

   .display-product-table{
      overflow-x: scroll;
   }

   .display-product-table table{
      width: 90rem;
   }
   .product-color-container::-webkit-scrollbar{
   
   height: 3px;
}

.product-color-container::-webkit-scrollbar-track{
   background-color: white;
   border-radius: 2px;
   cursor: pointer;
}

.product-color-container::-webkit-scrollbar-thumb{
   background-color: rgb(201, 194, 194);
   border-radius: 5px;
   cursor: pointer;
}
   
.cart-empty{
   display: flex;
 margin:auto;
   justify-content: center;
   align-items: center;
   
}
  .cart-empty a{
   font-size:20px; 
   width: 50%;
}
.cart-details{
   display: block;
   
   
}
.mrp_price1{
   width: max-content;
    padding: 0px;
    text-transform: capitalize;
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 14px;
    color:grey;
  margin-top:2px;
  margin-right:3px;
    background-color: transparent;text-decoration: line-through;
    
}
    .top-details{
   display: block;

   height: 74vh;
   overflow-y: scroll;
   width: 100%;
}

.details-top{
   display: grid;
   width: 100%;
   grid-template-columns: 40% 50%;
   align-items: center;
   gap: 8rem;
   border: 1px solid rgba(0, 0, 0, 0.3);
   height: 150px;
   margin-top: 1rem;
   box-shadow: 0px 1px 5px rgb(6, 6, 56);
   justify-content: space-around;
   align-items: center;
   align-content: space-around;
   justify-items: center;
   padding-right: 1rem;
}
.cart-image{
   width: 170px;
   height: 170px;
   object-fit: cover;
   border: 1px solid rgba(0, 0, 0, 0.3);
   box-shadow: 1px 1px 5px rgb(6, 6, 56);
   padding: 5px;
   margin-left: 30px;
   
}
.detail-box{
   display: grid;
   row-gap: 0.1rem;
   margin-left: -50px;
}
.top-details::-webkit-scrollbar{
  display: none;
}

.bottom-details{
  
   display: flex;
    justify-content: center;
   align-items: center;
  
 
}
.bottom-details .details-bottom{
   display: flex;
   flex-direction: column;
  padding: 8px;
   width: 100%;
   height: max-content;
   border-radius: 10px;
margin-left: 5px;
   box-shadow: 0 4px 12px rgba(0,0,0,0.4);
   
  
}
.details-bottom h1{
   margin-top:2px;
   align-items: center;
   justify-content: center;
   font-weight: 900;
   text-decoration: underline;
   font-size: 15px;
}
.details-bottom h2{
   font-weight: 500;
   margin-top: 20px;
   margin-left: 0px;
}
.total{
   display: flex;
   justify-content: space-between;
   margin-top: 0px;
}
.totalname{
   font-size: 1.5rem;
 font-weight: 450;
   margin: 0px;
   color: #333;
}
#grandTotal{
   font-size: 1.5rem;
 font-weight: 800;
   margin: 0px;
}
#savingTotal,#delivery-fee{
   font-size: 1.5rem;
        font-weight: 800;
        margin:0px;  
}
.checkout{

   display: flex;
   height: 30px;
   color: white;
   justify-content: center;
   align-items: center;
   background-color: blue;
   margin: 3px;
   font-size: 1.3rem;
}
.checkout:hover{
   background-color: black;
}


.continue-shop{
    display: none;
}
.continue-shop a{
   color: black;
   font-size: 1.2rem;
   font-style: sans-serif;
}
.continue-shop a:hover{
   color: orange;
}
 .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background-color: #ffffff;
      border-top: 1px solid #ccc;
      display: flex;
      justify-content: space-around;
      align-items: center;
      box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }
    .top-nav .your-order{
      display: none;
    }
    .top-nav .account{
      display: none;
    }
    .top-nav .nav-links a{
   position: relative;
}
.top-nav .nav-links a span{
   position: absolute;
   padding: 0px 5px;
   border-radius: 50%;
   right: -5px;
   top: -15px;
   border: 1px solid black;
   background-color:rgb(6, 6, 79);
   color:white;
   font-size: 10px;
}
.form-container{
   position: absolute;
   width: 100%;
  left: 0;
   top: -100px;
   height: 112%;
   background-color: white;
 
}
.form-container1 {
   position: relative;
      max-width: 500px;
      margin: auto;
      background: #fff;
      padding: 10px;
      border-radius: 12px;
     
    }

.form-container1 .shipping-details{
      margin:0px;
      display:flex;
      margin-top:10px;
      margin-bottom:30px;
      align-items:center;
      justify-content:center;
      padding:0px;
     
      
    }
    .form-container1 .shipping-details h1{

    border-bottom: 1px solid black;
    }
    .form-group {
      margin-bottom: 15px;
      background-color:whitesmoke;
      padding: 5px;
      border-radius:10px;
       box-shadow: 0 0 10px rgba(0,0,0,0.6);
    }

    label {
      display: block;
      font-size: 14px;
      margin-bottom: 6px;
      color: #6b6b6b;
    }

    input {
      width: 90%;
     padding: 5px;
     text-transform: capitalize;
      border:none;
      outline:none;
      
     font-weight:600;
      font-size: 13px;
      background-color:transparent;
    }
.form-container .heading{
   text-align: center;
   font-size: 3.5rem;
   text-transform: uppercase;
   color:var(--black);
   
   text-decoration: underline;
}

    .row {
      display: flex;
      gap: 15px;
    }

    .row .form-group {
      flex: 1;
    }
#editBtn{
   color: rgb(14, 14, 90);
   position: absolute;
   right: 20px;
   font-size: 18px;
      font-weight: bold;
}
    .btn {
      width: 100%;
      padding: 12px;
      background-color:rgb(14, 14, 90);
      color: white;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 25px;
    }

    .btn:hover {
      background-color: white;
      color:rgb(14, 14, 90);
    }
.size-down{
   justify-content:center;
    align-items:center;
     padding-top:4px; 
     padding-left:2px; 
     padding-right:2px;
   height:21px; 
   margin-top:3px; 
   font-weight:600; 
   border:1px solid rgb(170, 168, 168);
}
.plus-btn{
   justify-content:center;
    align-items:center;
     padding-top:4px; 
     padding-left:2px; 
     padding-right:2px;
   height:18px; 
   margin-top:3px; 
   margin-left:-3px;
   font-weight:600; 
   border:1px solid grey;
   cursor:pointer;
}
.minus-btn{
   justify-content:center;
    align-items:center;
     padding-top:4px; 
     padding-left:2px; 
     padding-right:2px;
   height:18px; 
   margin-top:3px; 
   margin-right:-3px;
   font-weight:600; 
   border:1px solid grey;
   cursor: pointer;
}
.cart-quantity{
   border: 1px solid rgba(0, 0, 0, 0.3);
   outline: none;
  height:18px;
  
  padding: 3px;
  
  padding-bottom: 4px;
   color:var(--black);
   
   width: 2.5rem;
   text-align: center;
   align-items: center;
   justify-content: center;
   font-size:1.3rem;
}
.cart-name{
   color: rgb(6, 6, 56);
   font-size: 1.5rem;
   text-transform:none;
   font-weight:600;
   margin-bottom: 0px;
   margin-right: 10px;
   font-family: 'Poppins', sans-serif;
}
.cart-des{
    color: #666;
   font-size: 1.1rem;
   text-transform:none;
   font-weight:600;
   margin-bottom: 1px;
   
   font-family: 'Poppins', sans-serif;
}
}

@media (max-width:450px){

  


   .heading{
   text-align: center;
   font-size: 3.5rem;
   text-transform: uppercase;
   color:var(--black);
   border-bottom: 0px;
   text-decoration: underline;
}

   .container{
   position: relative;
}

   .products .box-container{
      display: flex;
      flex-direction: column;
      margin-top: 0px;
    gap:5px;
   }
   .carousel-head-container{
   display:flex;
   flex-direction: column;
   width:100%;
   height:max-content;
position: relative;
justify-content: center;
align-items: center;
border: none;
}
   .carousel-head-container .controls{
      display:none;
   }
   .carousel-container {
    text-align: center;
    background-color:white;
    color:white;
    width: 92%;
    height: 100%;
  }

  .carousel {
    width: 100%;
    height: 100%;
    background-color:white;
    color:white;
    overflow: hidden;
   
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
  }

  .carousel-images {
    display: flex;
    color:white;
    background-color:white;
    transition: transform 0.3s ease-in-out;
  }

  .carousel-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    user-select: none;
  }

      .product-color-container::-webkit-scrollbar{
   
   height: 3px;
}

.product-color-container::-webkit-scrollbar-track{
   background-color: white;
   border-radius: 2px;
   cursor: pointer;
}

.product-color-container::-webkit-scrollbar-thumb{
   background-color: rgb(201, 194, 194);
   border-radius: 5px;
   cursor: pointer;
}
   .cart-details{
   display: block;
   
   
}
    .top-details{
   display: block;
align-items: center;
justify-items: center;
   height: max-content;
   overflow-y: scroll;
   width: 100%;
}
.details-top{
   display: flex;
   max-width: 100%;
  
   align-items: center;
   gap: 10rem;
   border: 1px solid rgba(0, 0, 0, 0.3);
   min-height: 150px;
   max-height: max-content;
   margin-top: 1rem;
   box-shadow: 0px 1px 5px rgb(6, 6, 56);
   justify-content: flex-start;
   margin-bottom: 10px;
}
.cart-image{
   max-width: 120px;
   max-height: 120px;
   min-width:70px;
   min-height: 70px;
   object-fit: cover;
   border: 1px solid rgba(0, 0, 0, 0.3);
   box-shadow: 1px 1px 5px rgb(6, 6, 56);
   padding: 5px;
   margin-left: 10px;
   
}
.cart-name{
   color: rgb(6, 6, 56);
   font-size: 1.3rem;
   text-transform:none;
   font-weight:600;
   margin-bottom: 1px;
   font-family: 'Poppins', sans-serif;
}
.mrp_price1{
   width: max-content;
    padding: 0px;
    text-transform: capitalize;
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 10px;
    color:grey;
  margin-top:0px;
  margin-right:4px;
    background-color: transparent;text-decoration: line-through;
    
}
.cart-des{
    color: #666;
   font-size: 7px;
   text-transform:none;
   font-weight:600;
   margin-bottom: 1px;
   
   font-family: 'Poppins', sans-serif;
}
.detail-box{
   display: grid;
   row-gap: 0.1rem;
   
}
.discount_percentage1{
      
      margin-top: 2px;
      margin-left: 3px;
      color: green;
      
   } 
.top-details::-webkit-scrollbar{
  display: none;
}

.bottom-details{
  
   display: flex;
    justify-content: center;
   align-items: center;
  border-left: none;
 
}
.bottom-details .details-bottom{
   display: flex;
   flex-direction: column;
  padding: 8px;
   width: 100%;
   height: max-content;
   border-radius: 10px;
margin-left: 5px;
   box-shadow: 0 4px 12px rgba(0,0,0,0.4);
   
  
}
.details-bottom h1{
   margin-top:2px;
   align-items: center;
   justify-content: center;
   font-weight: 900;
   text-decoration: underline;
   font-size: 15px;
}
.details-bottom h2{
   font-weight: 500;
   margin-top: 20px;
   margin-left: 0px;
}
.total{
   display: flex;
   justify-content: space-between;
   margin-top: 0px;
}
.totalname{
   font-size: 1.5rem;
 font-weight: 450;
   margin: 0px;
   color: #333;
}
#grandTotal{
   font-size: 1.5rem;
 font-weight: 800;
   margin: 0px;
}
#savingTotal,#delivery-fee{
   font-size: 1.5rem;
        font-weight: 800;
        margin:0px;  
}
.size-absolute{
   position: absolute;
   display: none;
   left:-185px;
   top: 18px;
   width: 250px;
   flex-direction: row;
   justify-content: center;
   flex-wrap: nowrap;
   margin-top: 2px;
   background-color: rgb(255, 255, 255);
   border: 1px solid rgb(6, 6, 62);
   /* box-shadow: 2px 2px 10px rgb(6, 6, 62); */
   border-radius: 7px;
}
.cart-sizes .cart-size{
   width:40px; 
   margin: 5px 4px;
            height:max-content; 
            font-size:7px; 
            font-weight:600;
            cursor: pointer;
            border:2px solid rgb(6,6,62); 
            padding:4px 1px; 
            border-radius:10%;
            text-align: center;
            background-color: white;
}

.cart-empty{
   display:flex; 
    font-size: 18px;
    font-weight: 300;
   width: 100%;
   top:50%;
   left:0%;
    justify-content:center;  
    align-items:center; 
    padding:10px; flex-direction:column;
}

.checkout{
   
   display: flex;
   height: 30px;
   color: white;
   justify-content: center;
   align-items: center;
   background-color: blue;
   margin: 3px;
   font-size: 1.3rem;
}
.checkout:hover{
   background-color: black;
}

.product-color-container .product-color-details{
   display: flex;
  flex-direction:column;
  flex-wrap: wrap;
  justify-content: center;
  width: 81px;
  height: max-content;
  margin: 0px;
  margin-bottom:10px;
  
  }
  .products .box-container .detailed-product .product-name{
   font-size: 3rem;
   font-weight: 800;
   letter-spacing: 1px;
   display: flex;
   flex-wrap: wrap;
}
.products  .product-color img{
   height: 8rem;
   width: 60px;
   align-items: center;
   object-fit: cover;
   
   
}
.dots-container{
   position: absolute;
   bottom: 13px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   gap: 7px;
   
}
.dots{
   width: 9px;
   height: 9px;
   background-color: rgba(0, 0, 0,0.3);
   border-radius: 50%;
   cursor: pointer;
   transition: background-color 0.5s ease,width 0.5s ease;
}
.dots.active{
   width: 13px;
   height: 8px;
   border-radius: 36%;
   background-color: rgb(6, 6, 62);
}
.continue-shop{
    display: none;
}
.continue-shop a{
   color: black;
   font-size: 1.2rem;
   font-style: sans-serif;
}
.continue-shop a:hover{
   color: orange;
}
 .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60px;
      background-color: #ffffff;
      border-top: 1px solid #ccc;
      display: flex;
      justify-content: space-around;
      align-items: center;
      box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }

    .top-nav .your-order{
      display: none;
    }
    .top-nav .account{
      display: none;
    }
     .top-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      background-color: #ffffff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.6);
      position: sticky;
      top: 0;
      z-index: 999;
    }

    .logo {
        width:100px;
      font-size: 24px;
      font-weight: bold;
      color: #333;
      text-decoration: none;
      height: 50px;
      
    }

    .search-bar {
      flex: 1;
      margin: 0 20px;
      max-width: 200px;
    }

    .search-bar form {
      display: flex;
    }

    .search-bar input[type="text"] {
      flex: 1;
      width:70%;      
      padding: 8px 12px;
      border: 1px solid #ccc;
      
      border-radius: 4px 0 0 4px;
      font-size: 10px;
    }

    .search-bar button {
      padding: 8px 14px;
      
      color: black;
      border: 1px solid #007BFF;
      border-left: none;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
      font-size: 14px;
    }

    .search-bar button:hover {
      background-color: #0056b3;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-size: 14px;
      display: flex;
      align-items: center;
    }

    .nav-links i {
      margin-right: 6px;
      font-size: 18px;
    }
    /* address.php style */
    .form-container{
   position: absolute;
   width: 100%;
  left: 0;
   top: -100px;
   height: 112%;
   background-color: white;
 
}
.form-container1 {
   position: relative;
      max-width: 500px;
      margin: auto;
      background: #fff;
      padding: 10px;
      border-radius: 12px;
     
    }

.form-container1 .shipping-details{
      margin:0px;
      display:flex;
      margin-top:10px;
      margin-bottom:30px;
      align-items:center;
      justify-content:center;
      padding:0px;
     
      
    }
    .form-container1 .shipping-details h1{

    border-bottom: 1px solid black;
    }
    .form-group {
      margin-bottom: 15px;
      background-color:whitesmoke;
      padding: 5px;
      border-radius:10px;
       box-shadow: 0 0 10px rgba(0,0,0,0.6);
    }

    label {
      display: block;
      font-size: 14px;
      margin-bottom: 6px;
      color: #6b6b6b;
    }

    input {
      width: 90%;
     padding: 5px;
     text-transform: capitalize;
      border:none;
      outline:none;
      
     font-weight:600;
      font-size: 13px;
      background-color:transparent;
    }
.form-container .heading{
   text-align: center;
   font-size: 3.5rem;
   text-transform: uppercase;
   color:var(--black);
   
   text-decoration: underline;
}

    .row {
      display: flex;
      gap: 15px;
    }

    .row .form-group {
      flex: 1;
    }
#editBtn{
   color: rgb(14, 14, 90);
   position: absolute;
   right: 20px;
   font-size: 18px;
      font-weight: bold;
}
    .btn {
      width: 100%;
      padding: 12px;
      background-color:rgb(14, 14, 90);
      color: white;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 25px;
    }

    .btn:hover {
      background-color: white;
      color:rgb(14, 14, 90);
    }
    .products .box-container .slider-container{
   width: 98%;
   box-shadow: 2px 2px 10px black ;
   overflow: hidden;
   position: relative;
   height: 280px;
}
.size-down{
   justify-content:center;
    align-items:center;
     padding-top:4px; 
     padding-left:2px; 
     padding-right:2px;
   height:15px; 
   margin-top:3px; 
   font-weight:600; 
   border:1px solid rgb(170, 168, 168);
}
.qty-name{
   align-items: center;
   font-size: 1.4rem;
   font-weight: 0;
   margin-right: 2px;
}
.main-cart-size{
   border: 1px solid rgba(0, 0, 0, 0.3);
   outline: none;
   margin-top: 3px;
  margin-left: 0px;
  height: 2.4rem;
  padding: 3px;
   color:var(--black);
   cursor: pointer;
   width: 4.5rem;
   text-align: center;
   align-items: center;
   justify-content: center;
   font-size:1.3rem;
}
.plus-btn{
   justify-content:center;
    align-items:center;
     padding-top:4px; 
     padding-left:4px; 
     padding-right:2px;
   height:15px; 
   width: 2rem;
   margin-top:3px; 
   margin-left:-3px;
   font-weight:600; 
   border:none;
   background-color: rgb(206, 203, 203);
   border-radius: 3px;
   cursor:pointer;
}
.minus-btn{
   justify-content:center;
    align-items:center;
     padding-top:5px; 
     padding-left:3px; 
     padding-right:0px;
   height:15px; 
   width: 2rem;
   margin-top:3px; 
   margin-right:-3px;
   
   font-weight:600; 
   border:none;
   background-color: rgb(206, 203, 203);
   border-radius: 3px;
   cursor: pointer;
}
.cart-quantity{
   border:none;
   outline: none;
  height:17px;
  
  padding: 3px;
  
  padding-bottom: 4px;
   color:var(--black);
   border-radius: 3px;
   width: 4rem;
   text-align: center;
   align-items: center;
   justify-content: center;
   font-size:1.4rem;
   font-weight:900px;
}

.mens-main-conatiner{
            display: flex; flex-direction:row; flex-wrap: wrap;  gap:5px;  margin-top: 0px;
        }
        .mens-products{
            display: flex;
  flex-direction:column;
  flex-wrap: wrap;
  justify-content: center;
  width: max-content;
  height: max-content;
  margin: 0px;
  margin-bottom:10px;
        }
        .products-exp{
            display: flex;
  flex-direction:row;
  justify-content: center;
  flex-wrap: wrap;
  background-color: white;
  width: max-content;
  height: max-content;
  padding: 0rem;
   margin-top: 10px;
   border-radius: 4px;
   box-shadow: none;
        }
        .products-exp img{
            width: 60px; height: 60px; object-fit:cover; border-radius: 50%;
        }
        .mens-name{
            margin-top:3px; display:flex; font-size:1rem; align-items: center; justify-content: center;
        }
        .searchedproducts{
         
         position:absolute; font-size:2.5rem; top:-40px; left:25%; padding-bottom:10px; align-items:center;
          justify-content:center;
        }
        .cart-empty a{
   font-size:20px; 
   width: 70%;
}
}
@media (max-width:450px){

   html{
      font-size: 40%;
   }

   .heading{
      font-size: 2rem;
   }
   .products .box-container .box img{
      height: 240px;
      box-sizing: border-box;
      align-items: center;
      width: 100%;
      padding: 0px 20px;
      justify-content: center;
      
   }
   .products .box-container .box{
      height: 280px;
   }

  
}