
*{
    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;
   }
   .tp{
    display: none;
  }
   .whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 50px;
    z-index: 9999; /* Ensure it's above other content */
  }
  
  .whatsapp-icon img {
    width: 50px; /* Adjust size as needed */
    height: auto;
    border-radius: 50%; /* Makes it round */
    box-shadow:rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px; /* Optional: Adds shadow */
  }
   .navbar{
    background-color: darkorange;
    height: 100px;
    width: 100%;
    padding: 10px;
    /* margin-bottom: 10px; */
    /* background-color:rgba(255, 255, 255, 0.567); */
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    /* box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px; */
    /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
   
}
.subnav{
    height: 100%;
    width: 100%;
    /* background-color: aqua; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.firstnav{
    height: 100%;
    width: 30%;
    /* background-color:rgb(89, 89, 250); */
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 15px;
    justify-content: flex-start;
}
.firstnav img{
    height: 100%;
    width: 100%;
    scale:1.4;
    place-items: left;
    object-fit: contain;
    transform: scale(1.3);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

}
.secondnav{
    height: 100%;
    width: 60%;
    /* background-color:white; */
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
}
.secondnav a{
    text-decoration: none;
    font-size: 16px;
    font-family: "Urbanist", sans-serif;
    color:rgba(0, 0, 0, 0.77);
    font-weight: 700;
    /* background-color: aqua; */
    /* margin: 20px; */
    padding: 10px;
}
.secondnav a:hover{
    /* height: 50%; */
    /* background-color: rgb(255, 94, 0); */
    background-color: #202020a1;
    border-radius: 10px;
    color: white;
}
.secondnav i{
    font-size: 25px;
    padding-right: 10px;
}
.secondnav a:hover i{
    color: white;
}
   .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: #555;
}

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;
}





















   




