@font-face {
  font-family: "Nohemi";
  src: url("./fonts/Nohemi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("./fonts/Nohemi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nohemi";
  src: url("./fonts/Nohemi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.header {
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 101;
  overflow: visible;
}

.header-outer {
  padding-left: 60px;
  padding-right: 60px;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 88px;
}

/* =========================
           LOGO
        ========================== */

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 130px;
  height: 40px;
  transition: 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

/* =========================
           NAVBAR
        ========================== */

.navbar {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar a {
  text-decoration: none;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  font-family: "Nohemi", sans-serif;
  transition: 0.3s;
}

.navbar a:hover {
  color: #000;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #111;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
  transition: all 0.3s ease;
}

.navbar a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #111;
  transform: translateX(-50%);
}

.navbar a.active {
  color: #111;
  font-weight: 500;
}

/* =========================
           RIGHT SECTION
        ========================== */

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  /* push trigger to right when other items hidden */
}

/* Search Box */

.search-box {
  width: 290px;
  background: #f4f4f4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.search-box span {
  display: flex;
}

.search-box input {
  font-family: "Nohemi", sans-serif;
  font-weight: 300;
  font-size: 12px;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
}

.search-box input::placeholder {
  color: #000000;
}

.search-box i {
  font-size: 20px;
  color: #111;
  cursor: pointer;
}

/* Icons */

.header-icons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-icons a {
  display: flex;
  text-decoration: none;
}

.header-icons i {
  font-size: 22px;
  color: #111;
  cursor: pointer;
}

.header-icons i:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease-in-out;
  color: #f97316;
}

/* Mobile Menu Toggle */

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  width: 30px;
}

.mobile-menu-toggle.hidden,
.mobile-close-btn.hidden {
  display: none !important;
}

.mobile-close-btn {
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  border: none;
  background: transparent;
  width: 30px;
}

.mobile-menu-toggle i,
.mobile-close-btn i {
  font-size: 26px;
  color: #111;
}

/* Mobile Navbar */

.mobile-navbar {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: #fff;
  padding-left: 60px;
  padding-right: 60px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: 0.3s ease;
  z-index: 999;
}

.mobile-navbar.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-navbar-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.mobile-close-btn {
  border: none;
  background: transparent;
  cursor: pointer;
}

.mobile-close-btn i {
  font-size: 28px;
}

.mobile-navbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-navbar-header img {
  width: 120px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
  font-family: "Nohemi", sans-serif;
}

/* Responsive */

@media (max-width: 1100px) {
  .profile-card img {
    width: 100% !important;
    border-radius: 12px !important;
  }

  .navbar {
    display: none;
  }

  .header-right {
    display: contents;
  }

  .search-box {
    display: flex !important;
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .mobile-menu-toggle {
    display: flex;
    grid-column: 4;
    grid-row: 1;
    justify-self: end;
  }

  .header-icons {
    display: flex;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    gap: 20px;
  }

  .header-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    grid-template-rows: auto auto;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    gap: 12px 15px;
    align-items: center;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .logo img {
    width: 110px;
    height: auto;
  }

  .mobile-navbar {
    position: absolute;
    top: 100%;
    height: calc(100vh - 100%);
  }

  .mobile-navbar-top {
    display: none;
  }

  .mobile-close-btn {
    display: flex;
    grid-column: 4;
    grid-row: 1;
    justify-self: end;
  }

  .hero-section,
  .product-detail-section,
  .food-banner,
  .contact-banner-section,
  .checkout-section,
  .cart-section,
  .about-banner-section,
  .myaccount {
    padding-top: 150px !important;
  }

  .sidebar,
  .content {
    height: calc(100vh - 170px) !important;
  }

  .account-wrapper {
    grid-template-columns: 70px 1fr !important;
  }

  .menu-group-wrapper,
  .profile-card {
    padding: 5px !important;
  }

  .menu-group h5,
  .profile-card-info {
    display: none;
  }

  .menu-item,
  .logout-btn {
    font-size: 0px !important;
  }

  .menu-item,
  .logout-btn,
  .profile-card {
    gap: 0 !important;
    justify-content: center !important;
  }

  .menu-group {
    margin-bottom: 0px !important;
  }
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero-section {
  width: 100%;
  padding-top: 104px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-swiper-outer {
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

/* =========================================
   HERO SWIPER WRAPPER
========================================= */

.hero-swiper-wrapper {
  height: 70vh;
  min-height: 560px;

  position: relative;
}

/* =========================================
   HERO SWIPER
========================================= */

.hero-swiper {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
}

/* =========================================
   SWIPER WRAPPER
========================================= */

.hero-swiper .swiper-wrapper {
  height: 100%;
}

/* =========================================
   SWIPER SLIDE
========================================= */

.hero-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
}

/* =========================================
   SLIDE IMAGE
========================================= */

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================
   OVERLAY
========================================= */

.slide-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.08));
}

/* =========================================
   CONTENT
========================================= */

.slide-content {
  position: absolute;
  bottom: 70px;
  left: 32px;
  z-index: 2;

  color: #fff;
}

/* =========================================
   SUB TITLE
========================================= */

.slide-subtitle {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 48px;
  color: #ffffff;
  font-family: "Nohemi", sans-serif;
}

/* =========================================
   TITLE
========================================= */
.slide-title-wrapper {
  overflow: hidden;
}

.slide-title span {
  display: inline-block;
}

.slide-title {
  font-size: 52px;
  line-height: 64px;
  font-weight: 500;
  margin-bottom: 59px;
  max-width: 700px;
  font-family: "Nohemi", sans-serif;
}

/* =========================================
   BUTTON
========================================= */

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: #f97316;
  border: solid 1px transparent;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
}

.hero-btn:hover {
  background-color: transparent;
  color: #f97316;
  border-color: #f97316;
  transition: all 0.3s ease-in-out;
}

.discount-form button {
  background: #f97316;
  color: #ffffff;
  border: none;
  height: 42px;
  padding: 0 41px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  line-height: 42px;
  text-align: center;
}

.checkout-btn {
  display: inline-block;
  width: 100%;
  height: 42px;
  background: #000000;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  line-effective: 42px;
  text-align: center;
  padding: 0;
  text-decoration: none;
}

/* =========================================
   PAGINATION
========================================= */

.hero-swiper-wrapper .swiper-pagination {
  position: absolute;

  bottom: -35px !important;

  left: 50% !important;

  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  z-index: 20;
}

/* =========================================
   PAGINATION BULLETS
========================================= */

.hero-swiper-wrapper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;

  border: solid 1px #020202;

  background: transparent;

  border-radius: 50%;

  opacity: 1;

  margin: 0 !important;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;

  transform: scale(1);

  cursor: pointer;
}

/* ACTIVE BULLET */

.hero-swiper-wrapper .swiper-pagination-bullet-active {
  background: #020202;

  border-color: #020202;

  transform: scale(1.5);
}

.offer-section {
  overflow: hidden;
}

.offer-section-outer {
  padding: 80px 60px;
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 80px;
}

.offer-top p {
  max-width: 386px;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
}

.offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f97316;
  color: #fff;
  padding: 13px 24px;
  text-decoration: none;
  font-size: 14px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  transition: 0.3s ease;
  letter-spacing: 0.2%;
}

.offer-btn:hover {
  background: #eb7319;
}

.offer-btn span {
  font-size: 20px;
  line-height: 1;
  display: flex;
}

/* =====================================
           MAIN GRID
        ===================================== */

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
  height: 412px;
}

/* =====================================
           LEFT CONTENT
        ===================================== */

.offer-left,
.offer-right {
  background: #f9822a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0px 10px;
}

/* 
 .offer-left-inner,
 .offer-right-inner {
     max-width: 320px;
 } */

.offer-left-inner {
  height: fit-content;
}

.sale-text {
  font-size: 12px;
  margin-bottom: 12px;
  font-family: "Nohemi", sans-serif;
  font-weight: 500;
  color: #ffffff;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.offer-title {
  font-size: 36px;
  line-height: 48px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #ffffff;
  font-family: "Nohemi", sans-serif;
  max-width: 378px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.offer-right .offer-description {
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffffbf;
  letter-spacing: 0.2%;
  max-width: 263px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 24px;
}

.offer-description {
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffffbf;
  letter-spacing: 0.2%;
  max-width: 294px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* =====================================
           CENTER IMAGE
        ===================================== */

.offer-image {
  position: relative;
  overflow: hidden;
}

.offer-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.offer-image:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

/* =====================================
           RIGHT CONTENT
        ===================================== */

.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: #ffffff;
  color: #fa812e;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  width: fit-content;
  border: solid 1px transparent;
}

.shop-btn:hover {
  background-color: transparent;
  border-color: white;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}

/* =========================================
   BEST SELLERS SWIPER SECTION
 ========================================= */
.bestseller-section {
  overflow: hidden;
}

.bestseller-outer {
  padding: 80px 60px;
}

.bestseller-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}

.bestseller-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2%;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 4px;
}

.bestseller-header-left h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
  max-width: 346px;
  width: 100%;
  color: #f97316;
}

.bs-highlight {
  color: #000000;
  white-space: nowrap;
}

.bestseller-nav {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
}

.bestseller-prev,
.bestseller-next {
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.bestseller-prev {
  background: #f9731680;
  border-radius: 8px 0 0 8px;
}

.bestseller-prev svg,
.bestseller-next svg {
  color: white;
  width: 12px;
  height: 22px;
}

.bestseller-next {
  background: #f97316;
  color: #ffffff;
  border-radius: 0 8px 8px 0;
}

.bestseller-prev:hover {
  background: #f97316;
  color: #fff;
}

.bestseller-next:hover {
  background: #e06610;
}

/* Divider */
.bestseller-divider {
  width: 100%;
  height: 1px;
  /* background: #E5E7EB;
     margin-bottom: 40px; */
}

/* Swiper container */
.bestseller-swiper {
  overflow: hidden;
}

/* Card */
.bs-card {
  overflow: hidden;
  background: #fff;
}

.bs-card-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bs-card-image img {
  width: 100%;
  height: 322px;
  object-fit: contain;
  display: block;
  transition: all 0.4s ease-in-out;
}

.bs-card:hover .bs-card-image img {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.bs-card-content {
  padding: 20px 0;
  padding-bottom: 0px;
}

.bs-card-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.bs-card-content h3 {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  line-height: 24px;
  letter-spacing: 0.2%;
}

.bs-price {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  line-height: 24px;
  letter-spacing: 0.2%;
}

.bs-card-content p {
  font-size: 12px;
  font-weight: 300;
  color: #6b7280;
  font-family: "Nohemi", sans-serif;
  line-height: 16px;
  margin-bottom: 24px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 224px;
  width: 100%;
}

.bs-card-buttons {
  display: flex;
  gap: 12px;
}

.bs-btn-outline,
.bs-btn-filled {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.bs-btn-outline {
  border: 1px solid #111;
  background-color: #fff;
  color: #111;
}

.bs-btn-outline:hover {
  background-color: #111;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.bs-btn-filled {
  border: 1px solid transparent;
  background-color: #111;
  color: #fff;
}

.bs-btn-filled:hover {
  background-color: transparent;
  border-color: #111;
  color: #111;
  transition: all 0.3s ease-in-out;
}

.bestseller-bottom-section-outer {
  padding: 0 60px;
  padding-bottom: 80px;
}

.bestseller-bottom-section-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 39px;
}

.bestseller-bottom-section-wrapper p {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  line-height: 24px;
  letter-spacing: 0.2%;
  max-width: 975px;
  max-width: 418px;
  width: 100%;
}

.bestseller-bottom-section-wrapper a {
  text-decoration: none;
  padding: 13px 24px;
  background: #f97316;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nohemi", sans-serif;
  gap: 10px;
  border: solid 1px transparent;
}

.bestseller-bottom-section-wrapper a:hover {
  background-color: transparent;
  color: #f97316;
  transition: all 0.3s ease-in-out;
  border-color: #f97316;
}

.bestseller-bottom-section-wrapper a span svg {
  color: #ffffff;
}

.bestseller-bottom-section-wrapper a:hover span svg {
  color: #f97316;
  transform: translateX(8px);
  transition: all 0.3s ease-in-out;
}

.bestseller-bottom-section-wrapper a span {
  display: flex;
}

/* MAIN GRID */

.new-arrivals-section {
  overflow: hidden;
}

.new-arrivals-grid {
  display: grid;
  grid-template-columns: 516px 1fr;
  gap: 40px;
  align-items: center;
}

.new-arrival-outer {
  padding: 80px 60px;
}

/* LEFT */
.arrivals-left {
  display: flex;
  flex-direction: column;
}

.new-arrival-section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2%;
  color: #000000;
  position: relative;
  width: fit-content;
  font-family: "Nohemi", sans-serif;
  margin-bottom: 60px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 6px;
}

.arrivals-left h2 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 500;
  color: #111;
  font-family: "Nohemi", sans-serif;
  margin-bottom: 60px;
  max-width: 431px;
  width: 100%;
}

.discover-btn {
  width: fit-content;
  padding: 13px 24px;
  background-color: #f97316;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  letter-spacing: 0.2%;
  border: solid 1px transparent;
}

.discover-btn:hover {
  background-color: transparent;
  border-color: #f97316;
  color: #f97316;
  transition: all 0.3s ease-in-out;
}

/* RIGHT GRID */
.arrivals-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* PRODUCT CARD */
.product-card {
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 317px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.product-content {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 12px 24px 24px 24px;
}

.product-content h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  letter-spacing: 0.2%;
  line-height: 24px;
}

.product-content p {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2%;
  line-height: 16px;
  color: #6b7280;
  font-family: "Nohemi", sans-serif;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.product-content a {
  color: #000000;
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
  border-bottom: 1px solid #000000;
  font-family: "Nohemi", sans-serif;
  letter-spacing: 0.2%;
  line-height: 16px;
  width: fit-content;
  display: flex;
  align-items: center;
}

.product-content a:hover {
  color: #f97316;
  transition: all 0.3s ease-in-out;
  border-color: #f97316;
}

.spice-hero {
  position: relative;
  width: 100%;
  background: url("/images/spice.webp") center center/cover no-repeat;
  overflow: hidden;
}

.spice-outer {
  padding: 80px 60px;
}

.spice-wrapper {
  z-index: 1;
  position: relative;
}

.spice-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.153);
}

.spice-tag {
  display: inline-block;
  color: #ffffff;
  font-family: "Nohemi", sans-serif;
  font-size: 12px;
  margin-bottom: 190px;
  font-weight: 500;
  letter-spacing: 0.2%;
}

.spice-content h1 {
  color: #ffffff;
  font-size: 36px;
  font-family: "Nohemi", sans-serif;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0.2%;
  max-width: 611px;
  width: 100%;
  margin-bottom: 80px;
}

.spice-buttons {
  display: flex;
  align-items: center;
  gap: 41px;
  flex-wrap: wrap;
  width: fit-content;
}

.spice-primary,
.spice-secondary {
  text-decoration: none;
}

.spice-primary {
  background-color: #ffffff;
  color: #000000;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  letter-spacing: 0.2%;
  border: solid 1px transparent;
}

.spice-primary:hover {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.spice-secondary {
  font-size: 14px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #ffffff;
  letter-spacing: 0.2%;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 4px;
}

.spice-secondary:hover {
  color: #f97316;
  transition: all 0.3s ease-in-out;
  border-color: #f97316;
}

.flavor-section {
  overflow: hidden;
}

.flavor-section-outer {
  padding: 80px 60px;
}

/* MAIN GRID */

.flavor-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

/* LEFT SIDE */

.flavor-left {
  display: flex;
  flex-direction: column;
}

.flavor-section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2%;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 4px;
  width: fit-content;
}

.flavor-left h2 {
  font-size: 36px;
  font-family: "Nohemi", sans-serif;
  font-weight: 500;
  line-height: 48px;
  color: #000000;
  margin-bottom: 36px;
  max-width: 452px;
  width: 100%;
}

