@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #7a3e1d;
  --secondary-color: #e9c46a;

  --error-color: #ff4d4f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.category-hub {
  scroll-margin-top: 180px;
}

/* header */
.header {
  background-color: var(--primary-color);
  height: 70px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 99;
}

.header__right a {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.header__right a span {
  text-decoration: underline;
}

.header__right button {
  background-color: white;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  outline: none;
  box-shadow: none;
}

@media (max-width: 575px) {
  .logo img {
    width: 180px;
  }

  .header__right a span,
  .header__right button span {
    display: none;
  }

  .header__right button {
    background-color: transparent;
    color: var(--secondary-color);
  }
  .header__right a i,
  .header__right button i {
    font-size: 20px;
  }
}

/* Menu Bar */

.menu-bar {
  position: fixed;
  top: 70px;
  left: 0;
  height: calc(100vh - 70px);
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-bar.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-bar__in {
  position: absolute;
  top: 0;
  right: 0%;
  height: 100%;
  overflow-y: auto;
  max-width: 390px;
  width: 100%;
  background-color: #f9f9f9;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.menu-bar__in.show {
  transform: translateX(0);
}

.menu-bar__in::-webkit-scrollbar {
  display: none;
}

.menu-bar__top {
  padding: 80px 20px 30px 20px;
  background-color: var(--primary-color);
}

.menu-bar__top h1 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0;
  text-transform: uppercase;
}

.menu-close-btn {
  position: absolute;
  background-color: transparent;
  color: white;
  border: none;
  outline: none;
  box-shadow: none;
  top: 10px;
  right: 10px;
  font-size: 25px;
}

.menu-bar-mid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 1px 0px;
  padding: 20px;
  margin: 5px 0;
  text-decoration: none;
  color: #222;

  &:hover {
    opacity: 0.9;
  }
}

.auth-wrap {
  padding: 20px;
}

.auth-wrap > a {
  background-color: var(--primary-color);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 8px;
  text-align: center;
  text-decoration: none;
  display: block;
  border-radius: 5px;
}

.auth-wrap p {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--primary-color);
}

.auth-wrap p a {
  color: var(--primary-color);
}

/* Login */

.login {
  position: fixed;
  top: 70px;
  left: 0;
  height: calc(100vh - 70px);
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.login.active {
  opacity: 1;
  pointer-events: auto;
}

.login-in {
  position: absolute;
  top: 0;
  right: 0%;
  height: 100%;
  overflow-y: auto;
  max-width: 390px;
  width: 100%;
  background-color: #f9f9f9;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.login-in.show {
  transform: translateX(0);
}

.login-in::-webkit-scrollbar {
  display: none;
}

.login__top h1 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.login__top button {
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}

.login__top button i {
  font-size: 24px;
}

.auth-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 8px;
}

.auth-input {
  height: 40px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 0 10px;
  outline: none;
  box-shadow: none;
  font-size: 16px;
  font-weight: 400;
  background-color: #f4f4f4;
}

.eye-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

.error-msg {
  font-size: 16px !important;
  font-weight: 400;
  margin: 5px 0 0 0 !important;
  color: var(--error-color);
  display: none;
}

.auth-submit-btn {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 10px 20px;
  border-radius: 5px;
  width: 100%;
  margin-top: 10px;

  &:hover {
    opacity: 0.9;
  }
}

.login-mid > p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: var(--primary-color);
}

.login-mid > p a {
  color: var(--primary-color);
}

/* Banner */
.banner {
  height: calc(100vh - 70px);
  position: relative;
}

.banner_cover {
  height: 100%;
  width: calc(100vw - 390px);
  background-image: url("../images/banner.jpg");
  background-size: cover;
  background-position: left;
  padding-bottom: 20px;
}

.web_viewport {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  max-width: 390px;
  width: 100%;
  padding: 20px;
  background-color: white;
}

.web_viewport h1 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.home_offer_era img {
  width: 100%;
  border-radius: 10px;
}

.order_method {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}

.order_method label {
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: all linear 0.3s;
}

.order_method label:hover {
  background-color: var(--primary-color);
  color: #fff;
}

input[name="order_method"]:checked + label {
  background-color: var(--primary-color);
  color: #fff;
}

.order_method label svg path {
  fill: #66666682;
}

.order_method label:hover svg path,
input[name="order_method"]:checked + label svg path {
  fill: white;
}

.order_method label h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0 0 0;
  color: #66666682;
}