.footer-section {
    /* background: #711b1b; */
    /* background-image: url(../img/backh.jpg); */
    /* background-color: white; */
    background-color:rgba(0, 0, 0, 0.811);
    background-repeat: no-repeat;
    background-size: cover;
    /* opacity: 0.29; */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 600px;
    width: 100%;
    padding: 20px;
    font-family: 'Open Sans', sans-serif; 
   }
   
   .footer-cta {
    border-bottom: 1px solid #373636;
    /* display: flex; */
    background-color: orange;
    align-items: center;
    font-family: 'Open Sans', sans-serif; 
    /* justify-content: space-evenly; */
   }
   
   .single-cta i {
    color: #ff5e14;
    font-size: 30px;
    /* float: left; */
    /* margin-top: 8px; */
    /* padding-top: 20px; */
   }
   .cta-text {
     /* padding-top: -90px; */
    padding-left: 45px;
     /* margin-left: 100px; */
    display: flex;
    flex-direction: column;
   }
   .cta-text h4 {
    color:white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
   }
   .cta-text span {
    color: #757575;
    font-size: 15px;
   }
   .footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-around;
   }
   .row{
      display: flex;
      align-items: center;
      justify-content: space-around;
   }
   .row1{
      display: flex;
      flex-direction: column;
     /* align-items: center; */
      justify-content: space-around;
      line-height: 25px;
   }
   .footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
   }
   .footer-logo {
    margin-bottom: 30px;
   }
   .footer-logo img {
      max-width: 200px;
      height: 100%;
      width: 100%;
      /* opacity: 0.29; */
      border-radius: 100%;
      transition: 1.1s ease-in;
   }
   .footer-logo img:hover{
      opacity: 1;
      /* transform: scale(1.02); */
   }
   .footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
        color: #7e7e7e;
    line-height: 28px;
   }
   .footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
   }
   .footer-social-icon a {
    color: white;
    font-size: 16px;
    margin-right: 15px;
   }
   .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
   }
   .facebook-bg{
    background: #3B5998;
   }
   .instagram-bg{
    background: #810a42;
   }
   .google-bg{
    background: #bb230f;
   }
   .whatsapp-bg{
     background: rgb(20, 102, 20);
   }
   .footer-widget{
      width: 30%;
   }
   .footer-widget-heading h3 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
   }
   .footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #ff5e14;
   }
   .footer-widget ul li {
    display: inline-block;
    /* float: left; */
    width: 60%;
    margin-bottom: 12px;
   }
   .footer-widget ul li a:hover{
    color: #ff5e14;
   }
   .footer-widget ul li a {
    color: #2f0ae9;
    text-transform: capitalize;
   }
   
   .copyright-area{
    font-family: 'Open Sans', sans-serif; 
    background: #202020;
    padding: 25px 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
   }
   .copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
   }
   .copyright-text p a{
    color: #ff5e14;
   }
   .footer-menu li {
    display: inline-block;
    margin-left: 20px;
   }
   .footer-menu li:hover a{
    color: #ff5e14;
   }
   .footer-menu li a {
    font-size: 14px;
    color: #878787;
   }
    
    @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;
          }
          .tp{
            height: 70px;
            width: 100%;
            background-color: darkorange;
            /* background-color: #202020; */
            display: flex;
            align-items: center;
            /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
            box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
            justify-content: space-between;
        }
           .tp1{
            height: 100%;
            width: 50%;
            /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
            /* background-color: #2f0ae9; */
           }
           .tp1 img{
            object-fit: contain;
            height: 100%;
            width: 100%;
           }
           .tp2{
            height: 100%;
            width: 20%;
            /* background-color: #3B5998; */
            display: flex;
            align-items: center;
            justify-content:space-evenly;
           }
           
           
           
           /* hamburger menu */
    
    
           #menuToggle
           {
             /* display: block; */
             display: flex;
             flex-direction: column;
             align-items: center;
             justify-content: center;
             position: relative;
             top: 0px;
             left: 0px;
             height: 50px;
             width: 50px;
             z-index: 1;
             border: 1px solid white;
             border-radius: 5px;
             -webkit-user-select: none;
             user-select: none;
             /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
             /* background-color: #dc3e3f; */
           }
           
           #menuToggle a
           {
             text-decoration: none;
             color: #e6dddd;
             margin-bottom: 10px;
             /* border: 1px solid white; */
             border-radius: 5px;
             box-shadow: rgb(233, 121, 10) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.077) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0) 0px 2px 1px, rgba(231, 127, 7, 0.712) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(192, 99, 5, 0.674) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
             /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
             /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
             transition: color 0.3s ease;
           }
           
           #menuToggle a:hover
           {
             color: black;
           }
           
           
           #menuToggle input
           {
             display: block;
             width: 40px;
             height: 32px;
             position: absolute;
             top: 7px;
             left: 5px;
             
             cursor: pointer;
             
             opacity: 0; /* hide this */
             z-index: 2; /* and place it over the hamburger */
             
             -webkit-touch-callout: none;
           }
           
           /*
            * Just a quick hamburger
            */
           #menuToggle span
           {
             display: block;
             margin: 2px;
             width: 33px;
             height: 4px;
             /* margin-bottom: 5px; */
             position: relative;
             
             background: #ede9e9;
             border-radius: 3px;
             
             z-index: 1;
             
             transform-origin: 4px 0px;
             
             transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                         background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                         opacity 0.55s ease;
           }
           
           #menuToggle span:first-child
           {
             transform-origin: 0% 0%;
           }
           
           #menuToggle span:nth-last-child(2)
           {
             transform-origin: 0% 100%;
           }
           
           /* 
            * Transform all the slices of hamburger
            * into a crossmark.
            */
           #menuToggle input:checked ~ span
           {
             /* padding-left: 10px; */
             opacity: 1;
             transform: rotate(45deg) translate(7px, -3px);
             background: #ffffff;
           }
           
           /*
            * But let's hide the middle one.
            */
           #menuToggle input:checked ~ span:nth-last-child(3)
           {
             opacity: 0;
             transform: rotate(0deg) scale(0.2, 0.2);
           }
           
           /*
            * Ohyeah and the last one should go the other direction
            */
           #menuToggle input:checked ~ span:nth-last-child(2)
           {
             transform: rotate(-45deg) translate(5px, 8px);
           }
           
           /*
            * Make this absolute positioned
            * at the top left of the screen
            */
           #menu
           {
               overflow: hidden;
             position: absolute;
             width: 445px;
             /* margin: -100px 0 0 -50px; */
             top:54px;
             left: -380px;
             padding: 40px;
             padding-left: 80px;
             /* padding-top: 125px; */
             height: auto;
             display: flex;
             flex-direction: column;
             align-items: center;
             justify-content: center;
             /* justify-content: left; */
             /* background: #dc3e3e; */
             box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
             background:darkorange;
             /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; */
           /* background: linear-gradient(90deg, rgba(187,21,21,1) 0%, rgba(240,113,120,1) 48%, rgba(208,10,10,1) 100%, rgba(118,156,0,1) 100%); */
             list-style-type: none;
             -webkit-font-smoothing: antialiased;
             /* to stop flickering of text in safari */
             
             transform-origin: 0% 0%;
             transform: translate(-100%, 0);
             
             transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
           }
           
           #menu li
           {
             text-align: center;
             /* padding: 10px; */
             font-size: 22px;
             padding-top: 5px;
             /* margin-left: 50px; */
             /* padding-left: 50px; */
             /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
             font-family: Verdana, Geneva, Tahoma, sans-serif;
             /* border:0.1px solid rgba(255, 255, 255, 0.375); */
             width: 300px;
             height: 40px;
             /* background-color: #dc3e3f; */
             border-radius: 10px;
           
           
           
             /* background: rgb(187,21,21); */
           /* background: linear-gradient(90deg, rgba(187,21,21,1) 0%, rgba(240,113,120,1) 48%, rgba(208,10,10,1) 100%, rgba(118,156,0,1) 100%); */
           }
           
           /*
            * And let's slide it in from the left
            */
           #menuToggle input:checked ~ ul
           {
             transform: none;
           }
    
           .navbar{
            display: none;
            height: 100px;
            width: 100%;
            padding: 10px;
            /* margin-bottom: 10px; */
            background-color:rgba(255, 255, 255, 0.567);
            box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
            /* box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px; */
            /* box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px; */
           
        }
        .subnav{
            height: 100%;
            width: 100%;
            /* background-color: aqua; */
            display: flex;
            align-items: center;
            justify-content: space-between;
            
        }
        
       .container {
        width: 100%;
        margin: 10px auto;
        padding: 5px;
      }
    
      h1 {
        font-size: 1.2em;
      }
    
      table, th, td {
        font-size: 12px;
        padding: 3px;
      }
    
      .product-img {
        width: 30px;
      }
    
      #cartSummary {
        width: 100%;
        padding: 5px;
        z-index: 1;
        margin-bottom: 20px;
      }
    
      #checkoutButton {
        height: 40px;
        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-section{
            display: none;
        }
        .copyright-area{
            display: none;
        }
           /*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;
  }
  #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 */
  }
}