.flavor-left p {
  font-size: 16px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2%;
  color: #6b7280;
  max-width: 395px;
  width: 100%;
  margin-bottom: 48px;
}

/* FEATURE GRID */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff4e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 13px;
}

.feature-card h4 {
  font-size: 13px;
  font-family: "Nohemi", sans-serif;
  font-weight: 500;
  color: #000000;
  margin-bottom: 7px;
  letter-spacing: 0.2%;
  line-height: 18px;
}

.feature-card span {
  display: block;
  font-size: 12px;
  font-family: "Nohemi", sans-serif;
  font-weight: 300;
  letter-spacing: 0.2%;
  line-height: 16px;
  color: #6b7280;
}

/* RIGHT SIDE */

.flavor-right {
  position: relative;
  overflow: hidden;
}

.flavor-right img {
  width: 100%;
  height: 450px;
  display: block;
  object-fit: cover;
}

.flavor-right:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: solid 1px transparent;
}

.play-btn svg {
  color: #f97316;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background-color: transparent;
  border-color: white;
  transition: all 0.3s ease-in-out;
}

.play-btn:hover svg {
  color: white;
  transition: all 0.3s ease-in-out;
}

/* Review Form Styling */
.reviews-status {
  font-family: "Nohemi", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 24px;
}

.review-card {
  background: #ffffff;
  padding: 32px;
  max-width: 711px;
  width: 100%;
}

.review-form {
  display: flex;
  flex-direction: column;
}

.review-title {
  font-family: "Nohemi", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 5px;
}

.review-subtitle {
  font-family: "Nohemi", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: "Nohemi", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group textarea,
.form-group select {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: "Nohemi", sans-serif;
  font-size: 14px;
  color: #1f2937;
  width: 100%;
  outline: none;
  transition:
    border-color 0.2s,
    background-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #9ca3af;
  background-color: #ffffff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.star-group {
  width: 100%;
}

.review-submit-btn {
  background-color: #f16512;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: "Nohemi", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  border: 1px solid transparent;
}

.review-submit-btn:hover {
  background-color: transparent;
  color: #f16512;
  border-color: #f16512;
  transition: all 0.3s ease-in-out;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
}

.form-checkbox input[type="checkbox"] {
  width: 17px;
  height: 17px;
  border: 1px solid #6b7280;
  border-radius: 2px;
  cursor: pointer;
}

.form-checkbox label {
  font-family: "Nohemi", sans-serif;
  font-size: 12px;
  color: #6b7280;
  cursor: pointer;
  line-height: 20px;
  font-weight: 400;
}

/* Video Modal Styles */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.video-content {
  position: relative;
  background: #000;
  max-width: 90%;
  max-height: 80%;
}

.video-content video {
  width: 100%;
  height: auto;
  display: block;
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.service-section {
  overflow: hidden;
}

.service-section-outer {
  padding: 80px 60px;
}

/* GRID */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */

.service-card {
  background: #fff4e6;
  padding: 32px;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto auto 14px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  line-height: 28px;
  letter-spacing: 0.2%;
  color: #000000;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 12px;
  font-weight: 300;
  font-family: "Nohemi", sans-serif;
  line-height: 16px;
  letter-spacing: 0.2%;
  color: #6b7280;
  max-width: 240px;
  margin: auto;
}

.contact-strip {
  overflow: hidden;
}

.contact-strip-outer {
  width: 100%;
  background: #f97316;
  padding: 80px 60px;
}

/* GRID */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* CARD */

.contact-card {
  text-align: center;
  color: #ffffff;
}

.contact-icon {
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}

.contact-card h3 {
  font-size: 20px;
  font-family: "Nohemi", sans-serif;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.2%;
  color: #ffffff;
  margin-bottom: 24px;
}

.contact-card p {
  font-size: 14px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.2%;
  color: #ffffff;
  text-align: center;
  max-width: 219px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   FOOTER
========================= */

.footer-section-outer {
  padding-top: 80px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 32px;
}

/* TOP AREA */

.footer-section-top-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 25px;
  border-bottom: 1px solid #d3d3d3;
}

.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ABOUT */

.footer-logo img {
  width: 130px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 24px;
}

.footer-about p {
  font-size: 16px;
  font-family: "Nohemi", sans-serif;
  font-weight: 300;
  line-height: 24px;
  color: #000000;
  max-width: 369px;
}

/* LINKS */

.footer-links h4,
.footer-newsletter h4 {
  font-size: 16px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  line-height: 24px;
  color: #000000;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #6b7280;
  font-size: 13px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  line-height: 16px;
  transition: 0.3s;
  white-space: nowrap;
}

.footer-links ul li a:hover {
  color: #ff7a00;
}

/* NEWSLETTER */

.footer-newsletter p {
  font-size: 13px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  line-height: 16px;
  color: #6b7280f2;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px;
  background-color: #f97316;
  font-size: 14px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  color: #ffffff;
}

.newsletter-form input::placeholder {
  color: #ffffff;
}

.newsletter-form button {
  width: 70px;
  border: none;
  background: #ff7a00;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding: 13px 0px;
}

.newsletter-form button:hover {
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  border: solid 1px #f97316;
}

.newsletter-form button svg {
  color: white;
}

.newsletter-form button:hover svg {
  color: #f97316;
  transition: all 0.3s ease-in-out;
  transform: translateX(8px);
}

.newsletter-form button span {
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

.footer-newsletter span {
  font-size: 13px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  line-height: 16px;
  color: #6b7280f2;
  margin-bottom: 16px;
}

/* BOTTOM */

.footer-bottom-wrapper {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-wrapper p {
  font-size: 12px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  line-height: 18px;
  color: #000000;
  letter-spacing: 0.2%;
}

/* SOCIAL */
.bottom-footer-social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.bottom-footer-social-icons a {
  color: #000;
  font-size: 24px;
  display: flex;
  text-decoration: none;
}

.bottom-footer-social-icons a:hover {
  color: #f97316;
  transition: all 0.3s ease-in-out;
}

.bestseller-slide.swiper-slide {
  border: solid 1px #e5e7eb;
  padding: 32px;
  margin-right: 0px;
}

.testimonial-section {
  overflow: hidden;
}

.testimonial-section-outer {
  padding: 80px 60px;
  overflow: hidden;
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT */
.testimonial-left {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  /* height: 100%; */
  position: relative;
  /* display: flex;
     justify-content: space-between;
     flex-direction: column; */
}

.stars {
  color: #c79b2c;
  font-size: 22px;
  margin-bottom: 24px;
  letter-spacing: 4px;
  width: fit-content;
  display: flex;
  gap: 6px;
}

.client-name {
  font-size: 16px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  letter-spacing: 0.2%;
  color: #6b7280;
  display: inline-block;
  margin-bottom: 36px;
}

.testimonial-content h2 {
  font-size: 30px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.2%;
  color: #000000;
  max-width: 500px;
  width: 100%;
}

/* NAVIGATION */
.testimonial-nav {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  background: #efe5d9;
  padding: 12px 24px;
  border-radius: 60px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.custom-prev,
.custom-next {
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  cursor: pointer;
  display: flex;
}

.custom-prev::after,
.custom-next::after {
  display: none;
}

.fraction-pagination {
  /* position: relative;
     width: auto !important;
     bottom: unset !important; */
  font-size: 16px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2%;
  color: #000000;
}

/* RIGHT */
.testimonial-right {
  overflow: hidden;
}

.testimonialImageSwiper {
  width: 100%;
  min-height: 320px;
}

.testimonialImageSwiper .swiper-slide {
  width: 100%;
}

.testimonial-image-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0;
  justify-content: space-between;
}

.testimonial-image-wrapper img {
  object-fit: cover;
  border-radius: 0px;
}

.testimonial-image-wrapper img:nth-child(1) {
  width: 50%;
  position: relative;
  z-index: 3;
  height: 470px;
}

.testimonial-image-wrapper img:nth-child(2) {
  width: 30%;
  position: relative;
  z-index: 2;
  margin-left: -50px;
  height: 440px;
}

.testimonial-image-wrapper img:nth-child(3) {
  width: 25%;
  position: relative;
  z-index: 1;
  margin-left: -35px;
  height: 420px;
}

/* Single image — take full width */
.testimonial-image-wrapper img:only-child {
  width: 100%;
  height: 470px;
  margin-left: 0;
}

/* Two images — equal 50% width each, no overlap */
.testimonial-image-wrapper img:nth-child(1):nth-last-child(2),
.testimonial-image-wrapper img:nth-child(2):nth-last-child(1) {
  width: 50%;
  height: 470px;
  margin-left: 0;
}

.about-banner-section {
  padding-top: 104px;
  padding-bottom: 80px;
  overflow: hidden;
}

.about-banner-outer {
  padding-left: 60px;
  padding-right: 60px;
}

.about-banner-wrapper {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 560px;
  overflow: hidden;
  border-radius: 12px;
}

.about-banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DARK OVERLAY */
.about-banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.12);
}

/* CONTENT */
.about-banner-content {
  position: absolute;
  left: 38px;
  bottom: 43px;
  z-index: 2;
  /* overflow: hidden; */
}

.about-banner-subtitle {
  position: absolute;
  left: 38px;
  top: 30px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
}

.about-banner-content h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  max-width: 781px;
  width: 100%;
}

.welcome-section {
  overflow: hidden;
}

.welcome-outer {
  padding: 80px 60px;
  background-color: #f7f7f7;
}

/* LOGO */
.welcome-logo {
  margin-bottom: 32px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.welcome-logo img {
  width: 160px;
  height: 170px;
  object-fit: cover;
}

/* HEADING */
.welcome-wrapper h2 {
  position: relative;
  font-size: 48px;
  line-height: 60px;
  font-weight: 500;
  color: #000000;
  padding-bottom: 40px;
  margin-bottom: 48px;
  letter-spacing: 6%;
  font-family: "Nohemi", sans-serif;
  max-width: 910px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* GRAY TEXT */
.welcome-wrapper h2 span {
  color: #8f8d8d;
}

/* ORANGE UNDERLINE IMAGE */
.welcome-wrapper h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  max-width: 426px;
  width: 100%;
  height: 17px;

  background-image: url("/images/underlineing.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* DESCRIPTION */
.welcome-wrapper p {
  max-width: 799px;
  margin: auto;
  color: #6b7280;
  font-size: 18px;
  line-height: 26px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  text-align: center;
}

.spices-showcase-section {
  overflow: hidden;
}

.spices-showcase-outer {
  padding: 80px 60px;
}

/* MAIN GRID */
.spices-showcase-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* LEFT IMAGE */
.spices-showcase-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.spices-showcase-image img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  display: block;
}

.spices-showcase-image img:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

/* RIGHT CONTENT */
.spices-showcase-content {
  background: linear-gradient(407deg, #fdba74, #f97316, #7c2d12, #2b1207);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spices-showcase-content h2 {
  color: #ffffff;
  font-size: 45px;
  line-height: 56px;
  font-weight: 600;
  font-family: "Nohemi", sans-serif;
}

.spices-showcase-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  line-height: 26px;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 15px;
  text-align: justify;
}

.approch-us-section {
  overflow: hidden;
}

.approch-us-outer {
  padding: 80px 60px;
}

.approch-us-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  gap: 40px;
}

.approch-us-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2%;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 4px;
}

.approch-us-left h2 {
  color: #000000;
  font-size: 36px;
  line-height: 48px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
  letter-spacing: 0.2%;
  margin-bottom: 36px;
}

.approch-us-left p {
  color: #6b7280;
  font-size: 16px;
  line-height: 24px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2%;
  text-align: justify;
  max-width: 484px;
  width: 100%;
}

.approch-us-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.approch-us-form-grid input {
  margin-bottom: 0px !important;
}

.approch-us-form-group input,
textarea {
  width: 100%;
  padding: 22px 16px;
  margin-bottom: 32px;
  outline: none;
  border: 1px solid #e5e7eb;
  font-size: 16px;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2%;
}

.approch-us-form-group input::placeholder,
textarea::placeholder {
  color: #000000;
}

.approch-us-form-group textarea {
  height: 165px;
}

.approch-us-contact-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.approch-us-contact-bottom button {
  padding: 16px 24px;
  flex-shrink: 0;
  font-size: 16px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2%;
  color: white;
  background-color: black;
  border: 1px solid transparent;
  cursor: pointer;
}

.approch-us-contact-bottom button:hover {
  background-color: transparent;
  color: black;
  border-color: black;
  transition: all 0.3s ease-in-out;
}

.approch-us-contact-bottom p {
  font-size: 12px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2%;
  line-height: 20px;
  color: #6b7280;
}

.approch-us-contact-bottom p a {
  color: black;
  text-decoration: none;
  font-weight: 600;
}

.approch-us-contact-bottom p a:hover {
  color: #f97316;
  transition: all 0.3s ease-in-out;
}

.contact-outer {
  padding: 80px 60px;
}

/* MAIN GRID */
.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT */
.contact-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2%;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 4px;
}

.contact-left h2 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 500;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  margin-bottom: 24px;
  letter-spacing: 0.2%;
}

.contact-left p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #6b7280;
  max-width: 550px;
  margin-bottom: 0;
  letter-spacing: 0.2%;
  text-align: justify;
}

/* FORM */
.contact-right form {
  width: 100%;
}

/* TOP GRID */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* INPUTS */
.form-group {
  margin-bottom: 15px;
}

.review-card .form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  background: #f8f8f8;
  padding: 10px 16px;
  font-size: 13px;
  color: #000000;
  outline: none;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2%;
}

.review-card .form-group textarea {
  height: 99px;
  resize: none;
}

/* BOTTOM */
.contact-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* BUTTON */
.contact-bottom button {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  letter-spacing: 0.2%;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

.contact-bottom button:hover {
  background: #222;
}

/* TERMS */
.contact-bottom p {
  color: #7b7b7b;
  font-size: 12px;
  line-height: 20px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2%;
}

.contact-bottom p a {
  color: #000000;
  font-weight: 600;
  text-decoration: none;
}

.our-promise-section {
  overflow: hidden;
}

.our-promise-outer {
  padding: 80px 60px;
}

.section-heading {
  padding-bottom: 27px;
  border-bottom: 1px solid #000000;
  margin-bottom: 32px;
}

.section-heading span {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2%;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 4px;
}

.section-heading h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 500;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  letter-spacing: 0.2%;
  max-width: 1009px;
}

.our-promise-swiper {
  margin-bottom: 24px;
}

.our-promise-swiper img {
  width: 100%;
  height: 452px;
  object-fit: cover;
  display: block;
}

.our-promise-tabs-swiper {
  width: 100%;
  overflow: hidden;
}

.tab-item {
  /* border-top: 3px solid #d9d9d9; */
  padding-top: 16px;
  cursor: pointer;
  transition: 0.3s;
  min-height: 133px;
  /* height: auto; */
  padding-bottom: 16px;
  position: relative;
}

.tab-item h3 {
  font-size: 22px;
  margin-bottom: 16px;
  font-family: "Nohemi", sans-serif;
  font-weight: 500;
  line-height: 30px;
  color: #000000;
}

.tab-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #d9d9d9;
}

.tab-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: black;
  z-index: 2;
}

.tab-item p {
  font-size: 14px;
  line-height: 20px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  color: #6b7280;
}

.tab-item.active::after {
  width: 100%;
  transition: all 0.3s ease;
}

.tab-item.active h3 {
  color: #000;
}

.food-banner {
  width: 100%;
  padding-top: 104px;
  padding-bottom: 80px;
  overflow: hidden;
}

.food-banner-wrapper {
  position: relative;
  height: 60vh;
  min-height: 560px;
  border-radius: 14px;
  overflow: hidden;

  /* Replace with your image */
  background: url("/images/foodProductsimg.webp") center center/cover no-repeat;

  display: flex;
  align-items: center;
}