.order_method label:hover h2,
input[name="order_method"]:checked + label h2 {
  color: white;
}

.drive_to_btn {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.drive_to_btn:hover i {
  animation: moveRight 1.5s ease-in-out infinite;
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

.index-quick-btn {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.index-quick-btn a {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
  background-color: white;
  border-radius: 5px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;

  &:hover {
    background-color: var(--primary-color);
    color: white;
  }
}

/* Footer */

.footer {
  padding: 30px 0;
  background-color: var(--primary-color);
  color: white;
}

.footer-item {
  margin: 20px 0;
}

.footer-item h1 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
}

.footer-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-item ul li {
  margin: 8px 0;
}

.footer-item ul li a {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: white;

  &:hover {
    opacity: 0.8;
  }
}

.footer-item p {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 10px 0;
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 16px;
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  height: 40px;
  width: 40px;
  background-color: #000;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  color: white;
}

/* order way info */
.order_way_info__in {
  display: flex;
  align-items: center;
  gap: 10px 30px;
}

.order_way_info__in .divider {
  width: 1px;
  height: 60px;
  background-color: var(--primary-color);
}

.order_way_info__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

.order_way_info__item svg path {
  fill: var(--primary-color);
}

.order_way_info__item h1 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
}

.order_way_info__item h1 i {
  color: var(--primary-color);
}

.order_way_info__item p {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  margin: 0;
}

@media (max-width: 767px) {
  .order_way_info__in {
    gap: 10px 12px;
  }
}

/* Menu */
.menu {
  position: sticky;
  top: 70px;
  z-index: 99;
  height: 66px;
  display: flex;
  align-items: center;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 20px;
}

.menu__in {
  padding: 0 40px;
}

.menu__in .owl-carousel .owl-nav button.owl-prev,
.menu__in .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  height: 30px;
  width: 40px;
  border-radius: 30px;
  background-color: white;
  border: 1px solid #ccc !important;
}

.menu__in .owl-theme .owl-nav [class*="owl-"]:hover {
  color: var(--primary-color) !important;
}

.menu__in .owl-carousel .owl-nav button.owl-prev {
  left: -50px;
}

.menu__in .owl-carousel .owl-nav button.owl-next {
  right: -50px;
}

.menu__in .owl-theme .owl-nav {
  margin-top: 0 !important;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  background-color: #f9f9f9;
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 10px;
  white-space: nowrap;

  &:hover {
    background-color: #c7c7c7;
  }
}

.menu-item.active {
  background-color: var(--primary-color);
  color: white;
}

.menu-item img {
  width: 30px !important;
  height: 30px;
  border-radius: 50%;
}

.menu-item p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

/* Product Era */

.product_era {
  background-color: #f9f9f9;
  min-height: 60vh;
}

.product_era__in {
  display: flex;
  padding: 40px 0 20px 0;
  gap: 0 20px;
}

.product-hub {
  height: 100%;
  width: calc(100vw - 390px);
  width: 100%;
}

.cart-hub {
  height: fit-content;
  max-width: 390px;
  width: 100%;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 2px 0px;
  position: sticky;
  top: 150px;
  align-self: flex-start;
}

/* Product Hub */

.current-offers h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.current-offers img {
  max-width: 350px;
  width: 100%;
  border-radius: 10px;
}

.category-hub-era {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}

.category-hub h1 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.category-hub .row > div {
  margin: 10px 0;
}

.sub-menu-hub {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sub-menu-hub a {
  background-color: #c7c7c789;
  color: #222;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.sub-menu-hub a.active {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.product-item {
  height: 100%;
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
}

.product-item__img img {
  width: 100%;
}

.product-item__img span {
  position: absolute;
  bottom: 5px;
  right: 5px;
  height: 25px;
  width: 25px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-item__img span i {
  font-size: 20px;
}

.product-item__content {
  padding: 15px 10px;
}

.product-item__content h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--primary-color);
}

.product-item__content p {
  font-size: 14px;
  margin: 10px 0 20px 0;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-price h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  border-radius: 30px;
  width: fit-content;
  text-decoration: line-through;
}

.product-price h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  background-color: #f9f9f9;
  border-radius: 30px;
  width: fit-content;
  /* padding: 5px 10px; */
}

