
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
   }
   body::-webkit-scrollbar{
       display: none;
   }
   .kuttynav{
    display: none;
   }
   .navbar{
    margin-top: 15px;
    height: 170px;
    width: 100%;
    padding: 20px;
    /* background-color: yellow; */
    display: flex;
    align-items: center;
    justify-content: space-between;
   }
   .n1{
    height:93%;
    width: 14%;
    /* background-color: darkcyan; */
    overflow: hidden;
    padding: 10px;
   }
   .n1 img{
    height:100%;
    width: 100%;
    object-fit: contain;
   }
   .n2{
    height: 80%;
    width:50%;
    /* background-color: saddlebrown; */
    display: flex;
    align-items: center;
    justify-content:space-around;
   }
   .n2 a{
    text-decoration: none;
    color: #555555;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
   }
   .n2 a:hover{
    color:gold;
   }
   .heading{
    height: 200px;
    width: 100%;
    /* background-color: darksalmon; */
    padding: 20px;
   }
   .subheading{
    height: 100%;
    width: 100%;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   }
   .subheading h1{
    font-size: 45px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    color: #555555;
   }
   .subheading p{
    height:5px;
    width: 60px;
    background-color:rgb(255, 212, 22);
}
   
.container {
  width: 80%;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  text-transform: capitalize;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #333333b9;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table, th, td {
  border: 1px solid #ddd;
}

th, td {
  padding: 10px;
  /* background-color: #102770; */
  text-align: center;
  color: #555555;
}
.product-category td{
  padding: 10px;
  text-transform: uppercase;
  background-color: #2350e5b3;
  text-align: center;
  color: white;
}
th {
  background-color: rgb(255, 212, 22);
  color:rgba(22, 22, 22, 0.54);
}

.product-img {
  width: 60px;
  cursor: pointer;
  transition: transform 0.2s;
}

.product-img:hover {
  transform: scale(1.2);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.product-category {
  background-color: #ececec;
  font-weight: bold;
  text-align: left;
  font-size: 1.2em;
}
#cartSummary {
  /* position: fixed; */
  /* top: 400px; */
  /* right: 300px; */
  margin-bottom: 100px;
  width: 500px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  z-index: 1000;
}

#cartSummary h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

#cartTable {
  margin-bottom: 20px;
}

#checkoutButton {
  display: block;
  width: 100%;
  padding: 10px;
  background: #28a745;
  color: white;
  border: none;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  transition: background 0.3s;
}

#checkoutButton:hover {
  background: #218838;
}

/* Cart icon styles */
#cartIconContainer {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
}

#cartIcon {
  width: 100%;
  height: 100%;
}