.food-banner-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;

  background-color: black;
  opacity: 0.4;
}

.food-banner-content {
  position: relative;
  z-index: 2;
  padding-left: 51px;
}

.food-banner-content h1 {
  font-size: 64px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: "Nohemi", sans-serif;
}

.food-banner-content p {
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: "Nohemi", sans-serif;
  max-width: 577px;
  width: 100%;
}

.food-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: #f97316;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  transition: 0.3s ease;
  letter-spacing: 0.2%;
  border: solid 1px transparent;
  cursor: pointer;
}

.food-banner-btn:hover {
  background-color: transparent;
  border-color: #f97316;
  color: #f97316;
  transition: all 0.5s ease-in-out;
}

.food-banner-outer {
  padding: 0px 60px;
}

/* =========================================
   PRODUCTS SECTION
========================================= */
.products-section {
  overflow: hidden;
}

.slider-products-outer {
  padding: 80px 60px;
}

.slider-products-heading {
  margin-bottom: 40px;
}

.slider-product-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  margin-bottom: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e5e7eb;
}

.slider-products-heading h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 24px;
  max-width: 400px;
  width: 100%;
  font-family: "Nohemi", sans-serif;
}

.slider-products-heading p {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  max-width: 700px;
}

/* =========================================
   TOP BAR
========================================= */

.slider-products-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: #f97316;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Nohemi", sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-wrapper span {
  font-size: 13px;
  font-weight: 500;
  line-height: 12px;
  color: #000000;
  font-family: "Nohemi", sans-serif;
}

/* Custom Dropdown */

.custom-dropdown {
  position: relative;
  width: 150px;
}

.dropdown-selected {
  height: 44px;
  background: #f97316;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 14px;
  cursor: pointer;
}

.dropdown-selected svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-selected svg {
  transform: rotate(180deg);
}

.selected-text {
  font-size: 12px !important;
  font-weight: 400 !important;
  font-family: "Nohemi", sans-serif !important;
  color: #ffffff !important;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dropdown-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.custom-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;

  width: 100%;

  background: #f97316;

  list-style: none;
  margin: 0;
  padding: 0;

  display: none;
  z-index: 100;
}

.custom-dropdown.active .dropdown-list {
  display: block;
}

.dropdown-list li {
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  padding: 12px 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.dropdown-list li:hover {
  background-color: white;
  color: #f97316;
  transition: all 0.3s ease-in-out;
}

/* =========================================
   PRODUCT GRID
========================================= */

.slider-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 20px;
}

.slider-product-card {
  position: relative;
  text-align: center;
}

.slider-product-image {
  width: 100%;
  height: 280px;
  background: #efefef;
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e5eaf0;
}

.slider-product-image img {
  width: 142px;
  height: 231px;
  object-fit: contain;
  display: block;
}

.slider-product-image:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

/* Badge */

.slider-product-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #8b8b8b;
  color: #ffffff;
  padding: 9px 24px;
  font-size: 10px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  z-index: 2;
}

/* Product Title */

.slider-product-card h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 12px;
  font-family: "Nohemi", sans-serif;
}

/* Price */

.price-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.price-box del {
  color: #6b7280;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nohemi", sans-serif;
}

.price-box span {
  color: #000000;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nohemi", sans-serif;
}

/* =========================================
   FOOTER
========================================= */

.slider-products-footer {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================================
   PAGINATION
========================================= */

.custom-pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  align-items: center;
}

.custom-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  margin: 0 !important;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #f97316;
  background: #ffffff;

  border-radius: 0;
  opacity: 1;

  color: #000000;
  font-size: 10px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;

  transition: 0.3s ease;
}

.custom-pagination .swiper-pagination-bullet-active {
  background: #f97316;
  border-color: white;
  color: #ffffff;
}

/* =========================================
   NAVIGATION
========================================= */

.slider-products-navigation {
  display: flex;
  align-items: center;
  gap: 1px;
  overflow: hidden;
}

.slider-products-navigation .swiper-button-prev,
.slider-products-navigation .swiper-button-next {
  position: static;
  margin: 0 !important;

  width: 40px;
  height: 40px;

  background: #f97316;
  color: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease-in-out;
}

.slider-products-navigation .swiper-button-prev:hover,
.slider-products-navigation .swiper-button-next:hover {
  background: #f97316;
}

/* Hide default swiper arrows */

.slider-products-navigation .swiper-button-prev::after,
.slider-products-navigation .swiper-button-next::after {
  display: none;
}

/* SVG Icons */

.slider-products-navigation .swiper-button-prev svg,
.slider-products-navigation .swiper-button-next svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.product-detail-section {
  padding-top: 104px;
  padding-bottom: 80px;
}

.product-detail-section {
  overflow: hidden;
}

.product-details-outer {
  padding-left: 60px;
  padding-right: 60px;
}

.product-detail-wrapper {
  background-color: #f8f8f8;
  padding: 26px 24px;
}

/* Top Layout */

.product-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 54px;
  align-items: center;
}

.product-details-image {
  width: 100%;
  height: 100%;
  background: white;
  aspect-ratio: 1/1;
  overflow: hidden;
  box-shadow: 0px 0px 2px 2px #0f172a0d;
  position: relative;
}

.product-details-image .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.product-details-image img {
  width: 308px;
  height: 502px;
  object-fit: contain;
}

/* Custom styles for Swiper Navigation/Pagination in Product Details */
.product-details-image .swiper-button-prev,
.product-details-image .swiper-button-next {
  color: #f97316;
}

.product-details-image .swiper-button-prev::after,
.product-details-image .swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}

.product-details-image .swiper-pagination-bullet-active {
  background: #f97316;
}

/* Content */

.product-details-category {
  font-size: 12px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  line-height: 16px;
  color: #6b7280;
  display: block;
  margin-bottom: 8px;
}

.product-details-content h2 {
  font-size: 40px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  line-height: 52px;
  color: #000000;
  margin-bottom: 14px;
}

.product-description {
  font-size: 14px;
  line-height: 20px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;

  color: #6b7280;
  margin-bottom: 24px;
  max-width: 550px;
  width: 100%;
  text-align: justify;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.old-price {
  text-decoration: line-through;
  color: #6b7280;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;

  font-family: "Nohemi", sans-serif;
}

.new-price {
  text-decoration: none;
  color: #000000;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;

  font-family: "Nohemi", sans-serif;
}

/* Size */

.product-size {
  margin-bottom: 25px;
}

.product-size button {
  border-top: solid 0.3px;
  border-right: solid 0.3px;
  border-bottom: solid 2px;
  border-left: solid 1px;
  border-color: #8f8d8d;
  padding: 14px 15px;
  cursor: pointer;
  background-color: white;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 12.39px;
  color: #000000;
}

/* Meta */

.product-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  line-height: 16px;
  color: #000000;
}

.product-meta span+span {
  display: flex;
  align-items: center;
  gap: 2px;
}

.product-meta span+span svg {
  width: 8px;
  height: 8px;
}

/* Quantity & Cart */

.product-cart {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.product-cart form {
  display: flex;
  width: 100%;
}

.quantity-box {
  display: flex;
  align-items: center;
  border: 1px solid #b6acac;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #000000;
}

.quantity-box button {
  width: 48.5px;
  height: 65px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.quantity-box span {
  width: 40px;
  text-align: center;
}

.cart-btn {
  flex: 1;
  background-color: #f97316;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  border: solid 1px transparent;
}

.cart-btn:hover {
  background-color: transparent;
  color: #f97316;
  border-color: #f97316;
  transition: all 0.3s ease-in-out;
}

.buy-btn {
  width: 100%;
  height: 65px;
  border: none;
  background: #f97316;
  color: #ffffff;
  cursor: pointer;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  text-transform: capitalize;
  border: 1px solid transparent;
}

.buy-btn:hover {
  background-color: transparent;
  color: #f97316;
  border-color: #f97316;
  transition: all 0.3s ease-in-out;
}

/* Tabs */

.tab-buttons-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 32px;
}

.tab-buttons {
  display: flex;
  gap: 12px;
  min-width: 520px;
  align-items: center;
}

.tab-buttons button {
  border: none;
  background: transparent;
  cursor: pointer;
  color: #6b7280;
  padding-bottom: 5px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
}

.tab-buttons button.active {
  color: #000000;
  border-bottom: 1px solid #000000;
}

.tab-buttons button span {
  padding-left: 5px;
}

.tab-content h4 {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #000000;
  font-family: "Nohemi", sans-serif;
}

.tab-content ol {
  padding-left: 18px;
}

.tab-content li {
  margin-bottom: 18px;
  color: #555;
  line-height: 1.7;
  font-size: 14px;
}

.tab-pane p {
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Nohemi", sans-serif;
  color: #000000;
  margin-bottom: 5px;
}

.tab-content ol li p {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Nohemi", sans-serif;
  color: #000000;
}

.tab-content li ol span {
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  font-family: "Nohemi", sans-serif;
  color: #6b7280;
}

.related-products-section {
  overflow: hidden;
}

.related-products-outer {
  padding: 80px 60px;
}

.related-products-wrapper h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 60px;
  color: #000000;
  margin-bottom: 24px;
  font-family: "Nohemi", sans-serif;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.related-product-card {
  width: 100%;
}

.related-product-image {
  position: relative;
  background: #f8f9fb;
  border: solid 1px #e5eaf0;
  height: 307px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.related-product-image img {
  width: 167px;
  height: 267px;
  object-fit: contain;
  transition: 0.4s ease;
}

.related-product-card:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.product-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #8b8b8b;
  color: #ffffff;
  padding: 9px 24px;
  font-size: 10px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  z-index: 1;
}

.related-product-content {
  text-align: center;
  padding-top: 12px;
}

.related-product-content h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 12px;
  font-family: "Nohemi", sans-serif;
}

.related-product-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.old-price {
  color: #6b7280;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nohemi", sans-serif;
}

.new-price {
  color: #000000;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nohemi", sans-serif;
}

/* ==========================
   CONTACT BANNER
========================== */

.contact-banner-outer {
  padding-left: 60px;
  padding-right: 60px;
}

.contact-banner-section {
  padding-top: 104px;
  padding-bottom: 80px;
  overflow: hidden;
}

.contact-banner-wrapper {
  height: 60vh;
  min-height: 560px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;

  background-image: url("/images/contact-banner.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-banner-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: black;
  opacity: 0.4;
}

.contact-banner-content {
  z-index: 1;
  padding-left: 60px;
}

.contact-banner-content h1 {
  font-size: 64px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: "Nohemi", sans-serif;
}

.contact-banner-content p {
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: "Nohemi", sans-serif;
  max-width: 577px;
  width: 100%;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: #f97316;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.2%;
  border: solid 1px transparent;
}

.contact-btn:hover {
  background: transparent;
  color: #f97316;
  border-color: #f97316;
}

.contact-section {
  overflow: hidden;
}

.contact-section-outer {
  padding: 80px 60px;
  background: #fff;
}

.contact-us-wrapper {
  display: grid;
  grid-template-columns: 1fr 546px;
  gap: 40px;
  align-items: start;
}

/* Left Content */

.contact-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  font-family: "Nohemi", sans-serif;
  margin-bottom: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid #e5e7eb;
}

.contact-content h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 24px;
  font-family: "Nohemi", sans-serif;
  max-width: 695px;
  width: 100%;
}

.contact-content>p {
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  max-width: 700px;
  margin-bottom: 100px;
}

/* Contact Info Grid */

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.contact-info-grid-wrapper {
  width: 538px;
  margin-left: auto;
  margin-right: auto;
}

.info-item h3 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 12px;
  font-family: "Nohemi", sans-serif;
}

.info-item p,
.info-item li {
  font-size: 14px;
  color: #6b7280;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  line-height: 20px;
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: baseline;
}

.info-item li a {
  color: #6b7280;
  text-decoration: none;
}

.info-item li a:hover {
  color: #f97316;
  transition: all 0.3s ease-in-out;
}

.info-item p,
.info-item li span {
  display: flex;
  height: fit-content;
}

.info-item p span {
  display: flex;
  height: fit-content;
}

.info-item ul {
  padding: 0;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: flex;
  color: black;
}

.social-icons a:hover {
  color: #f97316;
  transition: all 0.3s ease-in-out;
}

/* Form */

.contact-form-box {
  background: #f8f8f8;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 27px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-box h3 {
  font-size: 27px;
  font-weight: 600;
  font-family: "Nohemi", sans-serif;
  color: #224056;
  line-height: 35px;
  margin-bottom: 10px;
}

.contact-form-box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  font-family: "Nohemi", sans-serif;
  color: #8f8d8d;
  margin-bottom: 25px;
  border-bottom: 1px solid #8f8d8d;
  padding-bottom: 4px;
  width: fit-content;
}

.contact-us-form-group {
  margin-bottom: 18px;
}

.contact-us-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  line-height: 17px;
  color: #374151;
  margin-bottom: 5px;
}

.contact-us-form-group input,
.contact-us-form-group textarea,
.phone-input select {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  background: #fff;
  padding: 10px 13px;
  font-size: 13px;
  font-family: "Nohemi", sans-serif;
  outline: none;
}

.contact-us-form-group textarea {
  resize: none;
}

.phone-input {
  display: flex;
  gap: 10px;
}

.custom-select,
.checkout-custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
  user-select: none;
  margin-bottom: 6px;
}

.custom-select {
  margin-bottom: 0px !important;
}

.custom-select-trigger,
.checkout-custom-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 13px;
  font-size: 13px;
  font-family: "Nohemi", sans-serif;
  color: #374151;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger,
.checkout-custom-select-trigger:hover,
.checkout-custom-select.open .checkout-custom-select-trigger {
  border-color: #d1d5db;
}

.selected-code {
  font-weight: 500;
  flex-grow: 1;
  margin-right: 6px;
}

/* Contact page arrow */
.custom-select-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
}

/* Contact page dropdown options */
.custom-options {
  position: absolute;
  display: block;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 250px;
  overflow-y: auto;
  padding: 6px;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Contact page option items */
.custom-option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  font-size: 13px;
  font-family: "Nohemi", sans-serif;
  color: #4b5563;
  cursor: pointer;
}

/* Contact page dropdown options */
.country-code-options {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  top: calc(100% + 5px);
  left: 0;
  width: max-content;
  min-width: 180px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 250px;
  overflow-y: auto;
  padding: 6px;
}

.custom-select.open .country-code-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Contact page option items */
.country-code-option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  font-size: 13px;
  font-family: "Nohemi", sans-serif;
  color: #4b5563;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.country-code-option:hover {
  background: #f97316;
  color: white;
}

.country-code-option.selected {
  background: #f97316;
  color: white;
  font-weight: 500;
}

.country-code-option .country-name {
  flex-grow: 1;
  font-size: 12px;
  text-align: left;
  margin-right: 12px;
}

.country-code-option .code {
  font-weight: 500;
  color: #9ca3af;
}

.country-code-option.selected .code {
  color: #f97316;
}

.country-code-options::-webkit-scrollbar {
  width: 5px;
}

.country-code-options::-webkit-scrollbar-track {
  background: transparent;
}

.country-code-options::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 10px;
}

.country-code-options::-webkit-scrollbar-thumb:hover {
  background: #d1d5db;
}

/* Checkout dropdown arrow and selections styling */
.checkout-custom-select-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.checkout-custom-select.open .checkout-custom-select-arrow {
  transform: rotate(180deg);
}

.checkout-custom-options {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 250px;
  overflow-y: auto;
  padding: 6px;
}

.checkout-custom-select.open .checkout-custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.checkout-custom-option {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  font-size: 13px;
  font-family: "Nohemi", sans-serif;
  color: #4b5563;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.checkout-custom-option:hover {
  background: #f97316;
  color: white;
}