@media (max-width: 425px) {
  .category-hub .row {
    --bs-gutter-x: 0.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .category-hub .row {
    --bs-gutter-x: 0.5rem;
  }
}

@media (max-width: 767px) {
  .product-hub {
    width: 100%;
  }

  .cart-hub {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    max-width: 100%;
    width: 100%;
    z-index: 99;
    display: none;
  }

  .cart-list-wrapper {
    height: 90vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding-bottom: 30px;
  }

  .cart-list-wrapper::-webkit-scrollbar {
    display: none;
  }

  .cart-hub__list {
    flex: 1;
  }
}

@media (min-width: 768px) {
  .cart-hub {
    display: block !important;
  }
}

/* Cart Hub */

.cart-hub-title {
  background-color: var(--primary-color);
  padding: 15px 20px;
}

.cart-hub h1 {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.cart-hub-close-btn {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  color: white;
  font-size: 25px;
}

.cart-hub__empty {
  padding: 60px 20px 40px 20px;
  text-align: center;
}

.cart-hub__empty h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.cart-hub__empty p {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 0;
  color: #666;
}

.cart-hub__list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.cart-hub-list__item {
  display: flex;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 20px;
}

.cart-hub-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-hub-list__item__content h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--primary-colors);
}

.cart-hub-list__item__content p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 100%;
  color: var(--primary-color);
}

.cart-hub-list__item__action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty-era {
  display: flex;
  gap: 2px;
}

.cart-qty-era input {
  width: 20px;
  height: 20px;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.cart-qty-era input::-webkit-outer-spin-button,
.cart-qty-era input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-qty-era input[type="number"] {
  -moz-appearance: textfield;
}

.cart-qty-era button {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

.cart-hub-list__item__action h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0;
}

.checkout-btn-era {
  padding: 20px;
}

.checkout-btn-era > div {
  border-top: 1px solid #ccc;
  padding: 10px 0;
}

.checkout-btn-era h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  font-size: 18px;
  font-weight: 700;
  margin: 5px 0;
}

.checkout-btn-era h4:last-child {
  color: var(--primary-color);
}

.checkout-btn-era a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  border-radius: 5px;
  padding: 10px 20px;
  width: 100%;
  height: 50px;

  &:hover {
    opacity: 0.9;
  }
}

/* Product Modal  */

.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100%;
  overflow-y: auto;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: end;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.product-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.product-modal__in {
  width: calc(100vw - 390px);
  display: flex;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.product-modal__in.show {
  transform: translateX(0);
}

.product-img {
  flex: 1;
  height: 100%;
  width: 100%;
}

.product-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-content {
  max-width: 390px;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
}

/* .product-content::-webkit-scrollbar {
  display: none;
} */

.product-content__top img {
  width: 100%;
  object-fit: cover;
}

.product-top__desc {
  padding: 40px 20px 20px 20px;
  background-color: white;
}

.product-top__desc h1 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-color);
}

.product-top__desc h5 {
  width: fit-content;
  padding: 5px 0px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  background-color: #f9f9f9;
  color: var(--primary-color);
}

.product-top__desc p {
  font-size: 16px;
  margin: 10px 0;
  line-height: 100%;
  font-weight: 400;
}

.product-sub__pr {
  padding: 20px 20px 10px 20px;
  flex: 1;
}

.product-sub__pr > .row {
  --bs-gutter-x: 0.5rem !important;
}

.product-sub__pr h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.product-sub__pr .row > div {
  margin: 10px 0;
}

.product-sub__item {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}

.product-sub__item input:checked + *,
.product-sub__item:has(input:checked) {
  background-color: var(--primary-color);
  color: white;
}

.product-sub__item input:checked + .product-sub__item__content h3,
.product-sub__item:has(input:checked) .product-sub__item__content h3 {
  color: white;
}

.product-sub__item input:checked + .product-sub__item__content p,
.product-sub__item:has(input:checked) .product-sub__item__content p {
  color: white;
}

.product-sub__item__img img {
  width: 50px;
  min-width: 50px;
  height: 40px;
  object-fit: contain;
}

.product-sub__item__content h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.product-sub__item__content p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 100%;
  color: var(--primary-color);
}