#cartQuantity {
  position: absolute;
  top: 0;
  right: 0;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 14px;
}





















   




   *, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
    body{
    margin:0;
    overflow-x:hidden !important;
    box-sizing:border-box;
    font-family: 'Source Sans Pro', sans-serif;
    }
    
    
    a{
    text-decoration:none;
    outline:none !important;
    color:#fff;
    }
    
    .border-shape {
    background: #ffbe00 none repeat scroll 0 0;
    color: #fff;
    display: block;
    height: 3px;
    left: 0;
    margin: 20px auto;
    position: relative;
    right: 0;
    text-align: center;
    top: 0;
    width: 80px;
    }
    
    .border-shape::before {
    background: #ffbe00 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    left: 80px;
    margin: 0 auto;
    position: absolute;
    text-align: center;
    top: 1px;
    width: 100px;
    }
    
    .border-shape::after {
    background: #ffbe00 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    margin: 0 auto;
    position: absolute;
    right: 80px;
    text-align: center;
    top: 1px;
    width: 100px;
    }
    
    
    
    
    
    
    
    
    
    
    /*FOOTER*/
    footer{
    width:100%;
    background-color:#121619;
    color:#fff;
    }
    
    .top_header{
    padding:2rem;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    }
    
    .top_header section{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    }
    
    .top_header span{
    padding:0 1rem;
    }
    
    .top_header .fa{
    color:#ffbe00;
    font-size:35px;
    }
    
    footer .border-shape {
    width: 40%;
    }
    
    footer .border-shape::before {
    width: 100%;
    left:120px;
    }
    
    footer .border-shape::after {
    width: 100%;
    right:120px;
    }
    
    footer .bottom_content section{
    padding:1.5rem 2rem;
    display:flex;
    align-items:center;
    justify-content:Center;
    }
    
    .bottom_content a{
    margin:0 20px;
    color:rgba(255,255,255,0.7);
    transition:0.5s;
    }
    
    .bottom_content a:hover{
    color:rgba(255,255,255,1);
    }
    
    
    .copyright{
    padding:0.8em 0;
    background-color:#1e1e1e;
    text-align:center;
    color:rgba(255,255,255,0.7);
    font-size:12px;
    }
   .copyright span a{
        color: goldenrod;
    }
    
    
    @media (max-width:820px){
    .top_header{
    padding:1rem;
    display:block;
    }
    
    .top_header section{
    margin:40px 0;
    align-items:left;
    justify-content:left;
    }
    footer .bottom_content section{
    padding:1rem;
    display:block;
    }
    footer .bottom_content section a{
    padding:1rem;
    font-size:12px;
    margin:0 5px;
    display:inline-block;
    }
    }
    







    @media screen and (max-width:600px) {


        *{
           margin: 0;
           padding: 0;
           box-sizing: border-box;   
          }
          body{
           width: 100vw;
           height: 100vh;
           overflow-x: hidden;
          }
          body::-webkit-scrollbar{
              display: none;
          }
          
          .heading{
           height: 200px;
           width: 100%;
           /* background-color: darksalmon; */
           padding: 20px;
          }
          .subheading{
           height: 100%;
           width: 100%;
           /* background-color: red; */
           display: flex;
           flex-direction: column;
           align-items: center;
           justify-content: center;
          }
          .subheading h1{
           font-size: 30px;
           font-weight: 400;
           text-transform: capitalize;
           font-family: "Poppins", sans-serif;
           color: #555555;
          }
          .subheading p{
           height:5px;
           width: 60px;
           background-color:rgb(255, 212, 22);
       }
       /* mobilnavbar */
  .kuttynav{
    height: 130px;
    width: 100%;
    padding: 10px;
    background-color:rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .firstkutty{
    height: 100%;
    width: 35%;
    overflow: hidden;
    background-color:rgb(255, 255, 255);
  }
  .firstkutty img{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  

/* Please ❤ this if you like it! */


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

/* *,
*::before,
*::after {
  box-sizing: border-box;
} */

.sec-center {
  /* z-index: -2; */
  position: relative;
  /* max-width: 100%; */
  width:65%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  z-index: 200;
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked){
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.for-dropdown i{
    font-size: 30px;
    font-style: normal;
    color: #1e1e1e;
    /* margin-top: 20px; */
    /* margin-left: 130px; */
    /* font-weight: 500; */
}
.dropdown:checked + label,
.dropdown:not(:checked) + label{
  /* z-index: 100; */
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  height: 50px;
  /* margin-top: 20px; */
  margin-left: 130px;
  transition: all 200ms linear;
  border-radius: 4px;
  width:60px;
  letter-spacing: 1px;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  text-align: center;
  border: none;
  /* background-color: #ffeba7; */
  cursor: pointer;
  color:gray;
  box-shadow: 0 12px 35px 0 rgba(255,235,167,.15);
}
.dark-light:checked ~ .sec-center .for-dropdown{
  background-color: #102770;
  color: #ffeba7;
  /* font-size: 30px; */
  box-shadow: 0 12px 35px 0 rgba(16,39,112,.25);
}
.dropdown:checked + label:before,
.dropdown:not(:checked) + label:before{
  position: fixed;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  z-index: -1;
  cursor: auto;
  pointer-events: none;
}
.dropdown:checked + label:before{
  pointer-events: auto;
}
.dropdown:not(:checked) + label .uil {
  font-size: 24px;
  margin-left: 10px;
  transition: transform 200ms linear;
}
.dropdown:checked + label .uil {
  transform: rotate(180deg);
  font-size: 24px;
  margin-left: 10px;
  transition: transform 200ms linear;
}
.section-dropdown {
  position: absolute;
  padding: 5px;
  background-color:#1e1e1e;
  top: 80px;
  left: 0;
  height: 450px;
  width: 100%;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content:space-around;
  box-shadow: 0 14px 35px 0 rgba(9,9,12,0.4);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px);
  transition: all 200ms linear;
}
.section-dropdown i{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgb(252, 198, 71);
    /* padding: 20px; */
    margin-right: 10px;
    margin-bottom: 5px;
}
.dropdown:checked ~ .section-dropdown{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.section-dropdown:before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  content: '';
  display: block;
  z-index: 1;
}
.section-dropdown:after {
  position: absolute;
  top: -7px;
  right: 60px;
  /* left: 30px; */
  width: 0; 
  height: 0; 
  border-left: 8px solid transparent;
  border-right: 8px solid transparent; 
  border-bottom: 8px solid #111;
  content: '';
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}
.dark-light:checked ~ .sec-center .section-dropdown:after {
  border-bottom: 8px solid #fff;
}

.section-dropdown a {
  position: relative;
  color: #fff;
  transition: all 200ms linear;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  margin-top: 3px;
  border-radius: 2px;
  padding: 5px 0;
  padding-left: 20px;
  padding-right: 15px;
  /* margin: 2px 0; */
  margin-left: 10px;
  text-align: left;
  text-decoration: none;
  display:flex;

  
}
.dark-light:checked ~ .sec-center .section-dropdown a {
  color: #102770;
}
a:hover {
  color: #102770;
  background-color: #ffeba7;
}
.dark-light:checked ~ .sec-center .section-dropdown a:hover {
  color: #ffeba7;
  background-color: #102770;
}
a .uil {
  font-size: 22px;
}
.dropdown-sub:checked + label,
.dropdown-sub:not(:checked) + label{
  position: relative;
  color: #fff;
  transition: all 200ms linear;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 2px;
  padding: 5px 0;
  padding-left: 20px;
  padding-right: 15px;
  text-align: left;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
    -ms-flex-pack: distribute;
    cursor: pointer;
}
.dropdown-sub:checked + label .uil,
.dropdown-sub:not(:checked) + label .uil{
  font-size: 22px;
}
.dropdown-sub:not(:checked) + label .uil {
  transition: transform 200ms linear;
}
.dropdown-sub:checked + label .uil {
  transform: rotate(135deg);
  transition: transform 200ms linear;
}
.dropdown-sub:checked + label:hover,
.dropdown-sub:not(:checked) + label:hover{
  color: #102770;
  background-color: #ffeba7;
}
.dark-light:checked ~ .sec-center .section-dropdown .for-dropdown-sub{
  color: #102770;
}
.dark-light:checked ~ .sec-center .section-dropdown .for-dropdown-sub:hover{
  color: #ffeba7;
  background-color: #102770;
}

.section-dropdown-sub {
  position: relative;
  display: block;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  max-height: 0;
  padding-left: 10px;
  padding-right: 3px;
  overflow: hidden;
  transition: all 200ms linear;
}
.dropdown-sub:checked ~ .section-dropdown-sub{
  pointer-events: auto;
  opacity: 1;
  max-height: 999px;
}
.section-dropdown-sub a {
  font-size: 14px;
}
.section-dropdown-sub a .uil {
  font-size: 20px;
}
       .navbar{
        overflow: hidden;
        display: none;
        margin-top: 15px;
        height: 170px;
        width: 100%;
        padding: 20px;
        /* background-color: yellow; */
        /* display: flex; */
        align-items: center;
        justify-content: space-between;
       }
       .n1{
        height:93%;
        width: 14%;
        /* background-color: darkcyan; */
        overflow: hidden;
        padding: 10px;
       }
       .n1 img{
        height:100%;
        width: 100%;
        object-fit: contain;
       }
       .n2{
        height: 80%;
        width:50%;
        /* background-color: saddlebrown; */
        display: flex;
        align-items: center;
        justify-content:space-around;
       }
       .n2 a{
        text-decoration: none;
        color: #555555;
        font-family: "Poppins", sans-serif;
        text-transform: capitalize;
       }
       .n2 a:hover{
        color:gold;
       }
       .container {
        width: 100%;
        margin: 10px auto;
        padding: 5px;
      }
    
      h1 {
        font-size: 1.2em;
      }
    
      table, th{
        font-size: 12px;
        padding: 3px;
      }
      td{
        font-size: 13px;
        height: 60px;
        padding: 3px;
        text-transform: uppercase;
        color: black;
        font-weight: 700;
      }
      .product-category td{
        padding: 10px;
        background-color: #2350e5b3;
        text-align: center;
        color: white;
      }
      .product-img {
        height: 100%;
        width: 100%;
      }
    
      #cartSummary {
        width: 100%;
        padding: 5px;
        z-index: 1;
      }
    
      #checkoutButton {
        padding: 6px;
      }
    
      #cartIconContainer {
        width: 40px;
        height: 40px;
      }
    
      #cartQuantity {
        padding: 2px 5px;
        font-size: 10px;
      }
   
      #imageModal{
        z-index:9999;
      }
    
       
       
          *, *:after, *:before {
           -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
           box-sizing: border-box;
           }
           body{
           margin:0;
           overflow-x:hidden !important;
           box-sizing:border-box;
           font-family: 'Source Sans Pro', sans-serif;
           }
           
           
           a{
           text-decoration:none;
           outline:none !important;
           color:#fff;
           }
           
           .border-shape {
           background: #ffbe00 none repeat scroll 0 0;
           color: #fff;
           display: block;
           height: 3px;
           left: 0;
           margin: 20px auto;
           position: relative;
           right: 0;
           text-align: center;
           top: 0;
           width: 80px;
           }
           
           .border-shape::before {
           background: #ffbe00 none repeat scroll 0 0;
           bottom: 0;
           content: "";
           height: 1px;
           left: 80px;
           margin: 0 auto;
           position: absolute;
           text-align: center;
           top: 1px;
           width: 100px;
           }
           
           .border-shape::after {
           background: #ffbe00 none repeat scroll 0 0;
           bottom: 0;
           content: "";
           height: 1px;
           margin: 0 auto;
           position: absolute;
           right: 80px;
           text-align: center;
           top: 1px;
           width: 100px;
           }
        
           /*FOOTER*/
           footer{
            display: none;
               overflow: hidden;
               height: auto;
           width:100%;
           background-color:#121619;
           color:#fff;
           }
           
           .top_header{
           padding:2rem;
           display:flex;
           flex-direction: column;
           align-items:center;
           justify-content:center;
           position:relative;
           }
           
           .top_header section{
           display:flex;
           align-items:center;
           justify-content:left;
           height: 100%;
           width:100%;
           }
           
           .top_header span{
           padding:0 1rem;
           }
           
           .top_header .fa{
           color:#ffbe00;
           font-size:35px;
           }
           
           footer .border-shape {
           width: 40%;
           }
           
           footer .border-shape::before {
           width: 100%;
           left:120px;
           }
           
           footer .border-shape::after {
           width: 100%;
           right:120px;
           }
           
           footer .bottom_content section{
           padding:1.5rem 2rem;
           display:flex;
           /* flex-direction: column; */
           align-items:center;
           flex-wrap: wrap;
           justify-content:Center;
           height: 100%;
           width: 100%;
           padding: 20px;
       }
           
           .bottom_content a{
           margin:0 20px;
           color:rgba(255,255,255,0.7);
           transition:0.5s;
           }
           
           .bottom_content a:hover{
           color:rgba(255,255,255,1);
           }
           
           
           .copyright{
           padding:10px;
           background-color:#1e1e1e;
           text-align:center;
           height: 100%;
           width: 100%;
           color:rgba(255,255,255,0.7);
           font-size:12px;
           /* flex-wrap: wrap; */
           }
          .copyright span a{
           /* width: 30%; */
           /* flex-wrap: wrap; */
               color: goldenrod;
           }
           
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
           }
           @media (max-width: 480px) {
            footer{
              display: none;
            }
  .container {
    width: 100%;
    margin: 10px auto;
    padding: 5px;
  }

  h1 {
    font-size: 1.2em;
  }

  table, th, td {
    font-size: 12px;
    padding: 3px;
  }
  .product-category td{
    text-transform: uppercase;
    padding: 10px;
    background-color: #2350e5b3;
    text-align: center;
    color: white;
  }
  #imageModal{
    z-index:9999;
  }

   
  .product-img {
    width: 30px;
  }

  #cartSummary {
    width: 100%;
    padding: 5px;
  }

  #checkoutButton {
    padding: 6px;
  }

  #cartIconContainer {
    width: 40px;
    height: 40px;
  }

  #cartQuantity {
    padding: 2px 5px;
    font-size: 10px;
  }

  /* Reduce the width of the quantity input for mobile devices */
  td input[type="number"] {
    width: 50px; /* or any other appropriate value */
  }
}