.checkout-custom-option.selected {
  background: #f97316;
  color: white;
  font-weight: 500;
}

.checkout-custom-option .country-name {
  flex-grow: 1;
  font-size: 12px;
  text-align: left;
}

.checkout-custom-option .code {
  font-weight: 500;
  color: #9ca3af;
}

.checkout-custom-option.selected .code {
  color: #f97316;
}

.checkout-custom-options::-webkit-scrollbar {
  width: 5px;
}

.checkout-custom-options::-webkit-scrollbar-track {
  background: transparent;
}

.checkout-custom-options::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 10px;
}

.checkout-custom-options::-webkit-scrollbar-thumb:hover {
  background: #d1d5db;
}

.phone-input input {
  flex: 1;
}

.contact-form-box button {
  background: #f97316;
  color: #ffffff;
  border: none;
  border-radius: 11px;
  padding: 14px 24px;
  font-size: 13px;
  font-family: "Nohemi", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 5px;
  border: solid 1px transparent;
}

.contact-form-box button span {
  display: flex;
}

.contact-form-box button:hover span svg {
  color: #f97316;
  transition: all 0.3s ease-in-out;
}

.contact-form-box button:hover {
  background-color: transparent;
  border-color: #f97316;
  color: #f97316;
}

.cart-section {
  padding-top: 104px;
  padding-bottom: 80px;
  overflow: hidden;
}

.cart-section-outer {
  padding-left: 60px;
  padding-right: 60px;
}

.cart-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.cart-header h2 {
  font-size: 36px;
  line-height: 60px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
  color: #000000;
}

.cart-header a {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #6b7280;
}

.cart-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
}

table.cart-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 1100px;
}

.cart-table thead {
  background: #f4f4f4;
}

table.cart-table th {
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #000000;
  letter-spacing: 0.2%;
  text-align: left;
  vertical-align: middle;
}

table.cart-table th:first-child {
  padding-left: 30px;
}

table.cart-table td:first-child {
  padding-left: 0px;
}

table.cart-table th:last-child,
table.cart-table td:last-child {
  padding-right: 30px;
}

table.cart-table td {
  padding: 20px 20px;
  vertical-align: middle;
  font-family: "Nohemi", sans-serif;
  color: #000000;
}

.col-product {
  width: 42.8%;
}

.col-price {
  width: 14.3%;
}

.col-qty {
  width: 17.1%;
}

.col-total {
  width: 14.3%;
}

.col-remove {
  width: 11.5%;
}

.cart-item {
  border-bottom: 1px solid #f4f4f4;
}

.product-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-product-image {
  width: 149px;
  height: 167px;
  border: 1px solid #e5eaf0;
  background-color: #f8f9fb;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.cart-product-image img {
  width: 84px;
  height: 137px;
  object-fit: contain;
}

.cart-product-image:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.cart-product-content h3 {
  font-size: 22px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
  color: #000000;
  line-height: 30px;
  letter-spacing: 0.2%;
  margin-bottom: 14px;
}

.cart-product-content p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #6b7280;
  margin-bottom: 14px;
  letter-spacing: 0.2%;
}

.cart-product-content p span {
  color: #000000;
  font-weight: 600;
}

.cart-product-content span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  color: #6b7280;
  font-family: "Nohemi", sans-serif;
}

.cart-product-price,
.cart-product-total {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2%;
  font-family: "Nohemi", sans-serif;
  color: #000000;
}

.cart-remove-product a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2%;
  font-family: "Nohemi", sans-serif;
  color: #8f8d8d;
  text-decoration: none;
  border-bottom: 1px solid #8f8d8d;
}

.cart-quantity-box {
  display: flex;
  align-items: center;
  border: 1px solid #b6acac;
  gap: 22px;
  width: fit-content;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2%;
  font-family: "Nohemi", sans-serif;
  color: #000000;
  padding: 20px 32px;
}

.cart-quantity-box button {
  border: none;
  background: transparent;
  cursor: pointer;
}

.remove-product a {
  color: #9ca3af;
  text-decoration: underline;
}

.cart-bottom {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 484px;
  gap: 30px;
  align-items: stretch;
}

.special-instructions {
  display: flex;
  flex-direction: column;
}

.special-instructions label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;

  font-family: "Nohemi", sans-serif;
  color: #374151;
}

.special-instructions textarea {
  width: 100%;
  flex: 1;
  border: 1px solid #e5e7eb;
  background-color: #f4f4f4;
  border-radius: 10px;
  padding: 15px;
  resize: none;
  outline: none;
  font-size: 13px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  margin-bottom: 0px !important;
}

.cart-summary {
  background: #f4f4f4;
  padding: 32px;
  border-radius: 10px;
}

.discount-box {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  padding: 12px 0px;
}

.discount-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 10px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  letter-spacing: 0.2%;
  user-select: none;
}

.discount-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.discount-box.open .discount-arrow {
  transform: rotate(180deg);
}

.cart-discount-form {
  display: none;
  gap: 10px;
  margin-top: 15px;
}

.discount-box.open .cart-discount-form {
  display: flex;
}

.cart-discount-form input {
  width: 100%;
  height: 42px;
  border: none;
  padding: 17px 13px;
  font-size: 10px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #6b7280;
  outline: none;
}

.cart-discount-form input::placeholder {
  color: #6b7280;
}

.cart-discount-form button {
  background: #f97316;
  color: #ffffff;
  border: none;
  padding: 13px 41px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  border: 1px solid transparent;
}

.cart-discount-form button:hover {
  background-color: transparent;
  color: #f97316;
  border-color: #f97316;
  transition: all 0.3s ease-in-out;
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  margin-top: 12px;
}

.subtotal-row span {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.2%;
  font-family: "Nohemi", sans-serif;
  color: #000000;
}

.subtotal-row span+span {
  font-weight: 400;
}

.checkout-btn {
  width: 100%;
  height: 42px;
  background: #000000;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  line-height: 42px;
  text-align: center;
  padding: 0;
  border: 1px solid transparent;
}

.checkout-btn:hover {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
  transition: all 0.3s ease-in-out;
}

.checkout-section {
  padding-top: 104px;
  padding-bottom: 80px;
  overflow: hidden;
}

.checkout-section-outer {
  padding-left: 80px;
  padding-right: 80px;
}

.checkout-wrapper {
  display: grid;
  grid-template-columns: 1fr 514px;
  gap: 20px;
  align-items: start;
}

/* LEFT */

.checkout-form {
  background: #f8f8f8;
  padding: 32px;
}

.checkout-group h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Nohemi", sans-serif;
  margin-bottom: 6px;
  color: #374151;
}

.checkout-input-field-wrapper {
  margin-bottom: 24px;
}

.billing-address-wrapper input,
select {
  margin-bottom: 6px;
}

.checkout-phone-field {
  margin-bottom: 0px !important;
}

.checkout-form input,
.three-column .checkout-custom-select-trigger,
.checkout-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  padding: 22px 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Nohemi", sans-serif;
  color: #8f8d8d;
  /* margin-bottom: 16px; */
  outline: none;
}

.checkout-form input::placeholder {
  color: #8f8d8d;
}

.checkout-form select::placeholder {
  color: #8f8d8d;
}

.checkout-form textarea::placeholder {
  color: #8f8d8d;
}

.checkout-form textarea {
  height: 90px;
  resize: none;
  padding-top: 14px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.three-column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.payment-box {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 10px;

  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 22px 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Nohemi", sans-serif;
  color: #8f8d8d;
}

.payment-box img {
  height: 27px;
  width: 123px;
  object-fit: contain;
}

.payment-info {
  margin-top: 6px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 22px 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Nohemi", sans-serif;
  color: #8f8d8d;
}

.privacy-text {
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  font-family: "Nohemi", sans-serif;
  color: #000000;
  margin-bottom: 12px;
  margin-top: 12px;
}

.place-order-btn {
  width: 100%;
  padding: 23px 0px;
  border: none;
  border-radius: 10px;
  background: #4ab31c;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Nohemi", sans-serif;
  cursor: pointer;
  border: 1px solid transparent;
}

.place-order-btn:hover {
  background-color: transparent;
  color: #4ab31c;
  border-color: #4ab31c;
  transition: all 0.3s ease-in-out;
}

/* RIGHT */
.order-summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.order-summary h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 60px;
  font-family: "Nohemi", sans-serif;
  color: #000000;
  margin-bottom: 12px;
}

.checkout-cart-product {
  display: flex;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5eaf0;
  margin-bottom: 12px;
  flex-direction: column;
}

.cart-product-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

.checkout-cart-product-image {
  width: 180px;
  height: 187px;
  border: 1px solid #e5eaf0;
  background-color: #f8f9fb;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.checkout-cart-product-image img {
  width: 95px;
  height: 154px;
  object-fit: contain;
}

.checkout-cart-product-image img:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.checkout-cart-product-content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Nohemi", sans-serif;
  color: #000000;
  margin-bottom: 12px;
}

.checkout-cart-product-content h4 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #000000;
}

.checkout-cart-product-content p {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nohemi", sans-serif;
  color: #6b7280;
  letter-spacing: 0.2%;
  margin-bottom: 12px;
}

.checkout-cart-product-content span {
  color: #000000;
}

.coupon-area {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.coupon-area input {
  flex: 1;
  padding: 17px 0px;
  border: none;
  border-bottom: 1px solid #e5eaf0;
  outline: none;
  font-size: 12px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #8f8d8d;
}

.coupon-area input::placeholder {
  color: #8f8d8d;
}

.coupon-area button {
  width: 203px;
  font-size: 14px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  border: none;
  background: #f7931a;
  color: #fff;
  cursor: pointer;
  border: 1px solid transparent;
}

.coupon-area button:hover {
  background-color: transparent;
  color: #f7931a;
  border-color: #f7931a;
  transition: all 0.3s ease-in-out;
}

.summary-row,
.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 17px 0px;

  border-bottom: 1px solid #e5eaf0;
}

.summary-row {
  font-size: 14px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
  color: black;
}

.summary-total {
  font-size: 18px;
  font-weight: 600;
  font-family: "Nohemi", sans-serif;
  color: #000000;
}

/* =========================================
   FILTER PANEL & OVERRIDES
========================================= */

.filter-wrapper {
  position: relative;
  display: inline-block;
}

.filter-panel {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 340px;
  background: #ffffff;
  /* border: 1px solid #111111; */
  padding: 24px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  font-family: "Nohemi", sans-serif;
  color: #000000;
}

.filter-panel.active {
  display: block;
  animation: filterFadeIn 0.2s ease-out;
}

@keyframes filterFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-header {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.filter-close-btn {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  font-family: "Nohemi", sans-serif;
}

.filter-close-btn:hover {
  color: #f97316;
  transition: all 0.3s ease-in-out;
}

.filter-section {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.filter-section h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: #000000;
  text-transform: uppercase;
  font-family: "Nohemi", sans-serif;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #111111;
  user-select: none;
  font-family: "Nohemi", sans-serif;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  background-color: #ffffff;
  border: 1px solid #111111;
  transition: all 0.2s ease;
}

.checkbox-container:hover input~.checkmark {
  background-color: #f4f4f4;
}

.checkbox-container input:checked~.checkmark {
  background-color: #f97316;
  border-color: #f97316;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked~.checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.reset-section-btn {
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 500;
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0;
  margin-top: 8px;
  transition: color 0.2s ease;
  font-family: "Nohemi", sans-serif;
  text-decoration: none;
}

.reset-section-btn:hover {
  color: #f97316;
  transition: all 0.3s ease-in-out;
}

.slider-container {
  padding: 10px 8px;
  margin-bottom: 20px;
}

.price-inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.price-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f4f4f4;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
}

.price-input-wrapper span {
  font-size: 14px;
  color: #6b7280;
  margin-right: 4px;
}

.price-input-wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: "Nohemi", sans-serif;
  color: #000000;
  -moz-appearance: textfield;
}

.price-input-wrapper input::-webkit-outer-spin-button,
.price-input-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price-separator {
  width: 10px;
  height: 1px;
  background: #6b7280;
}

.filter-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.apply-filters-btn {
  width: 100%;
  background-color: #f97316;
  color: #ffffff;
  border: solid 1px transparent;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Nohemi", sans-serif;
}

.apply-filters-btn:hover {
  background-color: transparent;
  border-color: #f97316;
  color: #f97316;
  transition: all 0.3s ease-in-out;
}

.clear-all-btn {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  font-family: "Nohemi", sans-serif;
  text-decoration: none;
}

.clear-all-btn:hover {
  color: #f97316;
  transition: all 0.3s ease-in-out;
}

/* noUiSlider Overrides */
#slider {
  height: 4px;
  border: none;
  background: #e5e7eb;
  box-shadow: none;
}

#slider .noUi-connect {
  background: #f97316;
}

#slider .noUi-handle {
  width: 16px;
  height: 16px;
  border: 3px solid #f97316;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: none;
  right: -8px;
  top: -6px;
  cursor: pointer;
  transition: transform 0.1s ease;
}

#slider .noUi-handle:before,
#slider .noUi-handle:after {
  display: none;
}

#slider .noUi-handle:hover {
  transform: scale(1.25);
}

/* No Products Message */
.no-products-message {
  width: 100%;
  padding: 80px 20px;
  text-align: center;
  font-family: "Nohemi", sans-serif;
}

.no-products-message h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #111111;
}

.no-products-message p {
  font-size: 14px;
  color: #6b7280;
}

/* Badge styling for out of stock */
.slider-product-badge.out-of-stock {
  background: #ef4444;
  /* Premium red for out of stock */
}

/* .login-modal,
.signup-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  padding: 10px;
} */

.login-modal.active,
.signup-modal.active {
  opacity: 1;
  visibility: visible;
}

.login-popup,
.signup-popup {
  max-width: 960px;
  width: 100%;
  background: #fff;
  border-radius: 34px;
  padding: 64px;
  display: flex;
  gap: 40px;
  position: relative;
  align-items: center;
  height: calc(100vh - 40px);
}

.login-left input,
.signup-left input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d4d7e3;
  border-radius: 4px;
  background-color: #f4f4f4;
  color: #8897ad;
  font-family: "Nohemi", sans-serif;
  font-size: 13px;
  font-weight: 400;
  outline: none !important;
  letter-spacing: 1%;
}

.login-left input::placeholder,
.signup-left input::placeholder {
  color: #999 !important;
}



.login-left button,
.signup-left button {
  width: 100%;
  padding: 13px;
  background: #f97316;
  color: #f3f3f3;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
}

.login-right img,
.signup-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px !important;
}

/* .close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
} */

/* =========================================
   LOGIN MODAL
========================================= */

.login-modal,
.signup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  padding: 20px;
}

.login-modal.active,
.signup-modal.active {
  opacity: 1;
  visibility: visible;
}

.login-modal.active .login-popup,
.signup-modal.active .signup-popup {
  transform: translateY(0);
}


.close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  color: #313131;
}

/* .close-modal:hover {
  background: #fff;
  transform: scale(1.1);
} */

.login-left,
.signup-left {
  flex: 1;
  max-height: 100%;
  overflow-y: auto;
  padding-right: 10px;
}


/* Custom scrollbar for .login-left */
.login-left::-webkit-scrollbar,
.signup-left::-webkit-scrollbar {
  width: 6px;
}

.login-left::-webkit-scrollbar-track,
.signup-left::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 4px;
}

.login-left::-webkit-scrollbar-thumb,
.signup-left::-webkit-scrollbar-thumb {
  background: #d4d7e3;
  border-radius: 4px;
}

.login-left::-webkit-scrollbar-thumb:hover,
.signup-left::-webkit-scrollbar-thumb:hover {
  background: #8897ad;
}

.login-right,
.signup-right {
  flex: 1;
  position: relative;
  height: 100%;
}



