* {
  box-sizing: border-box;
}

body {
  font-family: "Saira", sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
  height: 100%;
}
body button {
  font-family: "Saira", sans-serif;
  background: #DA2624;
  color: #FFF;
  border: 0;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 5px 12px;
  cursor: pointer;
  min-width: 110px;
}
body button:has(.button-icon) {
  min-width: auto;
  padding: 5px 10px;
}
body input:not([type=file]) {
  width: 100%;
  height: 30px;
  line-height: 30px;
  outline: 0;
  border-radius: 0;
  border: 1px solid #000;
}
body select {
  width: 100%;
  border-radius: 0;
  border: 1px solid #000;
  height: 30px;
}
body textarea {
  width: 100%;
  height: 60px;
  resize: none;
  border: 1px solid #000;
  border-radius: 0;
}
body .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
body .modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 700px;
  position: absolute;
  margin: 0 auto;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 80%;
}
body .modal-content h3 {
  font-size: 20px;
  font-weight: normal;
  background: #F7BD29;
  margin-left: -20px;
  margin-top: -20px;
  margin-bottom: 0;
  width: calc(100% + 40px);
  padding-left: 20px;
  border-radius: 8px 8px 0 0;
  height: 40px;
  line-height: 40px;
  text-align: left;
}
body .modal-content .payment-mode__desktop, body .modal-content .payment-mode__mobile {
  text-align: center;
}
body .modal-content .payment-mode__mobile select {
  margin: 20px 0 0;
}
body .modal .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-weight: bold;
}
body .modal .form-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  text-align: center;
}
body .modal input {
  width: 100%;
  margin: 5px 0;
  padding: 8px;
}
body .modal button {
  padding: 7px 20px;
  margin: 15px 0 0;
}
body .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}
body .header__logo--img {
  width: 190px;
}
body .header__nav--list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
body .header__nav--list li {
  margin-left: 20px;
}
body .header__nav--list li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  text-transform: uppercase;
}
body .header__nav--list li a:hover {
  color: #DA2624;
}
body .header__nav--list li.customer-details {
  position: relative;
}
body .header__nav--list li.customer-details .customer-details__trigger {
  display: block;
  font-size: 20px;
  position: relative;
  width: 35px;
  cursor: pointer;
  transition: 0.3s;
  text-align: right;
}
body .header__nav--list li.customer-details .customer-details__trigger:hover {
  color: #DA2624;
}
body .header__nav--list li.customer-details .customer-details__trigger .settings-icon {
  position: absolute;
  bottom: 6px;
  left: 10px;
  font-size: 15px;
  color: #F7BD29;
}
body .header__nav--list li.customer-details .customer-details__dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: -197px;
  width: 220px;
  background: #fff;
  border: 1px solid rgb(204, 204, 204);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
  border-radius: 8px;
  z-index: 9;
  visibility: hidden;
  height: 0;
  transition: 0.3s;
}
body .header__nav--list li.customer-details .customer-details__dropdown.show {
  visibility: visible;
  height: auto;
}
body .header__nav--list li.customer-details .customer-details__dropdown li {
  margin: 0;
  padding: 7px 12px;
  border-bottom: 1px solid #ccc;
}
body .main-wrapper {
  height: 100%;
  display: inline-block;
  width: 100%;
}
body .main-wrapper .info-strip {
  background: #F7BD29;
  padding: 3px 5px 3px 15px;
  text-align: right;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .main-wrapper .info-strip__price-details {
  margin-right: 15px;
}
body .main-wrapper .info-strip__price-details--discount {
  display: inline-block;
  margin-right: 20px;
}
body .main-wrapper .info-strip .cart-icon {
  margin: 0 15px;
  cursor: pointer;
  position: relative;
}
body .main-wrapper .info-strip .cart-icon__count {
  background: #D82624;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  position: absolute;
  top: -8px;
  right: -10px;
  width: 20px;
  height: 20px;
  display: block;
  box-sizing: border-box;
  line-height: 20px;
  text-align: center;
}
body .main-wrapper__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 25px 0;
  position: relative;
  height: calc(100vh - 165px);
  overflow-x: auto;
}
body .main-wrapper__container .accordion-item {
  margin-bottom: 10px;
}
body .main-wrapper__container .accordion-header {
  background: #EE6119;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #fff;
  padding: 3px 10px;
  cursor: pointer;
  text-transform: uppercase;
}
body .main-wrapper__container .accordion-content .product {
  color: #222;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  display: flex;
  align-items: center;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
body .main-wrapper__container .accordion-content .product__img {
  width: 150px;
}
body .main-wrapper__container .accordion-content .product__img img {
  width: 150px;
}
body .main-wrapper__container .accordion-content .product__info {
  width: calc(55% - 150px);
}
body .main-wrapper__container .accordion-content .product__info--title {
  display: inline-block;
  font-size: 17px;
  font-weight: normal;
  margin: 0 10px;
  width: 50%;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}
body .main-wrapper__container .accordion-content .product__info--desc {
  display: inline-block;
  font-size: 14px;
  margin: 0 10px;
  width: 40%;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}
body .main-wrapper__container .accordion-content .product__price {
  font-size: 16px;
  margin: 0 10px;
  font-weight: 400;
  width: 25%;
  text-align: right;
}
body .main-wrapper__container .accordion-content .product__button {
  width: 20%;
  text-align: right;
}
body .main-wrapper__container .accordion-content .product__button .quantity-controls {
  display: flex;
  align-items: center;
  justify-content: end;
}
body .main-wrapper__container .accordion-content .product__button .quantity-controls button {
  background: #DA2624;
  color: #fff;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px 0 0px 4px;
  min-width: 25px;
  height: 30px;
  line-height: 30px;
}
body .main-wrapper__container .accordion-content .product__button .quantity-controls button.increase {
  border-radius: 0 4px 4px 0;
}
body .main-wrapper__container .accordion-content .product__button .quantity-controls .quantity {
  width: 40px;
  text-align: center;
  margin: 0;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 3px;
  border-width: 1px 0 1px 0;
}
body .main-wrapper__container .accordion-content .product__button .add-to-cart {
  min-width: 90px;
}
body .main-wrapper__container .accordion-content .product__button .add-to-cart .btn-text {
  padding-right: 5px;
}
body .main-wrapper__container .admin-table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  width: 100%;
}
body .main-wrapper__container .admin-table th, body .main-wrapper__container .admin-table td {
  border: 1px solid #ccc;
}
body.admin-body .main-wrapper__container {
  height: calc(100vh - 127px);
}
body .footer {
  background: #f4f4f4;
  text-align: center;
  padding: 10px;
  border-top: 1px solid #ddd;
  position: relative;
}
body .footer > p {
  margin: 0;
}
body .footer .whatsapp-float {
  position: absolute;
  bottom: 20px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  z-index: 1000;
  cursor: pointer;
  background: #fff;
  margin-left: 21px;
}
body .footer .whatsapp-float__icon {
  color: #25D366;
  font-size: 30px;
}
body .footer .location-float {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  z-index: 1000;
  cursor: pointer;
  background: #fff;
  margin-right: 21px;
}
body .footer .location-float__icon {
  color: #4080eb;
  font-size: 30px;
}
body .footer .location-float__icon:hover + .location-float__tooltip {
  visibility: visible;
  opacity: 1;
}
body .footer .location-float__tooltip {
  visibility: hidden;
  opacity: 0;
  width: 250px;
  background: #ffffff;
  border: 1px solid #ccc;
  color: #222;
  text-align: left;
  border-radius: 6px;
  padding: 12px;
  position: absolute;
  z-index: 1;
  top: -145px;
  left: -135px;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
body .footer .location-float__tooltip:before {
  content: "";
  position: absolute;
  top: 82%;
  right: -17px;
  transform: translateY(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent transparent #ccc;
}
body .login__container {
  max-width: 400px;
  margin: 30px auto;
  border: 1px solid #ccc;
  padding: 0 30px;
  text-align: center;
  overflow-x: auto;
  height: calc(100vh - 187px);
}
body .login__container .admin-form-control {
  margin-bottom: 8px;
}
body .admin-page-heading {
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
}
body .admin-page-heading h2 {
  font-weight: 400;
  font-size: 30px;
  margin: 0;
}
body .admin-page-heading .add-cat-prod-btn {
  text-align: right;
  margin: 0 0 15px;
}
@media screen and (max-width: 768px) {
  body .main-wrapper__container .accordion-content .product__img {
    width: 80px;
  }
  body .main-wrapper__container .accordion-content .product__info {
    width: calc(55% - 80px);
  }
  body .main-wrapper__container .accordion-content .product__info--title, body .main-wrapper__container .accordion-content .product__info--desc {
    display: block;
    width: 100%;
  }
  body .main-wrapper__container .accordion-content .product__price {
    text-align: left;
  }
  body .main-wrapper__container .accordion-content .product__button .add-to-cart {
    min-width: auto;
  }
  body .main-wrapper__container .accordion-content .product__button .add-to-cart .btn-text {
    display: none;
  }
  body .main-wrapper__container .accordion-content .product__button .add-to-cart .btn-icon {
    display: block;
  }
}