*,
*::before,
*::after{
  margin:0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  box-sizing: border-box;
}

body{
  /*background-image: url('bg.jpeg');*/
  background: #000;
  background-size: contain;
  
}

/*Section used for centering process*/
section {
  width: 100%;
  height: 100%;
 
  display: flex;
  align-items: center;
  justify-content: center;
}
.catimages{
    width: 100px;
    height: 100px;
    border-radius: 50px;
}

.products{
    padding: 10px;
        border: 1px solid #555100;
    background: #302401;
    border-radius: 10px;
    letter-spacing: 1px;
    margin-top: 10px; 
    
}
.prods{
   display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 1.4em;
}
.products p{
  width: 95%;
  font-size: 1.6em;
  color:#ccc;
}
.prodimages{
    height: auto;
    width: 100%;
    max-height: 200px;
    padding: 10px;
    border-radius:20px;
}
.cart_container {
  position: fixed;
  top:500px;
  right: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.popup th, .popup td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.popup th {
  background-color: #f4f4f4;
}

.popup td {
  background-color: #fff;
  font-size: 1.3em;
}
/* Popup content */
.popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  max-width: 500px;
  position: relative;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}
.cart_dox img {
  width: 40px; /* Adjust size as needed */
  height: auto;
}

.cart_count {
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: red;
  border-radius: 50%;
  padding: 5px 10px;
  position: absolute;
  top: -10px;
  right: -10px;
}

.addcart{
  background:#fff;padding:5px 10px;color:#000;padding-bottom: 2px;border-radius:5px;word-break: break-all;
    white-space: nowrap;margin:2px;
    /* display: none; */
}

.price{
    color:#fff;
    font-size: 1em;
}

.price label{
        /* width: 400px; */
        display: inline;
        font-size: 1.2em;
        padding: 5px;
        width: 100%;
        color: #e48c0b;
}

.container {
  width: 100%;
  max-width: 600px;
}
.search-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #0f0f0e;
  position: sticky;
  top: 0;
  z-index: 1000;
}

#searchBar {
  width: 60%;
  padding: 10px;
  border: none;
  height: 10%;
  border-radius: 5px;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      background: #3f3f3f;
    color: #ccc;
}

.remove-btn{
  color: #fff;
    background: #f50707;
    padding: 4px 7px;
    border-radius: 16px;
    border: 1px solid #ccc;
    font-weight: bold;
}

button.accordion {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  text-align: left;
  padding: 10px 5px;
  font-size: 14px;
  color: #ccc;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.8s linear;
  display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0px;
}

.accordion div {
     display: flex;
    align-items: center;
    justify-content: flex-start;
}

.accordion h3{
  font-weight: 500;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.accordion:after {
  font-family: FontAwesome;
  content: "\f150";
  font-family: "fontawesome";
  font-size: 25px;
  float: right;
  position: absolute;
    right: 20px;
}

button.accordion.is-open:after {
  content: "\f151";
}

button.accordion:hover,
button.accordion.is-open {
  background-color: #ffda43e8;
  color: #000;
}

.accordion-content {
  border-left: 1px solid #ffda43e8;
  border-right: 1px solid #ffda43e8;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease-in-out;
  margin-bottom: 10px;
}


/* footer styling starts here */

.contactUs{
  height: 25vh;
  padding: 20px;
  

  display: flex;
  justify-content: center;

  color: rgba(255, 255, 0, 0.651);
  font-weight: bold;

}

.ftdiv{
   display: flex;
   flex-direction: column;

   gap: 10px;
   
}

.ftheader{
  font-size: 2rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.ftelem1, .ftelem2{
  font-size: 1.4rem;

  display: flex;
  align-items: center;
}

.ftelem1 span,
.ftelem2 span {
  margin-right: 10px; 
}

#phoneNumber,#OurAddress{
  text-align: center;
}