.login-left h2,
.signup-left h2 {
  font-family: "Nohemi", sans-serif;
  font-size: 27px;
  font-weight: 600;
  color: #313131;
  margin-bottom: 11px;
}

.login-subtext,
.signup-subtext {
  font-family: "Nohemi", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #313131;
  margin-bottom: 24px;
}

.login-form,
.signup-form {
  width: 100%;
}

.login-form .form-group,
.signup-form .form-group {
  margin-bottom: 16px;
  gap: 0px;
}

.login-form .form-group label,
.signup-form .form-group label {
  display: block;
  font-family: "Nohemi", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #0c1421;
  margin-bottom: 8px;
}

.login-form .form-group input,
.signup-form .form-group input {
  width: 100%;
  padding: 13px 16px;
  background: #f7f7f7 !important;
  border: 1px solid #D4D7E3 !important;
  border-radius: 4px !important;
  font-family: "Nohemi", sans-serif !important;
  font-size: 11px !important;
  font-weight: 400;
  color: #8897AD !important;
  outline: none !important;

}


.login-form-row,
.signup-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.remember-me {
  display: flex;
  align-items: center;
  /* gap: 8px; */
  font-family: "Nohemi", sans-serif;
  font-size: 12px;
  color: #111;
  cursor: pointer;
}

.remember-me input {
  display: none;
}

.custom-checkbox {
  width: 16px;
  height: 16px;
  border: 1.33px solid #313131;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  margin-right: 5px;
}

.remember-me input:checked+.custom-checkbox::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-password {
  font-family: "Nohemi", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #FF8682;
  cursor: pointer;
  text-decoration: none;
}

.back-to-forgot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  text-decoration: none;
  color: #313131;
  font-size: 10px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
}

.back-to-forgot:hover {
  color: #ff8682;
}

.back-to-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  text-decoration: none;
  color: #313131;
  font-size: 10px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
}

.back-to-login:hover {
  color: #ff8682;
}

.signup-link {
  text-align: center;
  font-family: "Nohemi", sans-serif;
  font-size: 10px;
  color: #313131;
  font-weight: 500;
  margin-bottom: 32px;
}

.signup-link a {
  color: #ff8682;
  text-decoration: none;
}

.login-divider,
.signup-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  position: relative;
}

.login-divider::before,
.login-divider::after,
.signup-divider::before,
.signup-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #313131;
}

.login-divider span,
.signup-divider span {
  padding: 0 11px;
  font-family: "Nohemi", sans-serif;
  font-size: 10px;
  color: #313131;
  font-weight: 400;
}

.social-login {
  display: flex;
  gap: 11px;
}

.social-login .social-btn {
  flex: 1;
  padding: 11px 0px;
  background: transparent !important;
  border: 1px solid #3869eb !important;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 0px !important;
}

.social-btn:hover {
  background: #f7f9fc;
}

/* Sign Up Form Specifics */
.form-row-2 {
  display: flex;
  gap: 16px;
  width: 100%;
}

.form-row-2 .form-group {
  flex: 1;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon input {
  width: 100%;
  padding-right: 40px;
  /* Space for the icon */
}

.input-with-icon i {
  position: absolute;
  right: 16px;
  color: #313131;
  font-size: 14px;
  cursor: pointer;
}

.text-highlight {
  color: #ff8682;
  text-decoration: none;
}

.text-highlight:hover {
  text-decoration: underline;
}


/* =========================================
   FORGOT PASSWORD MODAL
========================================= */

.forgot-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  padding: 20px;
}

.forgot-modal.active {
  opacity: 1;
  visibility: visible;
}

.forgot-popup {
  max-width: 960px;
  width: 100%;
  background: #fff;
  border-radius: 34px;
  padding: 64px;
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  height: 95vh;
}

.forgot-left {
  flex: 1;
  max-height: 100%;
  overflow-y: auto;
}

.forgot-right {
  flex: 1;
  height: 100%;
}

.forgot-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.forgot-left h2 {
  font-family: "Nohemi", sans-serif;
  font-size: 27px;
  font-weight: 600;
  color: #313131;
  margin-bottom: 11px;
}

.forgot-subtext {
  font-family: "Nohemi", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #313131;
  margin-bottom: 24px;

}

.forgot-form .form-group {
  margin-bottom: 24px;
  gap: 0px;
}

.forgot-form .form-group label {
  display: block;
  font-family: "Nohemi", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #0c1421;
  margin-bottom: 8px;
}

.forgot-form input {
  width: 100%;
  padding: 13px 16px;
  background: #f7f7f7 !important;
  border: 1px solid #D4D7E3 !important;
  border-radius: 4px !important;
  font-family: "Nohemi", sans-serif !important;
  font-size: 11px !important;
  font-weight: 400;
  color: #8897AD !important;
  outline: none !important;
}

.forgot-form input::placeholder {
  color: #8897AD !important;
}

.forgot-submit-btn {
  width: 100%;
  padding: 13px;
  background: #f97316;
  color: #f3f3f3;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.forgot-submit-btn:hover {
  opacity: 0.9;
}

.verify-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;

  opacity: 0;
  visibility: hidden;
  transition: .3s;
  padding: 20px;
}

.verify-modal.active {
  opacity: 1;
  visibility: visible;
}

.verify-popup {
  max-width: 960px;
  width: 100%;
  background: #fff;
  border-radius: 34px;
  padding: 64px;
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  height: 95vh;
}

.verify-left {
  flex: 1;
  max-height: 100%;
  overflow-y: auto;
}

.verify-right {
  flex: 1;
  height: 100%;
}

.verify-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.verify-left h2 {
  font-family: "Nohemi", sans-serif;
  font-size: 27px;
  font-weight: 600;
  color: #313131;
  margin-bottom: 11px;
}

.verify-subtext {
  font-family: "Nohemi", sans-serif;
  font-size: 11px;
  color: #313131;
  margin-bottom: 24px;
}

.verify-form .form-group label {
  display: block;
  font-family: "Nohemi", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #0c1421;
  margin-bottom: 8px;
}

.verify-form input {
  width: 100%;
  padding: 13px 16px;
  background: #f7f7f7 !important;
  border: 1px solid #D4D7E3 !important;
  border-radius: 4px !important;
  font-family: "Nohemi", sans-serif !important;
  font-size: 11px !important;
  font-weight: 400;
  color: #8897AD !important;
  outline: none !important;
}

.verify-form input::placeholder {
  color: #8897AD !important;
}

.verify-submit-btn {
  width: 100%;
  padding: 13px;
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.resend-text {
  font-size: 10px;
  margin-bottom: 32px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #313131;
}

.resend-text a {
  color: #FF8682;
  text-decoration: none;
}

.verify-form .form-group {
  gap: 0;
  margin-bottom: 16px;
}


.set-password-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(5px);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 1000;
  padding: 20px;
}

.set-password-modal.active {
  opacity: 1;
  visibility: visible;
}

.set-password-popup {
  max-width: 960px;
  width: 100%;
  background: #fff;
  border-radius: 34px;
  padding: 64px;
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  height: 95vh;
}

.set-password-left {
  flex: 1;
  max-height: 100%;
  overflow-y: auto;
}

.set-password-right {
  flex: 1;
  height: 100%;
}

.set-password-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.set-password-left h2 {
  font-family: "Nohemi", sans-serif;
  font-size: 27px;
  font-weight: 600;
  color: #313131;
  margin-bottom: 11px;
}

.set-password-subtext {
  font-family: "Nohemi", sans-serif;
  font-size: 11px;
  color: #313131;
  margin-bottom: 24px;
}

.set-password-btn {
  width: 100%;
  padding: 13px;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  margin-top: 32px;
}

.set-password-left .form-group {
  margin-bottom: 16px;
  gap: 0px;

}

.set-password-left .form-group label {
  display: block;
  font-family: "Nohemi", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #0c1421;
  margin-bottom: 8px;

}

.set-password-left .form-group input {
  width: 100%;
  padding: 13px 16px;
  background: #f7f7f7 !important;
  border: 1px solid #D4D7E3 !important;
  border-radius: 4px !important;
  font-family: "Nohemi", sans-serif !important;
  font-size: 11px !important;
  font-weight: 400;
  color: #8897AD !important;
  outline: none !important;
}

.set-password-left .form-group input::placeholder {
  color: #8897AD !important;
}

.set-password-left .form-group+.form-group {
  margin-bottom: 0px;
}