.product-action-era {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background-color: white;
  border-top: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-action-era__in {
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-action-era__in input {
  height: 30px;
  width: 60px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid #383e1379;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  color: var(--primary-color);
}

.product-action-era__in input::-webkit-outer-spin-button,
.product-action-era__in input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-action-era__in input[type="number"] {
  -moz-appearance: textfield;
}

.product-action-era__in button {
  height: 30px;
  width: 30px;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: white;
}

.product-action-era__in button:disabled {
  background-color: #f9f9f9;
  color: var(--primary-color);
}

.add-to-cart-btn {
  flex: 1;
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
}

.product-modal-cls-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  outline: none;
  box-shadow: none;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  cursor: pointer;
}

.product-modal-cls-btn i {
  font-size: 20px;
}

@media (max-width: 425px) {
  .product-sub__pr .row {
    --bs-gutter-x: 0.5rem;
  }

  .product-sub__pr {
    padding: 20px 10px;
  }
  .product-top__desc {
    padding: 40px 10px 20px 10px;
  }
}

@media (max-width: 1240px) {
  .product-modal__in {
    width: initial;
  }
}

/* Offer Modal */
.offers-modal {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100%;
  overflow-y: auto;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.offers-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.offers-modal__in {
  display: flex;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.offers-modal__in.show {
  transform: translateX(0);
}

.offers-content {
  max-width: 390px;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
}

.offers-content__top {
  padding: 40px 20px 20px 20px;
}

.offers-content__top h1 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-color);
}

.offers-content__top h5 {
  padding: 10px 8px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  background-color: #ffa60093;
}

.offer-sub__pr {
  padding: 20px 20px 10px 20px;
  flex: 1;
}

.offers-modal-cls-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  outline: none;
  box-shadow: none;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  cursor: pointer;
}

.offers-modal-cls-btn i {
  font-size: 20px;
}

@media (max-width: 425px) {
  .offer-sub__pr .row {
    --bs-gutter-x: 0.5rem;
  }

  .offer-sub__pr {
    padding: 20px 10px;
  }
  .offer-content__top {
    padding: 40px 10px 20px 10px;
  }
}

@media (max-width: 1240px) {
  .offers-modal__in {
    width: initial;
  }
}

/* Order Method Modal */

.modal.order-method-modal,
.modal.order-collect-modal {
  --bs-modal-width: 400px !important;
}

.order-method-modal-body h1 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 20px 0;
}

.order-method-modal-body a,
.order-method-modal-body button {
  height: 50px;
  width: 100%;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  margin-top: 20px;
}

.order-method-modal-body a {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.order-method-modal-body button {
  background-color: #e9e9e9;
  color: #222;
}

.cmn_btn {
  height: 50px;
  width: 100%;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  margin-top: 20px;
  color: var(--primary-color) !important;
  background-color: var(--secondary-color) !important;
}

/* Checkout */

.checkout_era {
  background-color: #f9f9f9;
  min-height: 60vh;
}

.checkout_era__in {
  display: flex;
  padding: 20px 0;
  gap: 0 20px;
}

.checkout-left {
  height: 100%;
  width: calc(100vw - 390px);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-right {
  height: fit-content;
  max-width: 390px;
  width: 100%;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 2px 0px;
  position: sticky;
  top: 150px;
  align-self: flex-start;
  padding: 20px;
}

.ordering-information {
  background-color: white;
  padding: 40px;
  border: 1px solid #cccccc55;
  border-radius: 10px;
}

.ordering-information > h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 20px 0;
}

.ordering-information__item {
  padding: 20px;
  border: 1px solid #cccccc55;
  border-radius: 5px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  margin: 20px 0 0 0;
}

.ordering-information__item h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.ordering-information__item p {
  font-size: 16px;
  font-weight: 400;
  margin: 5px 0 0 0;
  opacity: 0.8;
}

.ordering-information__item i {
  font-size: 20px;
}

.checkout-input-wrap label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}

.checkout-input-wrap input,
.checkout-input-wrap select {
  height: 50px;
  border-radius: 5px;
  cursor: pointer;
}

.checkout-input-wrap input:focus,
.checkout-input-wrap select:focus {
  border-color: var(--primary-color);
}

.back-btn {
  text-decoration: none;
  background-color: var(--primary-color);
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  height: 50px;
}

.payment-method-wrapper > h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 20px 0;
}