@media screen and (max-width: 1270px) {
  .checkout-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .three-column {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .two-column input {
    margin-bottom: 6px;
  }

  .contact-us-wrapper {
    grid-template-columns: 1fr;
  }

  .location-info {
    max-width: 280px;
    width: 100%;
  }

  .contact-info-grid-wrapper {
    margin: 0px;
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .product-image {
    height: 280px;
  }

  .new-arrivals-grid,
  .flavor-grid,
  .approch-us-wrapper {
    grid-template-columns: 1fr;
  }

  .arrivals-left h2 {
    margin-bottom: 20px;
  }

  .feature-card span {
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1150px) {
  .product-details-image {
    height: 400px;
  }



  .product-top {
    grid-template-columns: 1fr;
  }

  .related-products-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .slider-products-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contact-us-wrapper {
    grid-template-columns: 1fr;
  }

  .spices-showcase-wrapper {
    grid-template-columns: 1fr;
  }

  .spices-showcase-image img,
  .spices-showcase-content {
    height: 400px;
  }

  .testimonial-nav {
    position: unset;
    margin-top: 20px;
  }

  .testimonial-image-wrapper img:nth-child(1) {
    height: 350px;
  }

  .testimonial-image-wrapper img:nth-child(2) {
    height: 325px;
  }

  .testimonial-image-wrapper img:nth-child(3) {
    height: 300px;
  }

  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-section-top-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .offer-title {
    font-size: 30px;
    line-height: 40px;
  }

  .offer-grid {
    height: 350px;
  }

  .bs-card-image {
    height: 300px;
  }

  .bs-card-image img {
    height: 200px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .service-card p {
    max-width: 187px;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 1050px) {
  .bs-card-buttons {
    flex-direction: column;
  }
}

@media screen and (max-width: 992px) {
  .footer-section-top-wrapper {
    gap: 40px;
  }

  .checkout-cart-product {
    margin-bottom: 50px;
  }

  .checkout-wrapper {
    grid-template-columns: 1fr;
  }

  .related-products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .special-instructions {
    height: 250px;
  }

  .cart-bottom {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-grid {
    height: unset;
    grid-template-columns: 1fr;
  }

  .offer-left,
  .offer-image,
  .offer-right {
    height: 350px;
  }


  .offer-left,
  .offer-right {
    padding: 10px;
  }

  .shop-btn {
    width: 100%;
  }

  .about-banner-content {
    padding-right: 10px;
  }

  .our-promise-tabs-unused {
    grid-template-columns: 1fr 1fr;
  }

  .our-promise-swiper img {
    height: 380px;
  }
}

@media screen and (max-width: 950px) {

  .order-card,
  .order-product {
    flex-direction: column;
  }

  .order-card {
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .order-product,
  .order-img-wrapper,
  .order-info {
    width: 100% !important;
  }

  .profile-box,
  .address-form-box,
  .danger-box,
  .deactivate-form-col {
    padding: 15px !important;
  }
}

@media screen and (max-width: 768px) {
  .danger-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .deactivate,
  .delete {
    margin-left: auto !important;
  }

  .address-form-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .address-actions {
    margin-left: auto !important;
  }

  .close-modal {
    position: unset;
    margin-left: auto;
  }

  .login-popup,
  .signup-popup,
  .forgot-popup,
  .verify-popup,
  .set-password-popup {
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    gap: 10px;

  }

  .login-left,
  .signup-left,
  .forgot-left,
  .verify-left,
  .set-password-left {
    width: 100%;
    max-height: fit-content;
  }

  .login-right,
  .signup-right,
  .forgot-right,
  .verify-right,
  .set-password-right {
    display: none;
  }

  .product-details-content h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .quantity-box {
    font-size: 16px;
    line-height: 20px;
  }

  .cart-btn,
  .buy-btn {
    font-size: 16px;
  }

  .cart-product-content h3 {
    font-size: 20px;
    line-height: 25px;
  }

  .food-banner-content h1,
  .contact-banner-content h1 {
    font-size: 45px;
    line-height: 48px;
  }

  .cart-header a {
    font-size: 16px;
    line-height: 22px;
  }

  .header-outer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .food-banner-content p,
  .contact-banner-content p {
    font-size: 16px;
    line-height: 22px;
  }

  .footer-section-top-wrapper {
    grid-template-columns: 1fr;
  }

  .approch-us-form-group input,
  textarea {
    padding: 15px 10px;
    font-size: 14px;
  }

  .arrivals-right {
    grid-template-columns: 1fr;
  }

  .bestseller-header-left h2,
  .arrivals-left h2,
  .spice-content h1,
  .flavor-left h2,
  .welcome-wrapper h2,
  .spices-showcase-content h2,
  .approch-us-left h2,
  .section-heading h2,
  .slider-products-heading h2,
  .contact-content h2,
  .related-products-wrapper h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .bestseller-bottom-section-wrapper p,
  .offer-description,
  .offer-right .offer-description,
  .flavor-left p,
  .approch-us-left p {
    font-size: 14px;
    line-height: 20px;
  }

  .welcome-wrapper p,
  .spices-showcase-content p {
    font-size: 16px;
  }

  .slide-title {
    font-size: 40px;
    line-height: 48px;
  }

  .hero-swiper-outer,
  .bestseller-outer,
  .offer-section-outer,
  .new-arrival-outer,
  .spice-outer,
  .flavor-section-outer,
  .service-section-outer,
  .contact-strip-outer,
  .footer-section-outer,
  .testimonial-section-outer,
  .about-banner-outer,
  .welcome-outer,
  .spices-showcase-outer,
  .approch-us-outer,
  .our-promise-outer,
  .slider-products-outer,
  .food-banner-outer,
  .contact-banner-outer,
  .contact-section-outer,
  .cart-section-outer,
  .related-products-outer,
  .product-details-outer,
  .checkout-section-outer,
  .profile-page-outer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .address-header,
  .title-row {
    flex-direction: column !important;
    align-items: start !important;
    gap: 10px !important;
  }

  .location-btn,
  .edit-btn {
    margin-left: auto !important;
  }


  .form-grid,
  .address-grid {
    grid-template-columns: 1fr !important;
  }

  .address-field.full-width {
    grid-column: span 1 !important;
  }

  .cart-product-content h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .slide-content {
    padding-right: 20px;
  }

  .food-banner-content {
    padding-right: 20px;
  }

  .bestseller-bottom-section-wrapper {
    flex-direction: column;
    align-items: start;
  }

  .bestseller-bottom-section-wrapper a {
    margin-left: auto;
  }

  .bestseller-header {
    flex-direction: column;
    align-items: start;
  }

  .mobile-navbar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bestseller-nav {
    margin-left: auto;
  }

  .our-promise-swiper img {
    height: 300px;
  }

  .contact-banner-content {
    padding-right: 20px;
  }

  .tab-item {
    min-height: 110px;
  }

  .tab-item h3 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 8px;
  }

  .slider-products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-item h3 {
    font-size: 28px;
    line-height: 30px;
  }
}

@media screen and (max-width: 640px) {
  .location-popup {
    padding: 30px !important;
  }



  .title-row h2,
  .address-header h2,
  .orders-header h2,
  .delete-account-header h2 {
    font-size: 25px !important;
    line-height: 30px !important;
  }

  .checkout-form {
    padding: 32px 20px;
  }

  .cart-product-wrapper {
    flex-direction: column;
  }

  .place-order-btn {
    padding: 15px 0px;
  }

  .tab-content li {
    font-size: 13px;
  }

  .tab-content ol li p {
    font-size: 14px;
  }

  .tab-buttons button {
    font-size: 16px;
  }

  .tab-content h4 {
    font-size: 15px;
  }

  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .info-item h3 {
    font-size: 25px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .about-banner-content h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .testimonial-section-outer {
    padding: 40px 20px;
  }

  .testimonial-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-left {
    position: relative;
  }

  .testimonial-nav {
    position: static;
    margin-top: 24px;
    background: #efe5d9;
    padding: 12px 20px;
    border-radius: 60px;
  }

  .testimonial-right {
    width: 100%;
  }

  .testimonial-image-wrapper {
    display: flex;
    flex-direction: column;
    /* gap: 16px; */
    justify-content: center;
    align-items: center;
    width: 100%;
    /* max-width: 520px;
         margin: 0 auto; */
  }

  .testimonial-image-wrapper img {
    display: block;
    width: 100% !important;
    /* max-width: 420px; */
    height: auto;
    margin-left: 0;
    object-fit: cover;
  }

  .testimonial-image-wrapper img:nth-child(2),
  .testimonial-image-wrapper img:nth-child(3) {
    display: none;
  }

  .testimonialImageSwiper {
    min-height: 320px;
  }

  .service-card p {
    max-width: 139px;
    width: 100%;
  }

  .slide-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 25px;
  }

  .hero-swiper-wrapper,
  .about-banner-wrapper,
  .food-banner-wrapper,
  .contact-banner-wrapper {
    min-height: unset;
    height: 400px;
  }

  .slide-subtitle {
    margin-bottom: 20px;
  }

  .slide-content {
    bottom: 20px;
    left: 20px;
  }

  .hero-btn {
    padding: 10px;
    font-size: 12px;
  }

  .bestseller-slide.swiper-slide {
    padding: 15px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flavor-right img {
    height: 400px;
  }

  .approch-us-contact-bottom {
    flex-direction: column-reverse;
  }

  .approch-us-contact-bottom button {
    width: 100%;
  }

  .our-promise-tabs-unused {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* .tab-item {
         min-height: unset;
         height: auto;
         padding-top: 12px;
         padding-bottom: 12px;
     } */

  /* .tab-item h3 {
         font-size: 16px;
         line-height: 20px;
         margin-bottom: 6px;
     }

     .tab-item p {
         font-size: 13px;
         line-height: 18px;
     } */
}

@media screen and (max-width: 585px) {
  .testimonial-content h2 {
    font-size: 28px;
    line-height: 34px;
  }
}

@media screen and (max-width: 500px) {
  .profile-card {
    margin-bottom: 8px !important;
  }

  .address-card h4 {
    font-size: 14px !important;
  }

  .address-card p {
    font-size: 13px !important;
  }

  .address-menu {
    font-size: 13px !important;

  }

  .address-menu div {
    padding: 6px !important;
  }

  .title-row h2,
  .address-header h2,
  .orders-header h2,
  .delete-account-header h2 {
    font-size: 20px !important;
    line-height: 30px !important;

  }

  .address-type-section {
    width: 100% !important;
  }

  .type-btn {
    flex: 1 !important;
  }

  .title-row p,
  .deactivate-info-group li,
  .deactivate-reactivate-group p,
  .location-popup p,
  .orders-header p,
  .status-text,
  .order-footer {

    font-size: 13px !important;
    line-height: 15px !important;
  }

  .location-popup h3 {
    font-size: 18px !important;
    line-height: 24px !important;
  }


  .edit-btn,
  #saveBtn,
  .location-btn,
  .type-btn,
  #cancelAddress,
  #saveAddress,
  .deactivate,
  .delete,
  .deactivate-submit-btn,
  .delete-btn-final,
  .cancel-btn-final,
  .location-popup button {
    font-size: 13px !important;
    padding: 8px 12px !important;
  }

  .address-actions {
    width: 100% !important;
    flex-direction: column-reverse;
    gap: 10px !important;
  }

  #cancelAddress {
    width: 100%;
  }

  #saveAddress {
    width: 100%;
  }



  .add-address-btn,
  .deactivate-form-col h5,
  .delete-account-header h2,
  .delete-warning-card h5,
  .order-product h4,
  .order-price {
    font-size: 14px !important;
  }

  .delete-account-instructions h5 {
    font-size: 14px !important;
    line-height: 19px !important;
  }

  .add-address-btn {
    padding: 10px !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
  }

  .add-address-btn svg {
    width: 13px !important;
    height: 13px !important;
  }

  .edit-btn svg,
  #saveBtn svg,
  .location-btn svg {
    width: 10px !important;
    height: 10px !important;
  }

  .form-grid input,
  .form-grid select,
  .address-grid input,
  .address-grid textarea,
  .select-btn,
  .deactivate-phone-input,
  .deactivate-otp-input {
    padding: 10px 16px !important;
    font-size: 13px !important;

  }

  .select-options li,
  .deactivate-cancel-btn,
  .delete-account-header p,
  .delete-account-instructions li,
  .delete-warning-card p,
  .checkbox-text,
  .feedback-group label,
  .feedback-group textarea {
    font-size: 13px !important;
  }

  .delete-actions {
    flex-direction: column;
    gap: 10px !important;
  }

  .order-search input {
    height: 40px !important;
  }

  .delete-btn-final,
  .cancel-btn-final {
    width: 100% !important;
  }


  .address-field label,
  .order-search input {
    font-size: 13px !important;
  }

  .account-wrapper {
    grid-template-columns: 40px 1fr !important;
  }

  .profile-img-wrapper {
    width: 25px !important;
    height: 25px !important;

  }

  .menu-group-wrapper,
  .profile-card,
  .profile-box,
  .address-form-box,
  .danger-box,
  .deactivate-form-col,
  .delete-warning-card,
  .order-card {
    border-radius: 5px !important;
  }

  .account-wrapper {
    gap: 10px !important;
  }

  .menu-item,
  .logout-btn {
    padding: 5px !important;
    height: 30px !important;
  }

  .menu-item svg,
  .logout-btn svg {
    width: 15px !important;
    height: 15px !important;
  }

  .login-left h2,
  .signup-left h2,
  .forgot-left h2,
  .verify-left h2,
  .set-password-left h2 {
    font-size: 20px;
  }

  .form-row-2 {
    flex-direction: column;
    gap: 0;
  }

  /* .form-row-2 .form-group {
    margin-bottom: 0px;
  } */

  .login-form .form-group input,
  .signup-form .form-group input,
  .forgot-form input {
    padding: 10px 16px;
  }

  .login-left button,
  .signup-left button,
  .forgot-submit-btn,
  .verify-submit-btn,
  .set-password-btn {
    padding: 10px;
  }

  .signup-link {
    margin-bottom: 20px;
  }

  .login-divider,
  .signup-divider {
    margin-bottom: 25px;
  }

  .social-login .social-btn {
    padding: 5px 0px;
  }

  .flavor-right img {
    height: 320px;
  }

  .play-btn {
    height: 55px;
    width: 55px;
  }

  .shop-btn,
  .approch-us-contact-bottom button {
    font-size: 14px;
    padding: 13px 24px;
  }

  .food-banner-btn,
  .contact-btn,
  .contact-form-box button,
  .review-submit-btn {
    padding: 13px 24px;
  }

  .place-order-btn {
    padding: 13px 0px;
  }

  .hero-swiper-wrapper,
  .about-banner-wrapper,
  .food-banner-wrapper,
  .contact-banner-wrapper {
    min-height: unset;
    height: 330px;
  }

  .checkout-group h4 {
    font-size: 14px;
    line-height: 17px;
  }

  .order-summary h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .place-order-btn {
    font-size: 14px;
  }

  .coupon-area button {
    width: 100%;
    padding: 13px 0px;
    font-size: 13px;
  }

  .coupon-area {
    flex-direction: column;
  }

  .product-details-image {
    height: 300px;
  }

  .product-cart {
    flex-direction: column;
  }

  .cart-btn {
    height: 45px;
    font-size: 14px;
  }

  .product-detail-wrapper {
    padding: 26px 10px;
  }

  .quantity-box {
    justify-content: space-between;
  }



  .form-row {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .review-card {
    padding: 20px;
  }

  .quantity-box button,
  .buy-btn {
    height: 45px;
    font-size: 14px;
  }

  .cart-header {
    flex-direction: column;
    align-items: start;
  }

  .cart-header a {
    margin-left: auto;
  }

  .contact-form-box {
    padding: 20px;
  }

  .info-item h3 {
    font-size: 22px;
  }

  .contact-banner-content {
    padding-left: 20px;
  }

  .food-banner-btn,
  .contact-btn,
  .checkout-btn {
    font-size: 14px;
  }

  .food-banner-content {
    padding-left: 20px;
  }

  .food-banner-content h1,
  .contact-banner-content h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .filter-panel {
    max-width: 260px;
  }

  .sort-wrapper {
    margin-left: auto;
  }

  .slider-products-topbar {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .cart-summary {
    padding: 20px;
  }

  .cart-discount-form {
    flex-direction: column;
  }

  .slider-products-grid {
    grid-template-columns: 1fr;
  }

  .approch-us-form-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-wrapper {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card p {
    max-width: 178px;
    width: 100%;
  }

  .slide-title {
    font-size: 22px;
    line-height: 32px;
  }

  .offer-title {
    font-size: 25px;
    line-height: 30px;
  }

  .arrivals-left h2,
  .spice-content h1,
  .flavor-left h2,
  .welcome-wrapper h2,
  .spices-showcase-content h2,
  .approch-us-left h2,
  .section-heading h2,
  .slider-products-heading h2,
  .contact-content h2,
  .cart-header h2,
  .related-products-wrapper h2,
  .product-details-content h2 {
    font-size: 25px;
    line-height: 34px;
  }

  .spices-showcase-content {
    padding: 20px;
  }

  .spices-showcase-image img {
    height: 300px;
  }

  .spice-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .spice-primary {
    width: 100%;
    text-align: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-content h2 {
    font-size: 25px;
    line-height: 34px;
  }

  .about-banner-content h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .about-banner-content {
    left: 20px;
    bottom: 30px;
  }

  .about-banner-subtitle {
    left: 20px;
  }

  .welcome-wrapper p,
  .spices-showcase-content p,
  .slider-products-heading p,
  .footer-about p,
  .contact-banner-content p,
  .contact-content>p,
  .cart-header a {
    font-size: 14px;
    line-height: 22px;
  }

  .bestseller-outer,
  .offer-section-outer,
  .new-arrival-outer,
  .spice-outer,
  .flavor-section-outer,
  .service-section-outer,
  .contact-strip-outer,
  .footer-section-outer,
  .testimonial-section-outer,
  .welcome-outer,
  .spices-showcase-outer,
  .approch-us-outer,
  .our-promise-outer,
  .slider-products-outer,
  .contact-section-outer,
  .related-products-outer {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .food-banner,
  .product-details-outer,
  .cart-section,
  .checkout-section {
    padding-bottom: 40px;
  }

  .our-promise-swiper img {
    height: 220px;
  }

  .payment-box {
    flex-direction: column;
    padding: 15px 16px;
  }

  .payment-info {
    padding: 15px 16px;
  }

  .summary-total {
    font-size: 16px;
  }

  .checkout-form input,
  .three-column .checkout-custom-select-trigger,
  .checkout-form textarea {
    padding: 15px 16px;
  }
}

@media screen and (max-width: 400px) {
  .type-btn {
    font-size: 10px !important;
    padding: 10px !important;
  }

  .address-card h4 {
    display: flex;
    flex-direction: column;
    gap: 5px !important;
  }

  .address-card h4 span {
    margin-left: 0px !important;
  }

  .address-type-buttons {
    gap: 4px !important;
  }
}

.verify-form .form-group label {
  display: block;
  font-family: "Nohemi", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #0c1421;
  margin-bottom: 8px;
}

.verify-form input {
  width: 100%;
  padding: 13px 16px;
  background: #f7f7f7 !important;
  border: 1px solid #d4d7e3 !important;
  border-radius: 4px !important;
  font-family: "Nohemi", sans-serif !important;
  font-size: 11px !important;
  font-weight: 400;
  color: #8897ad !important;
  outline: none !important;
}

.verify-form input::placeholder {
  color: #8897ad !important;
}

.verify-submit-btn {
  width: 100%;
  padding: 13px;
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.resend-text {
  font-size: 10px;
  margin-bottom: 32px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #313131;
}

.resend-text a {
  color: #ff8682;
  text-decoration: none;
}

.verify-form .form-group {
  gap: 0;
  margin-bottom: 16px;
}

.set-password-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
  padding: 20px;
}

.set-password-modal.active {
  opacity: 1;
  visibility: visible;
}

.set-password-popup {
  max-width: 960px;
  width: 100%;
  background: #fff;
  border-radius: 34px;
  padding: 64px;
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  height: 95vh;
}

.set-password-left {
  flex: 1;
  max-height: 100%;
  overflow-y: auto;
}

.set-password-right {
  flex: 1;
  height: 100%;
}

.set-password-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.set-password-left h2 {
  font-family: "Nohemi", sans-serif;
  font-size: 27px;
  font-weight: 600;
  color: #313131;
  margin-bottom: 11px;
}

.set-password-subtext {
  font-family: "Nohemi", sans-serif;
  font-size: 11px;
  color: #313131;
  margin-bottom: 24px;
}

.set-password-btn {
  width: 100%;
  padding: 13px;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  margin-top: 32px;
}

.set-password-left .form-group {
  margin-bottom: 16px;
  gap: 0px;
}

.set-password-left .form-group label {
  display: block;
  font-family: "Nohemi", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #0c1421;
  margin-bottom: 8px;
}

.set-password-left .form-group input {
  width: 100%;
  padding: 13px 16px;
  background: #f7f7f7 !important;
  border: 1px solid #d4d7e3 !important;
  border-radius: 4px !important;
  font-family: "Nohemi", sans-serif !important;
  font-size: 11px !important;
  font-weight: 400;
  color: #8897ad !important;
  outline: none !important;
}

.set-password-left .form-group input::placeholder {
  color: #8897ad !important;
}

.set-password-left .form-group+.form-group {
  margin-bottom: 0px;
}

@media screen and (max-width: 1270px) {
  .checkout-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .three-column {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .two-column input {
    margin-bottom: 6px;
  }

  .contact-us-wrapper {
    grid-template-columns: 1fr;
  }

  .location-info {
    max-width: 280px;
    width: 100%;
  }

  .contact-info-grid-wrapper {
    margin: 0px;
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .product-image {
    height: 280px;
  }

  .new-arrivals-grid,
  .flavor-grid,
  .approch-us-wrapper {
    grid-template-columns: 1fr;
  }

  .arrivals-left h2 {
    margin-bottom: 20px;
  }

  .feature-card span {
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1150px) {
  .product-details-image {
    height: 400px;
  }

  .product-details-image img {
    height: 350px;
  }

  .product-top {
    grid-template-columns: 1fr;
  }

  .related-products-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .slider-products-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .contact-us-wrapper {
    grid-template-columns: 1fr;
  }

  .spices-showcase-wrapper {
    grid-template-columns: 1fr;
  }

  .spices-showcase-image img,
  .spices-showcase-content {
    height: 400px;
  }

  .testimonial-nav {
    position: unset;
    margin-top: 20px;
  }

  .testimonial-image-wrapper img:nth-child(1) {
    height: 350px;
  }

  .testimonial-image-wrapper img:nth-child(2) {
    height: 325px;
  }

  .testimonial-image-wrapper img:nth-child(3) {
    height: 300px;
  }

  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-section-top-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .offer-title {
    font-size: 30px;
    line-height: 40px;
  }

  .offer-grid {
    height: 350px;
  }

  .bs-card-image {
    height: 300px;
  }

  .bs-card-image img {
    height: 200px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .service-card p {
    max-width: 187px;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 1050px) {
  .bs-card-buttons {
    flex-direction: column;
  }
}

@media screen and (max-width: 992px) {
  .footer-section-top-wrapper {
    gap: 40px;
  }

  .checkout-cart-product {
    margin-bottom: 50px;
  }

  .checkout-wrapper {
    grid-template-columns: 1fr;
  }

  .related-products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .special-instructions {
    height: 250px;
  }

  .cart-bottom {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-grid {
    height: unset;
    grid-template-columns: 1fr;
  }

  .offer-left,
  .offer-image,
  .offer-right {
    height: 300px;
  }

  .offer-image img {
    object-fit: cover;
  }

  .offer-left,
  .offer-right {
    padding: 10px;
  }

  .shop-btn {
    width: 100%;
  }

  .about-banner-content {
    padding-right: 10px;
  }

  .our-promise-tabs-unused {
    grid-template-columns: 1fr 1fr;
  }

  .our-promise-swiper img {
    height: 380px;
  }
}

@media screen and (max-width: 768px) {
  .close-modal {
    position: unset;
    margin-left: auto;
  }

  .login-popup,
  .signup-popup,
  .forgot-popup,
  .verify-popup,
  .set-password-popup {
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    gap: 10px;
  }

  .login-left,
  .signup-left,
  .forgot-left,
  .verify-left,
  .set-password-left {
    width: 100%;
    max-height: fit-content;
  }

  .login-right,
  .signup-right,
  .forgot-right,
  .verify-right,
  .set-password-right {
    display: none;
  }

  .product-details-content h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .quantity-box {
    font-size: 16px;
    line-height: 20px;
  }

  .cart-btn,
  .buy-btn {
    font-size: 16px;
  }

  .cart-product-content h3 {
    font-size: 20px;
    line-height: 25px;
  }

  .food-banner-content h1,
  .contact-banner-content h1 {
    font-size: 45px;
    line-height: 48px;
  }

  .cart-header a {
    font-size: 16px;
    line-height: 22px;
  }

  .header-outer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .food-banner-content p,
  .contact-banner-content p {
    font-size: 16px;
    line-height: 22px;
  }

  .footer-section-top-wrapper {
    grid-template-columns: 1fr;
  }

  .approch-us-form-group input,
  textarea {
    padding: 15px 10px;
    font-size: 14px;
  }

  .arrivals-right {
    grid-template-columns: 1fr;
  }

  .bestseller-header-left h2,
  .arrivals-left h2,
  .spice-content h1,
  .flavor-left h2,
  .welcome-wrapper h2,
  .spices-showcase-content h2,
  .approch-us-left h2,
  .section-heading h2,
  .slider-products-heading h2,
  .contact-content h2,
  .related-products-wrapper h2 {
    font-size: 35px;
    line-height: 40px;
  }

  .bestseller-bottom-section-wrapper p,
  .offer-description,
  .offer-right .offer-description,
  .flavor-left p,
  .approch-us-left p {
    font-size: 14px;
    line-height: 20px;
  }

  .welcome-wrapper p,
  .spices-showcase-content p {
    font-size: 16px;
  }

  .slide-title {
    font-size: 40px;
    line-height: 48px;
  }

  .hero-swiper-outer,
  .bestseller-outer,
  .offer-section-outer,
  .new-arrival-outer,
  .spice-outer,
  .flavor-section-outer,
  .service-section-outer,
  .contact-strip-outer,
  .footer-section-outer,
  .testimonial-section-outer,
  .about-banner-outer,
  .welcome-outer,
  .spices-showcase-outer,
  .approch-us-outer,
  .our-promise-outer,
  .slider-products-outer,
  .food-banner-outer,
  .contact-banner-outer,
  .contact-section-outer,
  .cart-section-outer,
  .related-products-outer,
  .product-details-outer,
  .checkout-section-outer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cart-product-content h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .slide-content {
    padding-right: 20px;
  }

  .food-banner-content {
    padding-right: 20px;
  }

  .bestseller-bottom-section-wrapper {
    flex-direction: column;
    align-items: start;
  }

  .bestseller-bottom-section-wrapper a {
    margin-left: auto;
  }

  .bestseller-header {
    flex-direction: column;
    align-items: start;
  }

  .mobile-navbar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bestseller-nav {
    margin-left: auto;
  }

  .our-promise-swiper img {
    height: 300px;
  }

  .contact-banner-content {
    padding-right: 20px;
  }

  .tab-item {
    min-height: 110px;
  }

  .tab-item h3 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 8px;
  }

  .slider-products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-item h3 {
    font-size: 28px;
    line-height: 30px;
  }
}

@media screen and (max-width: 640px) {
  .checkout-form {
    padding: 32px 20px;
  }

  .cart-product-wrapper {
    flex-direction: column;
  }

  .place-order-btn {
    padding: 15px 0px;
  }

  .tab-content li {
    font-size: 13px;
  }

  .tab-content ol li p {
    font-size: 14px;
  }

  .tab-buttons button {
    font-size: 16px;
  }

  .tab-content h4 {
    font-size: 15px;
  }

  .related-products-grid {
    grid-template-columns: 1fr;
  }

  .info-item h3 {
    font-size: 25px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .about-banner-content h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .testimonial-section-outer {
    padding: 40px 20px;
  }

  .testimonial-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-left {
    position: relative;
  }

  .testimonial-nav {
    position: static;
    margin-top: 24px;
    background: #efe5d9;
    padding: 12px 20px;
    border-radius: 60px;
  }

  .testimonial-right {
    width: 100%;
  }

  .testimonial-image-wrapper {
    display: flex;
    flex-direction: column;
    /* gap: 16px; */
    justify-content: center;
    align-items: center;
    width: 100%;
    /* max-width: 520px;
         margin: 0 auto; */
  }

  .testimonial-image-wrapper img {
    display: block;
    width: 100% !important;
    /* max-width: 420px; */
    height: auto;
    margin-left: 0;
    object-fit: cover;
  }

  .testimonial-image-wrapper img:nth-child(2),
  .testimonial-image-wrapper img:nth-child(3) {
    display: none;
  }

  .testimonialImageSwiper {
    min-height: 320px;
  }

  .service-card p {
    max-width: 139px;
    width: 100%;
  }

  .slide-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 25px;
  }

  .hero-swiper-wrapper,
  .about-banner-wrapper,
  .food-banner-wrapper,
  .contact-banner-wrapper {
    min-height: unset;
    height: 400px;
  }

  .slide-subtitle {
    margin-bottom: 20px;
  }

  .slide-content {
    bottom: 20px;
    left: 20px;
  }

  .hero-btn {
    padding: 10px;
    font-size: 12px;
  }

  .bestseller-slide.swiper-slide {
    padding: 15px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flavor-right img {
    height: 400px;
  }

  .approch-us-contact-bottom {
    flex-direction: column-reverse;
  }

  .approch-us-contact-bottom button {
    width: 100%;
  }

  .our-promise-tabs-unused {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* .tab-item {
         min-height: unset;
         height: auto;
         padding-top: 12px;
         padding-bottom: 12px;
     } */

  /* .tab-item h3 {
         font-size: 16px;
         line-height: 20px;
         margin-bottom: 6px;
     }

     .tab-item p {
         font-size: 13px;
         line-height: 18px;
     } */
}

@media screen and (max-width: 585px) {
  .testimonial-content h2 {
    font-size: 28px;
    line-height: 34px;
  }
}

@media screen and (max-width: 500px) {

  .login-left h2,
  .signup-left h2,
  .forgot-left h2,
  .verify-left h2,
  .set-password-left h2 {
    font-size: 20px;
  }

  .form-row-2 {
    flex-direction: column;
    gap: 0;
  }

  /* .form-row-2 .form-group {
    margin-bottom: 0px;
  } */

  .login-form .form-group input,
  .signup-form .form-group input,
  .forgot-form input {
    padding: 10px 16px;
  }

  .login-left button,
  .signup-left button,
  .forgot-submit-btn,
  .verify-submit-btn,
  .set-password-btn {
    padding: 10px;
  }

  .signup-link {
    margin-bottom: 20px;
  }

  .login-divider,
  .signup-divider {
    margin-bottom: 25px;
  }

  .social-login .social-btn {
    padding: 5px 0px;
  }

  .flavor-right img {
    height: 320px;
  }

  .play-btn {
    height: 55px;
    width: 55px;
  }

  .shop-btn,
  .approch-us-contact-bottom button {
    font-size: 14px;
    padding: 13px 24px;
  }

  .food-banner-btn,
  .contact-btn,
  .contact-form-box button,
  .review-submit-btn {
    padding: 13px 24px;
  }

  .place-order-btn {
    padding: 13px 0px;
  }

  .hero-swiper-wrapper,
  .about-banner-wrapper,
  .food-banner-wrapper,
  .contact-banner-wrapper {
    min-height: unset;
    height: 330px;
  }

  .checkout-group h4 {
    font-size: 14px;
    line-height: 17px;
  }

  .order-summary h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .place-order-btn {
    font-size: 14px;
  }

  .coupon-area button {
    width: 100%;
    padding: 13px 0px;
    font-size: 13px;
  }

  .coupon-area {
    flex-direction: column;
  }

  .product-details-image {
    height: 350px;
  }

  .product-cart {
    flex-direction: column;
  }

  .cart-btn {
    height: 45px;
    font-size: 14px;
  }

  .product-detail-wrapper {
    padding: 26px 10px;
  }

  .quantity-box {
    justify-content: space-between;
  }

  .product-details-image img {
    height: 300px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .review-card {
    padding: 20px;
  }

  .quantity-box button,
  .buy-btn {
    height: 45px;
    font-size: 14px;
  }

  .cart-header {
    flex-direction: column;
    align-items: start;
  }

  .cart-header a {
    margin-left: auto;
  }

  .contact-form-box {
    padding: 20px;
  }

  .info-item h3 {
    font-size: 22px;
  }

  .contact-banner-content {
    padding-left: 20px;
  }

  .food-banner-btn,
  .contact-btn,
  .checkout-btn {
    font-size: 14px;
  }

  .food-banner-content {
    padding-left: 20px;
  }

  .food-banner-content h1,
  .contact-banner-content h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .filter-panel {
    max-width: 260px;
  }

  .sort-wrapper {
    margin-left: auto;
  }

  .slider-products-topbar {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .cart-summary {
    padding: 20px;
  }

  .cart-discount-form {
    flex-direction: column;
  }

  .slider-products-grid {
    grid-template-columns: 1fr;
  }

  .approch-us-form-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-wrapper {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-card p {
    max-width: 178px;
    width: 100%;
  }

  .slide-title {
    font-size: 22px;
    line-height: 32px;
  }

  .offer-title {
    font-size: 25px;
    line-height: 30px;
  }

  .arrivals-left h2,
  .spice-content h1,
  .flavor-left h2,
  .welcome-wrapper h2,
  .spices-showcase-content h2,
  .approch-us-left h2,
  .section-heading h2,
  .slider-products-heading h2,
  .contact-content h2,
  .cart-header h2,
  .related-products-wrapper h2,
  .product-details-content h2 {
    font-size: 25px;
    line-height: 34px;
  }

  .spices-showcase-content {
    padding: 20px;
  }

  .spices-showcase-image img {
    height: 300px;
  }

  .spice-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .spice-primary {
    width: 100%;
    text-align: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-content h2 {
    font-size: 25px;
    line-height: 34px;
  }

  .about-banner-content h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .about-banner-content {
    left: 20px;
    bottom: 30px;
  }

  .about-banner-subtitle {
    left: 20px;
  }

  .welcome-wrapper p,
  .spices-showcase-content p,
  .slider-products-heading p,
  .footer-about p,
  .contact-banner-content p,
  .contact-content>p,
  .cart-header a {
    font-size: 14px;
    line-height: 22px;
  }

  .bestseller-outer,
  .offer-section-outer,
  .new-arrival-outer,
  .spice-outer,
  .flavor-section-outer,
  .service-section-outer,
  .contact-strip-outer,
  .footer-section-outer,
  .testimonial-section-outer,
  .welcome-outer,
  .spices-showcase-outer,
  .approch-us-outer,
  .our-promise-outer,
  .slider-products-outer,
  .contact-section-outer,
  .related-products-outer {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .food-banner,
  .product-details-outer,
  .cart-section,
  .checkout-section {
    padding-bottom: 40px;
  }

  .our-promise-swiper img {
    height: 220px;
  }

  .payment-box {
    flex-direction: column;
    padding: 15px 16px;
  }

  .payment-info {
    padding: 15px 16px;
  }

  .summary-total {
    font-size: 16px;
  }

  .checkout-form input,
  .three-column .checkout-custom-select-trigger,
  .checkout-form textarea {
    padding: 15px 16px;
  }
}



.myaccount {
  padding-top: 104px;
  height: 100vh;
  overflow: hidden;
  padding-bottom: 20px;
}

.profile-page-outer {
  padding: 0px 60px;
}

.account-wrapper {
  display: grid;
  grid-template-columns: 315px 1fr;
  gap: 25px;
  height: 100%;
}

.sidebar {
  height: calc(100vh - 124px);
  display: flex;
  flex-direction: column;
  background: #fff;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid #d4d7e3;
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 24px;
}

.profile-card img {
  width: 50px;
  height: 100%;
  border-radius: 50%;
}

.profile-card h3 {
  font-size: 22px;
  font-family: "Nohemi", sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
  color: #000000;
}

.profile-card p {
  font-size: 12px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #000000;
}

/* Profile image wrapper & tooltip */
.profile-img-wrapper {
  position: relative;
  display: inline-block;
  height: 50px;
  /* flex-shrink: 0; */
}

/* Tooltip hidden on large screens - only active on small screens */
.profile-tooltip {
  display: none !important;
}

.profile-tooltip strong {
  font-size: 13px;
  font-family: "Nohemi", sans-serif;
  font-weight: 600;
  color: #2B2B2B;
  display: block;
}

.profile-tooltip span {
  font-size: 11px;
  font-family: "Nohemi", sans-serif;
  color: #7A7A7A;
  display: block;
}

/* Only enable tooltip on small screens (sidebar collapsed) */
@media (max-width: 1100px) {
  #profileImg {
    cursor: pointer;
  }

  .profile-tooltip {
    display: none !important;
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #D4D7E3;
    border-radius: 10px;
    padding: 10px 14px;
    white-space: nowrap;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    gap: 3px;
  }

  .profile-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #D4D7E3;
  }

  .profile-tooltip.show {
    display: flex !important;
  }
}

.menu-group-wrapper {
  flex: 1;
  border: 1px solid #D4D7E3;
  border-radius: 12px;
  padding: 24px;
  overflow-y: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.menu-group {
  margin-bottom: 18px;
}

.menu-group h5 {
  color: #7A7A7A;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  font-family: "Nohemi", sans-serif;
}

.menu-item {
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 5px;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  line-height: 21px;
  font-family: "Nohemi", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-item svg {
  color: #7A7A7A;
  width: 20px;
  height: 20px;
}

.menu-item:hover {
  background: #F9731633;
  color: #F97316;
  transition: all 0.3s ease;
}

.menu-item:hover svg {
  color: #F97316;
  transition: all 0.3s ease;
}

.menu-item.active {
  background: #F9731633;
  color: #F97316;
}

.menu-item.active svg {
  color: #F97316;
}

.logout-btn {
  width: 100%;
  border: none;
  background: #D4D7E333;
  color: #C81618;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  font-family: "Nohemi", sans-serif;
  margin-top: auto;
}

.content {
  height: calc(100vh - 125px);
  overflow-y: auto;
  /* overflow-x: hidden; */
  padding-right: 10px;
  /* padding-bottom: 25px; */
}

.profile-box {
  background: #fff;
  border: 1px solid #D4D7E3;
  border-radius: 16px;
  padding: 32px;
}

.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.title-row h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  font-family: "Nohemi", sans-serif;
  color: #2B2B2B;
}

.title-row p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  font-family: "Nohemi", sans-serif;
  color: #7A7A7A;
}

.edit-btn {
  background: #F97316;
  border: 1px solid transparent;
  color: #FFFFFF;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: not-allowed;

  font-size: 14px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
}

.edit-btn:hover {
  background-color: transparent;
  border-color: #F97316;
  transition: all 0.3s ease;
  color: #F97316;
}

.edit-btn:hover svg {
  color: #F97316;
  transition: all 0.3s ease;
}

.edit-btn svg {
  margin-left: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 19.5px;
  font-family: "Nohemi", sans-serif;
  color: #2B2B2B;
}

.form-grid input,
.form-grid select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #D4D7E3;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #7A7A7A;
  background-color: #F9F9F9;
}

.form-grid input::placeholder,
.form-grid select::placeholder {
  color: #7A7A7A;
}

.save-area {
  text-align: right;
  margin-top: 25px;
}

#saveBtn {
  background: #444444;
  border: 1px solid transparent;
  color: #FFFFFF;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: not-allowed;
  font-size: 14px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
}

#saveBtn:hover {
  background-color: transparent;
  border-color: #444444;
  transition: all 0.3s ease;
  color: #444444;
}


#saveBtn.active {
  background: #F97316;
  cursor: pointer;
}

#saveBtn.active:hover {
  background-color: transparent;
  border-color: #F97316;
  transition: all 0.3s ease;
  color: #F97316;
}

.danger-box {
  background: #EF44440D;
  border: 1px solid #EF444433;
  border-radius: 16px;
  padding: 32px;
}

.danger-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 0px 15px 0px;
  border-bottom: 1px solid #EF444433;
  margin-bottom: 13px;
}

.danger-row+.danger-row {
  padding-bottom: 0px;
  border: unset;
  margin-bottom: 0px;
}

.danger-row h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  font-family: "Nohemi", sans-serif;
  color: #2B2B2B;
}

.danger-row p {
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  font-family: "Nohemi", sans-serif;
  color: #7A7A7A;
}

.deactivate {
  background: white;
  border: 1px solid #EF444433;
  color: #EF4444;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
}

.deactivate:hover {
  background-color: #EF444433;
  border-color: #EF444433;
  transition: all 0.3s ease;
  color: white;
}

.delete {
  background: #EF4444;
  border: 1px solid transparent;
  color: #FFFFFF;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
}

.delete:hover {
  background-color: transparent;
  border-color: #EF4444;
  transition: all 0.3s ease;
  color: #EF4444;
}

/* =========================
   Custom Select
========================= */

.custom-select {
  position: relative;
  width: 100%;
}

.placeholder {
  color: #999;
}

.select-btn {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #D4D7E3;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #7A7A7A;
  background-color: #F9F9F9;

  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;
}


.select-btn .selected-text {
  color: #7A7A7A !important;
}

.select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  width: 100%;

  background-color: #F9F9F9;
  border: 1px solid #D4D7E3;
  border-radius: 4px;

  list-style: none;
  overflow: hidden;

  display: none;

  z-index: 100;
}

.select-options li {
  padding: 12px 16px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #7A7A7A;
}

.select-options li:hover,
.select-options li.selected {
  background: black;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.custom-select.active .select-options {
  display: block;
}

/* disabled state */

.custom-select.disabled {
  opacity: 0.7;
  pointer-events: none;
}

.custom-select.disabled .select-btn {
  background: #f8f8f8;
}

/* rotate icon */

.custom-select.active .fa-chevron-down {
  transform: rotate(180deg);
}

.fa-chevron-down {
  transition: 0.3s;
}

.address-page h2 {
  font-family: "Nohemi", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  color: #000000;
  margin-bottom: 24px;
}

.add-address-btn {
  border: 1px solid #D4D7E3;
  padding: 16px 12px;
  cursor: pointer;
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  font-family: "Nohemi", sans-serif;
  color: #0058C9;
  display: flex;
  align-items: center;
  gap: 22px;
}



.address-card {
  border: 1px solid #ddd;
  padding: 24px 12px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.address-card h4 {
  font-size: 16px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
  color: #000000;
  margin-bottom: 24px;
}

.address-card h4 span {
  margin-left: 29px;
}

.address-card p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #6B7280;
}

.address-menu {
  position: absolute;
  right: 20px;
  top: 45px;
  background-color: white;
  width: 120px;

  border: 1px solid #D4D7E3;
  display: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #6B7280;
}

.address-menu.active {
  display: block;
}

.address-menu div {
  padding: 12px;
  cursor: pointer;
}

.address-menu div:hover {
  background: black;
  color: white;
  transition: all 0.3s ease;
}

.menu-btn {
  border: none;
  background: none;
  cursor: pointer;
}

.address-form-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 32px;
}

.address-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.address-header h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  font-family: "Nohemi", sans-serif;
  color: #2B2B2B;
}

.address-header p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  font-family: "Nohemi", sans-serif;
  color: #7A7A7A;
}

.location-btn {
  background: #F97316;
  border: 1px solid transparent;
  color: #FFFFFF;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
  transition: all 0.3s ease;
}

.location-btn:hover {
  background-color: transparent;
  border-color: #F97316;
  color: #F97316;
}

.location-btn:hover svg {
  color: #F97316;
  transition: all 0.3s ease;
}

.location-btn svg {
  margin-right: 5px;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}

.address-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.address-field.full-width {
  grid-column: span 2;
}

.address-field label {
  font-family: "Nohemi", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2B2B2B;
}

.address-grid textarea {
  height: 120px;
  resize: vertical;
  margin-bottom: 0px !important;
}

.address-grid input,
.address-grid textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #D4D7E3;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  color: #2B2B2B;
  outline: none;
  background-color: #F9F9F9;
}

.address-grid input::placeholder,
.address-grid textarea::placeholder {
  color: #7A7A7A;
}

.address-form-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 30px;
}

.address-type-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.address-type-section label {
  font-family: "Nohemi", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2B2B2B;
}

.address-type-buttons {
  display: flex;
  gap: 12px;
}

.type-btn {
  background: #F4F4F5;
  border: 1px solid transparent;
  color: #18181B;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
}

.type-btn:hover {
  background: #F97316;
  color: white;
  transition: all 0.3s ease;
}

.type-btn.active {
  background: #F97316;
  color: #FFFFFF;
}

.address-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

#cancelAddress {
  background-color: rgb(68, 68, 68);
  border: 1px solid transparent;
  color: rgb(255, 255, 255);
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: Nohemi, sans-serif;
  transition: all 0.3s ease;
}

#cancelAddress:hover {
  background-color: transparent;
  border-color: rgb(68, 68, 68);
  color: rgb(68, 68, 68);
}

#saveAddress {
  background: #F97316;
  border: 1px solid transparent;
  color: #FFFFFF;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
  transition: all 0.2s ease;
}

#saveAddress:hover {
  background: transparent;
  border-color: #F97316;
  color: #F97316;
  transition: all 0.3s ease;
}

.location-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.location-modal.active {
  display: flex;
}

.location-popup {
  background: white;
  width: 380px;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
}

.location-popup svg {
  margin-bottom: 10px;
}

.location-popup h3 {
  font-family: "Nohemi", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #000000;
  margin-bottom: 10px;
}

.location-popup p {
  font-family: "Nohemi", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #6B7280;
}

.location-popup button {
  font-size: 14px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
  color: #FFFFFF;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  background-color: #F97316;
  border: none;
  margin-right: 5px;
}

.orders-page {
  background: #fff;
}

#closeLocation {
  font-size: 13px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;

}

.orders-header {
  margin-bottom: 32px;
}

.orders-header h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  font-family: "Nohemi", sans-serif;
  color: #2B2B2B;
}

.orders-header p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  font-family: "Nohemi", sans-serif;
  color: #7A7A7A;
}

.order-search {
  margin-top: 24px;
  position: relative;
}

.order-search svg {
  margin-right: 24px;
}

.order-search input {
  width: 100%;
  height: 52px;
  padding: 20px 0px;
  font-size: 14px;
  color: #44474899;
  outline: none;
  font-family: "Nohemi", sans-serif;
  border: none;
}

.order-search input::placeholder {
  color: #44474899;
}

.order-search {
  margin-bottom: 24px;
  border: 1px solid #EFEFEF;
  border-radius: 12px;
  display: flex;
  padding: 0px 16px;
  justify-content: space-between;
  align-items: center;
}

.order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #D4D7E3;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 56px;
  background: #FFFFFF;
}

.order-product {
  display: flex;
  align-items: center;
  gap: 20px;
}

.order-img-wrapper {
  width: 114px;
  height: 127px;
  background: #fbf8fb;
  border: 1px solid #E5EAF0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.order-img-wrapper img {
  max-width: 65px;
  max-height: 105px;
  object-fit: contain;
}

.order-img-wrapper img:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

.order-product h4 {
  font-family: "Nohemi", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 22.95px;
  margin: 0;
  margin-bottom: 10px;
}

.order-size {
  font-family: "Nohemi", sans-serif;
  font-size: 10.71px;
  color: #6B7280;
  font-weight: 400;
  line-height: 15.3px;
  letter-spacing: 0.2%;
}

.order-size span {
  color: #000000;
}

.order-price {
  font-family: "Nohemi", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 24px;
}

.order-status {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.status-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Nohemi", sans-serif;
  font-size: 14px;
  color: #18181B;
}

.status-dot-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.status-dot {

  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #15803D;
}

.status-text .highlight {
  font-size: 13px;
  color: #15803D;
}

.status-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  font-family: "Nohemi", sans-serif;
  color: #191C1E;
}

.status-desc {
  font-family: "Nohemi", sans-serif;
  font-size: 13px;
  color: #71717A;
  margin: 0;
  padding-left: 15px;
}

.order-footer {
  text-align: center;
  color: #5E6572;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  font-family: "Nohemi", sans-serif;
}

.order-footer a {
  color: #000000;
  text-decoration: none;

}

.menu-group-wrapper::-webkit-scrollbar,
.content::-webkit-scrollbar {
  width: 10px;
}

.menu-group-wrapper::-webkit-scrollbar-thumb,
.content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.menu-group-wrapper::-webkit-scrollbar-track,
.content::-webkit-scrollbar-track {
  background: transparent;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 2px solid transparent;
}

/* =======================================
   DELETE ACCOUNT STYLES
   ======================================= */

.delete-account-box {
  padding: 33px;
  display: flex;
  flex-direction: column;
}

.delete-account-header h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  font-family: "Nohemi", sans-serif;
  color: #2B2B2B;
  margin-bottom: 20px;
}

.delete-account-header p {
  font-size: 14px;
  line-height: 22px;
  font-family: "Nohemi", sans-serif;
  color: #555555;
  margin-bottom: 16px;
}

.delete-account-header .deactivate-link {
  color: #F97316;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.delete-account-header .deactivate-link:hover {
  text-decoration: underline;
  color: #eb7319;
}