.payment-method-wrapper__in {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.payment-method-wrapper__in label {
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border: 1px solid #cccccc55;
  transition: all linear 0.3s;

  &:hover {
    background-color: var(--primary-color);
    color: white;
  }
}

.payment-method-wrapper__in label img {
  width: 50px;
}

.payment-method-wrapper__in label span {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
}

.payment-method-wrapper__in label:hover span {
  color: white;
}

input[name="payment"]:checked {
  background-color: var(--primary-color);
  color: #fff;
}

label:has(input[name="payment"]:checked) {
  background-color: var(--primary-color);
  color: #fff;
}

label:has(input[name="payment"]:checked) span {
  color: white;
}

.coupon-wrapper__in {
  display: flex;
  align-items: center;
  gap: 5px;
}

.coupon-wrapper__in input {
  height: 50px;
  border-radius: 5px;
  border: 1px solid #cccccc55;
  outline: none;
  box-shadow: none;
}

.coupon-wrapper__in input:focus {
  border-color: var(--primary-color);
}

.coupon-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  border-radius: 5px;
  padding: 10px 20px;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .ordering-information > h1,
  .payment-method-wrapper > h1 {
    font-size: 24px;
  }

  .payment-method-wrapper__in {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 991px) {
  .checkout_era__in {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }

  .ordering-information {
    padding: 20px;
  }

  .checkout-left,
  .checkout-right {
    width: 100%;
    max-width: 100%;
  }
}

/* Available Coupon Modal */
.available-coupon-modal-body h1 {
  font-size: 25px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.available-coupon-modal-body p {
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0;
}

.available-coupon-modal-body p:last-child {
  margin-bottom: 0;
}

/* Thank You */
.thank-you {
  min-height: calc(100vh - 70px);
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../images/thank-you-bg.png");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.thank-you__in {
  padding: 40px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  background-color: #ffffffe0;
  border-radius: 10px;
  text-align: center;
}

.thank-you__in img {
  max-width: 300px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}

.thank-you__in h1 {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 30px 0 0 0;
  color: var(--primary-color);
}

.thank-you__in h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 30px 0;
}

.thank-you__in__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.thank-you__in__btns a {
  text-decoration: none;
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;

  &:hover {
    background-color: var(--primary-color);
    color: white;
  }
}

@media (max-width: 575px) {
  .thank-you__in {
    padding: 40px 20px;
  }

  .thank-you__in img {
    max-width: 200px;
    height: 200px;
  }
}

/* Profile */
.profile-wrapper {
  min-height: calc(100vh - 70px);
  position: relative;
  background: url("../images/banner.jpg");
  background-size: cover;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.profile-wrap__in {
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
}

.profile-wrap__in > h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.profile-btns {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.profile-btns::-webkit-scrollbar {
  display: none;
}

.profile-btns a {
  text-decoration: none;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}

.profile-btns a.active {
  background-color: var(--primary-color);
  color: white;
}

.profile-btns a.logout-btn {
  background-color: #ff4d4f;
  border-color: #ff4d4f;
  color: white;
}

.account-info {
  margin: 10px 0;
}

.account-info h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.auth-inp-wrapper label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.auth-inp-wrapper input {
  height: 50px;
}

.auth-inp-wrapper input:focus {
  border-color: var(--primary-color);
}

@media (max-width: 575px) {
  .profile-wrap__in {
    padding: 30px 20px;
  }
}

/* Order Card */
.order-card {
  border: 1px solid #ccc;
  margin: 10px 0;
  border-radius: 5px;
  padding: 20px;
}

.order-card > h1 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.order-card > p {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0;
}

.payment_method_view {
  background-color: #cccccc83;
  padding: 5px 10px;
  border-radius: 30px;
}

.my-order-table th {
  font-weight: 600 !important;
}

.product-name {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.my-order-table ul li {
  font-size: 14px;
  font-weight: 400;
}

/* Checkout Button For Small Screen */
.cart-checkout-btn-small {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 540px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  text-align: center;
}

/* Contact Wrapper */
.contact-wrapper {
  padding: 40px 0;
}

.contact-wrapper__in > h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  margin: 0 0 20px 0;
  text-align: center;
}

.contact-address,
.time-schedule {
  margin: 10px 0;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  padding: 20px;
}

.contact-address > h1,
.time-schedule > h1 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.contact-address > h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px 0;
}

.time-schedule p {
  margin: 5px 0;
  font-size: 16px;
  font-weight: 400;
}

.connect-number {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.connect-number a {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: white;
}

/* About Us */
.about-wrapper {
  padding: 40px 0;
}

.about-wrapper__in > h1 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  margin: 0 0 20px 0;
  text-align: center;
}

.about-wrapper__in h2 {
  font-size: 28px;
  font-weight: 500;
  margin: 20px 0 0 0;
}

.about-wrapper__in img {
  width: 100%;
  border-radius: 5px;
}

.about-wrapper__in p {
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0;
}

.about-wrapper__in ul li {
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0;
}

/* Offer Card */

.offer_card_left h5 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 28px;
  letter-spacing: 1px;
}
.generate_qr_btn {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: #097dc5;
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
}

.offer_card {
  padding: 20px;
  z-index: 3;
  border-radius: 5px;
  background: url("../../self-order/assets/images/bg-menu.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  max-width: 490px;
}

.offer_card_top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.offer_card .logo {
  width: 80px;
  object-fit: contain;
  margin-bottom: 5px;
  margin-top: 0px;
}
.offer_card .bar_code {
  width: 100px;
  overflow: hidden;
  margin-top: 5px;
  margin-bottom: 15px;
}

.offer_card .bar_code img {
  width: 100%;
  transform: scale(1.4);
}
.offerBox {
  justify-content: center;
  align-items: center;
}

.offerBoxDiv {
  margin: 5px;
  display: grid;
  grid-template-columns: 30% 30% 30%;
  justify-content: space-between;
  gap: 12px;
}
.offerBoxDiv div {
  background-color: white;
  border-radius: 5px;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offerBoxDiv div i {
  font-size: 55px;
  color: green;
}

.bottom_text p {
  background-color: white;
  color: black;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 5px;
  width: 90%;
  margin: 15px auto 0 auto;
}
.rotate_text {
  color: white;
  font-size: 18px;
  transform: rotate(270deg);
  position: absolute;
  left: -55px;
  top: 50%;
  font-weight: 500;
}
.offer_11th_box1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-basis: 100% !important;
  padding: 4px 0;
}
.spanDiv {
  margin-right: 5px;
  margin-left: 5px;
  width: 50%;
}
.imageBoxOffer {
  width: 50%;
  overflow: hidden;
}

.offer_11th_box1 span {
  display: block;
  font-size: 13px;
  font-style: italic;
  font-weight: 600;
  margin: 0 1px;
}
.offer_11th_box1 span:nth-child(1) {
  color: rgba(0, 0, 0, 0.6);
  text-shadow: 2px 8px 6px rgba(0, 0, 0, 0.2),
    0px -5px 35px rgba(255, 255, 255, 0.3);
}

.offer_11th_box1 span:nth-child(2) {
  color: red;
  text-shadow: 2px 8px 6px rgba(0, 0, 0, 0.2),
    0px -5px 35px rgba(255, 255, 255, 0.3);
}

@media (max-width: 425px) {
  .offer_card_left {
    padding: 0px 0px 0px 0px;
  }
  .offerBoxDiv {
    grid-template-columns: 33% 33% 33%;
  }
  .offerBoxDiv div {
    height: 75px;
  }
  .offerBoxDiv div i {
    font-size: 36px;
  }
  .offer_card {
    padding: 20px 15px;
  }
  .rotate_text {
    font-size: 16px;
    left: -50px;
  }
  .bottom_text p {
    width: 85%;
  }
}

@media (min-width: 426px) and (max-width: 575px) {
  .offer_card_left {
    padding: 0px 0px 0px 0px;
  }
  .offerBoxDiv {
    grid-template-columns: 31% 31% 31%;
  }
  .offerBoxDiv div {
    height: 75px;
  }
  .offerBoxDiv div i {
    font-size: 45px;
  }
  .offer_card {
    padding: 20px 15px;
  }

  .rotate_text {
    font-size: 16px;
    left: -50px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .offerBoxDiv {
    grid-template-columns: 31% 31% 31%;
  }
  .offerBoxDiv div i {
    font-size: 55px;
  }
}

/* Paid Product Ribbon */

.add-on-ribbon {
  background-color: #e60000 !important;
  color: white;
  font-size: 12px;
  padding: 4px 10px 4px 20px;
  position: absolute;
  display: none;
  top: 0;
  right: 0;
}

.add-on-ribbon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid var(--primary-color);
}

/* Reservation */

.reservation-era > h2 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.reservation_inp label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.reservation_inp {
  margin-bottom: 20px;
}

.reservation_inp input,
.reservation_inp select {
  height: 40px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  box-shadow: none;
  padding: 5px 10px;
}

.reservation_inp select {
  cursor: pointer;
}

.reserve-btn {
  background-color: var(--primary-color);
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  outline: none;
  box-shadow: none;
}

#calendar {
  width: 100%;
}
#calendar a {
  color: black !important;
  text-decoration: none;
}
#calendar table th {
  padding-top: 6px;
  padding-bottom: 6px;
}

/* Input Arrow Hidden */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