.delete-account-instructions {
  margin-top: 15px;
}

.delete-account-instructions h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  color: #2B2B2B;
  margin-bottom: 16px;
  font-family: "Nohemi", sans-serif;
}

.delete-account-instructions ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.delete-account-instructions li {
  font-size: 14px;
  line-height: 22px;
  color: #555555;
  font-family: "Nohemi", sans-serif;
}

.delete-warning-card {
  background: #FFF9F3;
  border: 1px solid #F97316;
  border-radius: 8px;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 24px;
}

.delete-warning-card h5 {
  font-size: 15px;
  font-weight: 600;
  color: #b2580c;
  margin-bottom: 8px;
  font-family: "Nohemi", sans-serif;
}

.delete-warning-card p {
  font-size: 14px;
  line-height: 22px;
  color: #b2580c;
  font-family: "Nohemi", sans-serif;
}

.delete-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
  padding-top: 10px;
  border-top: 1px solid #E5E7EB;
}

.checkbox-container {
  display: flex;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  padding-left: 0px;
  align-items: flex-start;
}

.checkbox-container input[type="checkbox"] {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  appearance: checkbox !important;
  width: 18px !important;
  height: 18px !important;
  cursor: pointer !important;
  accent-color: #F97316 !important;
  flex-shrink: 0 !important;
}

.checkbox-text {
  font-size: 14px;
  line-height: 20px;
  color: #555555;
  font-family: "Nohemi", sans-serif;
  margin-left: 30px;
}

.feedback-group {
  margin-bottom: 30px;
}

.feedback-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: "Nohemi", sans-serif;
  color: #2B2B2B;
}

.feedback-group textarea {
  width: 100%;
  height: 110px;
  padding: 15px 16px;
  border: 1px solid #D4D7E3;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Nohemi", sans-serif;
  color: #2B2B2B;
  background-color: #F9F9F9;
  outline: none;
  resize: vertical;

}

.feedback-group textarea::placeholder {
  color: #A1A1A1;
}


.delete-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #E5E7EB;
  padding-top: 24px;
}

.delete-btn-final {
  background: #EF4444;
  border: 1px solid transparent;
  color: #FFFFFF;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
}

.delete-btn-final:hover {
  background: transparent;
  border: 1px solid #EF4444;
  color: #EF4444;
  transition: all 0.3s ease;
}


.cancel-btn-final {
  background: #444444;
  border: 1px solid #00000000;
  color: #FFFFFF;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: "Nohemi", sans-serif;
}

.cancel-btn-final:hover {
  background: #F9F9F9;
  color: #2B2B2B;
  border-color: #7A7A7A;
  transition: all 0.3s ease;
}

.cancel-btn-final:active {
  transform: scale(0.98);
}

/* =======================================
   DEACTIVATE ACCOUNT STYLES
   ======================================= */

.deactivate-account-box {
  padding: 33px;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.deactivate-info-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.deactivate-form-col {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
}

.deactivate-info-group h5,
.deactivate-reactivate-group h5 {
  font-size: 16px;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 16px;
  font-family: "Nohemi", sans-serif;
}

.deactivate-info-group ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deactivate-info-group li {
  font-size: 14px;
  line-height: 22px;
  color: #555555;
  font-family: "Nohemi", sans-serif;
}

.deactivate-reactivate-group p {
  font-size: 14px;
  line-height: 22px;
  color: #555555;
  font-family: "Nohemi", sans-serif;
  margin-bottom: 12px;
}

.deactivate-reactivate-group .reactivate-subtitle {
  font-weight: 600;
  color: #2B2B2B;
}

.deactivate-reactivate-group .reactivate-note {
  font-size: 13px;
  color: #888888;
  margin-top: 15px;
}

.deactivate-form-col h5 {
  font-size: 18px;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 24px;
  font-family: "Nohemi", sans-serif;
  text-align: center;
}

.deactivate-input-group {
  margin-bottom: 16px;
}

.deactivate-phone-input,
.deactivate-otp-input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #D4D7E3;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Nohemi", sans-serif;
  color: #2B2B2B;
  background-color: #F9F9F9;
  outline: none;
  transition: all 0.3s ease;
}

.deactivate-phone-input {
  background-color: #F3F4F6;
  color: #777777;
  cursor: not-allowed;
}



.deactivate-submit-btn {
  width: 100%;
  background: #EF4444;
  border: solid 1px transparent;
  color: #FFFFFF;
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  font-family: "Nohemi", sans-serif;
  letter-spacing: 0.5px;
  margin-top: 10px;
  margin-bottom: 16px;
}

.deactivate-submit-btn:hover {
  background: transparent;
  border: 1px solid #EF4444;
  color: #EF4444;
  transition: all 0.3s ease;
}

.deactivate-submit-btn:active {
  transform: scale(0.98);
}

.deactivate-cancel-btn {
  width: 100%;
  background: transparent;
  color: black;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nohemi", sans-serif;
  text-align: center;
  transition: color 0.3s ease;
}

.deactivate-cancel-btn:hover {
  color: #2563EB;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .deactivate-account-box {
    flex-direction: column;
    gap: 30px;
  }

  .deactivate-form-col {
    width: 100%;
    align-self: stretch;
  }
}