@import url("https://fonts.googleapis.com/css2?family=Norican&family=Poppins:wght@400;500;600;700;800&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: auto;
}

body {
  margin: 0;
  display: block;
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #000000;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  width: 100%;
  background: #ffffff;
  border-top: 8px solid #000002;
  padding: 18px 0 18px;
  position: relative;
  z-index: 100;
}

.nav-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  width: 150px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1e1e1e;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #eb3b2e;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EB3B2E;
  border-radius: 6px;
  width: 54px;
  height: 50px;
}

.nav-cart img {
  width: 28px;
  height: 100%;
  max-height: 90px;
}

.nav-cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  border: 1px solid #ddd;
}

.nav-account {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1f211e;
  font-size: 17px;
}

.nav-account img {
  width: 32px;
  height: 32px;
}

.nav-account a {
  text-decoration: none;
  color: #1f211e;
  font-weight: 500;
}

.nav-account a:hover {
  color: #EB3B2E;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 780px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1920px;
  margin: 0 auto;
  padding: 120px 110px 160px;
}

.hero-headline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(52px, 5.5vw, 75px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
  max-width: 680px;
  margin-bottom: 48px;
}

.hero-headline span.yellow {
  color: #fdcf22;
}

.hero-headline span.white {
  color: #ffffff;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 12px 32px;
  border: 2px solid #ffffff;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 12px 32px;
  border: 2px solid #ffffff;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-white:hover {
  opacity: 0.9;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero product images */
.hero-products {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-product-1 {
  position: absolute;
  width: 360px;
  right: 460px;
  top: 50px;
  filter: drop-shadow(-19px 32px 29px rgba(0, 0, 0, 0.49));
}

.hero-product-2 {
  position: absolute;
  width: 340px;
  right: 130px;
  top: 20px;
  filter: drop-shadow(21px 6px 29px rgba(0, 0, 0, 0.49));
}

/* Hero floating garnishes */
.hero-garnish {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

/* ── BADGES STRIP ── */
.badges-strip {
  padding: 48px 0 36px;
  background: #ffffff;
}

.badges-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 120px;
}

.badge-item img.badge-circle {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.badge-item img.badge-icon {
  position: absolute;
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.badge-icon-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-item:hover img.badge-circle {
  animation: badgeFlip .6s ease-in-out;
}

@keyframes badgeFlip {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.badge-item span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  text-align: center;
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-family: "Norican", cursive;
  font-size: 42px;
  color: #eb3b2e;
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
}

/* ── FEATURED FLAVOURS ── */
.featured {
  padding: 30px 0 60px;
  background: #ffffff;
}

.featured-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 80px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.product-card {
  border: 2px solid #555555;
  border-radius: 20px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
  height: 100%;
}

.product-cardes {
  border: none;
  border-radius: 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
}

.product-card-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  margin-bottom: 12px;
}

.product-card img.product-img {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
}

.product-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
}

.product-wishlist img {
  width: 30px;
  height: 28px;
  object-fit: contain;
}

.product-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
  margin-top: 15px;
}

.product-card p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  flex: 1;
  margin-bottom: 14px;
  line-height: 1.5;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #000000;
}

.btn-add {
  background: #eb3b2e;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-add:hover {
  background: #c42e23;
}

.featured-cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.btn-red {
  background: #eb3b2e;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 16px 41px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-red:hover {
  background: #c42e23;
}

/* ── PROMO BANNER 3-COL ── */
.promo-banner {
  display: grid;
  grid-template-columns: 32.1% 35.8% 32.1%;
  width: 100%;
  overflow: hidden;
}

.promo-col {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 30px 48px;
}

.promo-col.green {
  background: #00a952;
}

.promo-col.orange {
  background: #dc7627;
}

.promo-col.yellow {
  background: #fdcc22;
}

.promo-col-tag {
  font-family: "Norican", cursive;
  font-size: 34px;
  color: #ffffff;
  margin-bottom: 6px;
  z-index: 1;
}

.promo-col-name {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 28px;
  z-index: 1;
}

.promo-col.green .promo-col-name {
  color: #fdd023;
}

.promo-col.orange .promo-col-name {
  color: #fdd023;
}

.promo-col.yellow .promo-col-name {
  color: #ce471d;
}

.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1f211e;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 10px 26px;
  border: 3px solid #ffffff;
  cursor: pointer;
  text-decoration: none;
  width: fit-content;
  z-index: 1;
}

.btn-order:hover {
  opacity: 0.9;
}

.promo-product-img {
  position: absolute;
  bottom: 0;
  right: 0;
  object-fit: contain;
  pointer-events: none;
}

.promo-col.green .promo-product-img {
  width: 380px;
  right: -32%;
  bottom: 18%;
}

.promo-col.orange .promo-product-img {
  width: 380px;
  right: -17%;
  bottom: 26%;
  z-index: 0;
}

.promo-col.yellow .promo-product-img {
  width: 220px;
  right: -5%;
  bottom: 22%;
}

/* ── WHY CHARK ── */
.why-chark {
  padding: 60px 0 60px;
  background: #ffffff;
}

.why-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 80px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.why-card {
  border-radius: 50px;
  padding: 48px 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-card.yellow-bg {
  background: #fef2c4;
}

.why-card.blue-bg {
  background: #dceefd;
}

.why-card.green-bg {
  background: #edffe9;
}

.why-card-icon-wrap {
  width: 140px;
  height: 140px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.why-card-icon-wrap img.circle-bg {
  width: 140px;
  height: 140px;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}

.why-card-icon-wrap img.icon-img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.why-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 16px;
}

.why-card p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.55;
}

/* ── INSTAGRAM FEED ── */
.instagram {
  padding: 10px 0 30px;
  background: #ffffff;
}

.instagram-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 0;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 0;
  width: 100%;
  overflow: hidden;
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── TESTIMONIAL ── */
.testimonial {
  padding: 30px 0 60px;
  background: #ffffff;
  text-align: center;
}

.testimonial-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonial .section-header {
  margin-bottom: 48px;
}

.quote-icon {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
}

.quote-icon img {
  width: 22px;
  height: 38px;
  object-fit: contain;
}

.quote-text {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #000000;
  line-height: 1.65;
  margin-bottom: 32px;
}

.reviewer-name {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
}

.reviewer-platform {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 28px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
}

.dots img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.testimonial {
  padding: 60px 0;
  background: #fff;
}

.section-title {
  font-weight: bold;
  margin-top: 5px;
}

/* Testimonial Box */
.testimonial-box {
  max-width: 600px;
  margin: auto;
}

.quote-icon img {
  width: 40px;
  margin-bottom: 15px;
}

.quote-text {
  font-size: 18px;
  margin-bottom: 20px;
}

.reviewer-name {
  font-weight: bold;
}

.reviewer-platform {
  color: #777;
}

/* Dots */
.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: #ccc !important;
  border: none;
}

.carousel-indicators .active {
  background-color: #e63946 !important;
}

.footer-top {
  /* image + dark overlay for readability */
  background: url("https://cdn.codia.ai/figma/1Hx7rkpPyfMxsPW3Vjtdjx/img-f430cc3bb2959935.png");

  background-size: cover;
  /* fill area */
  background-position: center;
  /* keep centered */
  background-repeat: no-repeat;
  color: #fff;
  padding: 70px 0 60px;
}

/* ===== LOGO ===== */
.footer-logo {
  width: 200px;
  margin-bottom: 50px;
}

/* ===== MAIN ROW ===== */
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ===== SOCIAL ===== */
.footer-social img {
  width: 130px;
}

/* ===== LINKS ===== */
.footer-links {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ===== CONTACT ===== */
.footer-contact {
  text-align: right;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-contact-row img {
  width: 22px;
}

.footer-contact-row span {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
}

/* ===== COPYRIGHT BAR ===== */
.footer-bottom {
  background: #b40817;
  color: #fff;
  text-align: center;
  padding: 18px 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

@media (max-width: 992px) {
  .footer-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  /* .footer-contact-row {
    justify-content: center;
  } */
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .nav-inner {
    padding: 0 40px;
  }

  .hero-content {
    padding: 80px 40px 120px;
  }

  .badges-inner,
  .featured-inner,
  .why-inner {
    padding: 0 40px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .promo-banner {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 240px);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-headline {
    font-size: 38px;
  }

  .hero-products {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .badges-inner {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 200px);
  }

  .hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 420px;
  }

  .btn-outline-white {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 16px 19px;
    border: 3px solid #ffffff;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
  }

  .promo-col.green .promo-product-img {
    width: 372px;
    right: -18%;
    bottom: 12%;
  }

  .promo-col.orange .promo-product-img {
    width: 380px;
    right: -12%;
    bottom: 16%;
  }

  .promo-col.yellow .promo-product-img {
    width: 220px;
    right: 0%;
    bottom: 11%;
  }
}

.badges-strip {
  padding: 60px 0 40px;
  background: #fff;
}

.badges-inner {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  gap: 25px;
  /* SAME spacing everywhere */
}

.badge-item {
  width: 140px;
  text-align: center;
}

.badge-icon-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
}

.badge-circle {
  width: 100%;
  height: 100%;
}

.badge-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
}

.badge-item span {
  display: block;
  font-size: 14px;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 576px) {
  .badge-item {
    width: 45%;
  }

  .promo-col {
    position: relative;
    min-height: 270px;
    padding: 24px 28px 24px;
  }

  .promo-col.green .promo-product-img {
    width: 202px;
    right: -20%;
    bottom: 28%;
  }

  .promo-col.orange .promo-product-img {
    width: 183px;
    right: -13%;
    bottom: 37%;
  }

  .promo-col.yellow .promo-product-img {
    width: 108px;
    right: 0%;
    bottom: 54%;
  }

  .btn-order {
    padding: 8px 25px;
  }

  .hero-headline {
    font-size: 24px;
  }

  .btn-white {
    font-size: 16px;
    padding: 3px 12px;
  }

  .btn-outline-white {
    font-size: 13px;
    padding: 4px 12px;
  }

  .section-tag {
    font-size: 25px;
  }


  .section-header {
    text-align: center;
    margin-bottom: 10px;
    padding: 0 40px !important;
  }

  .badges-strip {
    padding: 60px 0 20px;
    background: #fff;
  }

  .section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(25px, 3.5vw, 56px);
  }

  .featured-cta {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .featured {
    padding: 30px 0 30px;
    background: #ffffff;
  }

  .testimonial {
    padding: 30px 0;
    background: #fff;
  }

  .hero-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    /* flex-wrap: wrap; */
  }
}

/* Remove spacing */
.gallery-section .row {
  margin: 0;
}

/* Custom 5-column layout */
@media (min-width: 992px) {
  .custom-col {
    width: 20% !important;
  }
}

/* Image styling */
.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover zoom */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== UNIQUE NAMESPACE ===== */
.px-product-wrapper {
  padding: 50px 0 45px;
  font-family: "Segoe UI", sans-serif;
}

/* LEFT SIDE */
.px-image-box {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ddd;
  padding: 35px;
  text-align: center;
  max-height: 300px;
  height: 100%;
}

.px-image-box img {
  height: 100%;
  max-height: 300px;
  object-fit: contain;
  overflow: hidden;
}

.px-thumb-row {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: space-evenly;
}

.px-thumb-item {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 8px;
  background: #fff;
  cursor: pointer;
  text-align: center;
}

.px-thumb-item img {
  width: 100%;
  max-width: 100px;
  height: 100%;
  max-height: 150px;
  object-fit: contain;
}


.px-thumb-item.active {
  border: 2px solid #EB3B2E;
}

/* RIGHT SIDE */
.px-top-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.px-category {
  color: #777;
}

.px-stock {
  display: inline-block;
  border: 1px solid #28a745;
  color: #28a745;
  padding: 5px 12px;
  border-radius: 6px;
  margin: 10px 0;
  font-size: 13px;
}

.px-title {
  font-weight: 600;
  margin-top: 5px;
}

.px-rating {
  color: #ff9800;
  margin: 8px 0 15px;
}

/* PRICE */
.px-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.px-old-price {
  text-decoration: line-through;
  color: #888;
}

.px-discount {
  background: #EB3B2E;
  color: #fff;
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 4px;
}

.px-price {
  font-weight: bold;
  margin-top: 5px;
}

/* DESCRIPTION */
.px-desc {
  color: #777;
  font-size: 14px;
  margin-top: 15px;
}

/* QUANTITY */
.px-qty-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
}

.px-qty-box {
  display: flex;
  align-items: center;
  background: #EB3B2E;
  border-radius: 50px;
  overflow: hidden;
}

.px-qty-box button {
  background: #EB3B2E;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  font-size: 20px;
}

.px-qty-box input {
  width: 40px;
  text-align: center;
  border: none;
}

/* BUTTONS */
.px-btn-group {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.px-btn-cart {
  background: #EB3B2E;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
}

.px-btn-buy {
  border: 2px solid #EB3B2E;
  background: transparent;
  color: #EB3B2E;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .px-btn-group {
    flex-direction: column;
  }

  .px-qty-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== TOP ROW ===== */
.ui-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-end;
}

.ui-down {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: flex-start;
}

.ui-category {
  font-size: 1.1rem;
  font-weight: 600;
  /* color: #555; */
}

/* STOCK */
.ui-stock {
  border: 2px solid #20c997;
  color: #20c997;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 13px;
  margin-left: 15px;
}

/* TITLE */
.ui-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.ui-title {
  font-size: 22px;
  font-weight: 600;
}

.ui-rating {
  color: #ff9800;
  font-size: 1.2rem;
}

/* PRICE */
.ui-price-small {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ui-old {
  color: #666;
  font-weight: 500;
}

.ui-new {
  color: #000000;
  font-weight: 600;
}

.ui-discount {
  background: #EB3B2E;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
}

.ui-price {
  font-size: 28px;
  font-weight: 700;
  margin-top: 5px;
}

/* DESC */
.ui-desc {
  margin-top: 15px;
  color: #777;
  font-size: 14px;
  line-height: 1.6;
}

/* QTY */
.ui-qty-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.ui-qty {
  display: flex;
  align-items: center;
  border: 2px solid #EB3B2E;
  border-radius: 50px;
  overflow: hidden;
  background-color: #EB3B2E;
}

.ui-qty button {
  background: #EB3B2E;
  color: #fff;

  width: 36px;
  height: 36px;
  font-size: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.ui-qty input {
  width: 40px;
  border: none;
  text-align: center;
  font-weight: 600;
  color: #fff;
  background-color: #EB3B2E;
}

/* BUTTONS */
.ui-btns {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.ui-cart {
  background: #EB3B2E;
  color: #fff;
  padding: 16px 58px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  font-family: 1.3rem;
}

.ui-buy {
  border: 2px solid #EB3B2E;
  color: #EB3B2E;
  padding: 16px 58px;
  border-radius: 40px;
  background: transparent;
  font-weight: 600;
  font-family: 1.3rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ui-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .ui-btns {
    flex-direction: column;
    width: 100%;
  }

  .ui-cart,
  .ui-buy {
    width: 100%;
    text-align: center;
  }

  .ui-qty-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Banner */
.menu-banner {
  height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-banner-bg {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.menu-banner-title {
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.menu-banner-bg p {
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 20px !important;
}

.menu-banner-leaf-left {
  position: absolute;
  left: -30px;
  top: 10%;
  width: 220px;
  z-index: 2;
  transform: rotate(-15deg);
  opacity: 0.9;
}

.menu-banner-drink-left {
  position: absolute;
  left: 12%;
  bottom: 0;
  height: 85%;
  z-index: 3;
}

.menu-banner-drink-right {
  position: absolute;
  right: 12%;
  bottom: 0;
  height: 80%;
  z-index: 3;
}

.menu-banner-leaf-right {
  position: absolute;
  right: -30px;
  top: 5%;
  width: 220px;
  z-index: 2;
  transform: rotate(15deg);
  opacity: 0.9;
}

.menu-banner-wave {
  margin-top: -2px;
  line-height: 0;
  background: #1a5226;
}

.menu-banner-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Browse Menu Section */
.browse-menu-section {
  padding: 60px 0 80px;
}

.browse-menu-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  color: #236832;
  margin-bottom: 50px;
}

/* Menu Items Grid */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1250px;
  margin: 0 auto;
}

.menu-item-card {
  display: flex;
  background: #ffffff;
  border-radius: 24px;
  padding: 18px;
  box-shadow: none;
  border: 1px solid #808386;
  transition: transform 0.3s;
  gap: 18px;
  align-items: stretch;
}

.menu-item-card:hover {
  transform: translateY(-4px);
}

.menu-item-img {
  width: 100%;
  max-width: 170px;
  /* min-height: 100px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  margin: 0px 30px; */
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-info {
  padding: 4px 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.menu-item-name {
  font-weight: 600;
  font-size: 28px;
  color: #1e1e1e;
  margin-bottom: 6px;
}

.menu-item-desc {
  font-weight: 400;
  font-size: 20px;
  color: #555555;
  margin-bottom: 14px;
}

.rating_star {
  color: #ff9931;
  font-size: 24px;
}

.menu-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-item-price {
  font-weight: 700;
  font-size: 22px;
  color: #1e1e1e;
}

.btn-add-item {
  background: #EB3B2E;
  color: #ffffff;
  border: none;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
}

.btn-add-item:hover {
  background: #e03a12;
  transform: translateY(-1px);
}

/* Quantity Control - Circular icon buttons */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  background: #EB3B2E;
  border-radius: 50px;
  padding: 3px 5px;
}

.qty-btn {
  background: none;
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  padding: 0;
}

.qty-btn i {
  font-size: 26px;
}

.qty-btn:hover {
  opacity: 0.8;
}

.qty-value {
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  min-width: 30px;
  text-align: center;
}

/* ===== LOGIN PAGE ===== */
.login-section {
  padding: 70px 0 100px;
}

.login-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.login-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #EB3B2E;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-style: normal;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-input-group {
  position: relative;
}

.form-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 15px;
  /* side space on mobile */
}

.custom-form {
  width: 100%;
  max-width: 700px;
}

.login-label {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 40px;
  letter-spacing: 0%;
  color: #1e1e1e;
}

.login-input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #1b2141;
  background: #ffffff;
  outline: none;
  transition: border-color 0.3s;
}

.login-input::placeholder {
  color: #a0a0a0;
  font-weight: 400;
}

.login-input:focus {
  border-color: #EB3B2E;
}

.password-group {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #1b2141;
  font-size: 18px;
  padding: 0;
}

.login-forgot {
  text-align: right;
  margin-top: -8px;
}

.login-forgot a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1b2141;
  text-decoration: none;
}

.login-forgot a:hover {
  color: #EB3B2E;
}

.btn-login {
  width: 100%;
  padding: 16px;
  background: #EB3B2E;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.btn-login:hover {
  background: #e03a12;
}

.login-signup-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1b2141;
  margin-top: 10px;
}

.login-signup-text a {
  color: #EB3B2E;
  font-weight: 500;
  text-decoration: none;
}

.login-signup-text a:hover {
  text-decoration: underline;
}

/* ===== SIGN UP PAGE ===== */
.phone-input-group {
  display: flex;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  overflow: hidden;
}

.phone-code-select {
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-right: 1px solid #d0d0d0;
  background: #ffffff;
}

.phone-code {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #1b2141;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  padding: 4px 0;
}

.phone-number-input {
  border: none !important;
  border-radius: 0 !important;
}

.terms-check {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.terms-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #1b2141;
  flex-shrink: 0;
  cursor: pointer;
}

.terms-label {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #1b2141;
}

.terms-label a {
  color: #EB3B2E;
  text-decoration: none;
  font-weight: 500;
}

.terms-label a:hover {
  text-decoration: underline;
}

/* ===== OTP VERIFICATION PAGE ===== */
.otp-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #1b2141;
  margin-bottom: 6px;
}

.otp-desc {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1b2141;
  margin-bottom: 30px;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.otp-box {
  width: 60px;
  height: 70px;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1b2141;
  outline: none;
  transition: border-color 0.3s;
}

.otp-box:focus {
  border-color: #EB3B2E;
}

.otp-resend {
  margin-bottom: 8px;
}

.otp-resend a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #EB3B2E;
  text-decoration: none;
}

.otp-resend a:hover {
  text-decoration: underline;
}

.otp-timer {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1b2141;
  margin-bottom: 20px;
}

.about-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  /* space between images */
  /* height: 520px;             control overall height */
}

.collage-left {
  height: 100%;
}

.collage-left img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.collage-right {
  display: grid;
  gap: 18px;
}

.collage-right img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

/* Flavors Section */
.about-flavors-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.about-flavors-inner {
  position: relative;
  width: 650px;
  max-width: 100%;
}

.about-flavors-shape {
  width: 100%;
  display: block;
}

.about-flavors-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  text-align: center;
}

.about-flavors-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #fff;
  margin-bottom: 12px;
}

.about-flavors-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin-bottom: 12px;
}

.about-flavors-desc {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-view-menu {
  display: inline-block;
  background: #eb3b2e;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-view-menu:hover {
  background: #e03a12;
  color: #fff;
}

.contact_text {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #434343;
}

.contact_text i,
.contact_text h3 {
  color: #eb3b2e;
  font-size: 20px !important;
}

.order-success h2 {
  font-size: 28px;
}

.order-success p {
  line-height: 1.7;
  max-width: 680px;
}

.order-details {
  max-width: 600px;
  font-size: 15px;
}

.shopping-btn {
  background-color: #EB3B2E;
  color: #fff;
}

.shopping-btn:hover {
  background-color: #e03a12;
  color: #fff;
}

/* Dashboard Layout */
.dashboard-content {
  background-color: #ffffff;
}

/* Sidebar */
.sidebar {
  background-color: #f4f4f4;
  padding: 75px 37px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-link {
  font-size: 18px;
  color: #000000;
  text-decoration: none;
}

.sidebar-link.active,
.sidebar-link:hover,
.logout-btn:hover {
  color: #0f4c5c;
}

/* Profile Form */
.profile-form {
  padding: 40px;
}

.profile-form-group label {
  font-size: 18px;
  color: #555555;
}

.profile-form-group input {
  width: 100%;
  height: 90px;
  padding: 0 40px;
  border: 1px solid #808386;
  font-size: 18px;
  background: transparent;
}

.profile-form-group input:focus {
  border-color: #c9a44c;
  outline: none;
}

.change-password-link {
  display: inline-block;
  margin-bottom: 50px;
  font-size: 20px;
  color: #0f4c5c;
}

.change-password-link:hover {
  color: #c9a44c;
}

.dashboard-submit-btn {
  width: 100%;
  height: 100px;
  background-color: #c9a44c;
  border: none;
  font-size: 36px;
  text-transform: uppercase;
  cursor: pointer;
}

.dashboard-submit-btn:hover {
  background-color: #b8934a;
}

/* 
    .product-img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid #ddd;
    } */
.divider {
  border-top: 1px solid #ddd;
  margin: 20px 0;
}

.track-title {
  font-family: Poppins;
  font-weight: 500;
  font-style: Medium;
  font-size: 32px;
  line-height: 40px;
  color: #000000;
}

/* ------------------------
   Mobile Responsive Rules
------------------------- */
@media (max-width: 991px) {
  .sidebar {
    padding: 30px 20px;
    text-align: center;
  }

  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .sidebar-link {
    font-size: 16px;
  }

  .profile-form {
    padding: 40px 20px;
  }

  .profile-form-group input {
    height: 55px;
    font-size: 15px;
    padding: 0 20px;
  }

  .change-password-link {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .dashboard-submit-btn {
    height: 55px;
    font-size: 18px;
  }
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.sidebar-link.active {
  font-weight: 600;
  color: #000;
}

/* Subscription Card */
.subscription-card {
  background-color: #fbf8f3;
  border: 2px solid #c9a44c;
}

/* Header */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 43px 89px;
}

.plan-title {
  font-weight: 800;
  font-size: 35px;
  text-transform: uppercase;
  color: #0f4c5c;
}

/* Date */
.date-info {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 16px;
  color: #555555;
}

.dropdown-btn {
  background: none;
  border: none;
}

/* Divider */
.suscription-divider {
  height: 1px;
  background-color: #1e1e1e;
  margin-bottom: 50px;
}

/* Content */
.plan-details {
  padding: 43px 89px;
}

.plan-name,
.validity,
.fee {
  font-size: 16px;
  color: #555555;
}

.fee {
  margin-bottom: 80px;
}

/* Button */
.renew-btn {
  background-color: #c9a44c;
  border: none;
  padding: 18px 36px;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
}

.renew-btn:hover {
  background-color: #b8934a;
}

/* ------------------------
   Mobile Responsive Rules
------------------------- */
@media (max-width: 768px) {
  .card-header {
    padding: 25px 20px;
    text-align: center;
  }

  .plan-title {
    font-size: 22px;
  }

  .date-info {
    gap: 15px;
    font-size: 14px;
    justify-content: center;
  }

  .plan-details {
    padding: 25px 20px;
  }

  .fee {
    margin-bottom: 40px;
  }

  .renew-btn {
    width: 100%;
    font-size: 16px;
    padding: 14px;
  }
}

@media (max-width: 1399px) {
  .hero-content h1 {
    font-size: 56px;
    line-height: 66px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .menu-circle {
    width: 210px;
    height: 210px;
  }

  .menu-items-wrapper {
    height: 800px;
  }

  /* Menu Page */
  .menu-banner-title {
    font-size: 65px;
  }

  .browse-menu-title {
    font-size: 42px;
  }
}

/* --- LG: 992–1199px (tablet landscape) --- */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 48px;
    line-height: 58px;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 30px;
  }

  .hero-paan-img {
    width: 38%;
  }

  .hero-leaf-bottom {
    width: 300px;
  }

  .tagline-text {
    font-size: 28px;
    line-height: 42px;
  }

  /* Welcome */
  .welcome-wrapper {
    min-height: 550px;
  }

  .welcome-text-box {
    width: 48%;
    padding: 35px 30px;
  }

  .welcome-text-box h3 {
    font-size: 22px;
    line-height: 34px;
  }

  .welcome-text-box p {
    font-size: 14px;
    line-height: 24px;
  }

  /* Menu */
  .menu-items-wrapper {
    height: 700px;
  }

  .menu-circle {
    width: 180px;
    height: 180px;
    border-width: 12px;
  }

  .menu-label {
    font-size: 22px;
    line-height: 50px;
  }

  .menu-bg {
    width: 90%;
  }

  /* Testimonials */
  .testimonial-card-wrapper {
    max-width: 90%;
  }

  .section-heading,
  .menu-title {
    font-size: 45px;
    line-height: 60px;
  }

  /* Menu Page */
  .menu-banner-title {
    font-size: 55px;
  }

  .menu-banner-drink-left,
  .menu-banner-drink-right {
    height: 75%;
  }

  .browse-menu-title {
    font-size: 38px;
    margin-bottom: 40px;
  }

  .category-tab {
    width: 170px;
    height: 110px;
  }

  .menu-category-tabs {
    gap: 20px;
  }

  .menu-item-img {
    width: 160px;
    height: 160px;
  }

  .menu-item-name {
    font-size: 20px;
  }

  .menu-item-desc {
    font-size: 13px;
    line-height: 20px;
  }

  .menu-item-price {
    font-size: 20px;
  }
}

/* --- MD: 768–991px (tablet portrait) --- */
@media (max-width: 991px) {

  /* Navbar */
  .navbar {
    position: relative;
  }

  .navbar .container-fluid {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-brand {
    order: 1;
  }

  .nav-right {
    order: 2;
    margin-left: auto;
  }

  /* .btn-signin {
        display: none !important;
    } */

  .navbar-toggler {
    order: 3;
    border: none;
    padding: 6px 0 6px 10px;
    font-size: 28px;
    color: #1b2141;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .offcanvas-end {
    width: 280px;
  }

  .offcanvas-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 20px;
  }

  .offcanvas-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1b2141;
  }

  .offcanvas-body .navbar-nav {
    gap: 0 !important;
  }

  .offcanvas-body .navbar-nav .nav-link {
    padding: 12px 20px;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
  }

  .logo-img {
    height: 55px;
  }

  .navbar-nav .nav-link {
    font-size: 17px;
  }

  .btn-cart {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .cart-badge {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .btn-signin {
    font-size: 16px;
  }

  /* Hero */
  .hero-section {
    min-height: 520px;
  }

  .hero-content {
    padding-top: 70px;
    padding-bottom: 80px;
    padding-left: 40px;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 46px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 26px;
    max-width: 400px;
  }

  .checkout-divider {
    margin: 20px 0;
    border: none;
    border-top: 2px solid #999696;
    max-width: 1000px;
  }

  .hero-paan-img {
    width: 35%;
    top: 15%;
  }

  .hero-leaf-top {
    width: 180px;
  }

  .hero-leaf-bottom {
    width: 220px;
    bottom: -20px;
  }

  /* Tagline */
  .tagline-section {
    padding: 60px 0 40px;
  }

  .tagline-text {
    font-size: 22px;
    line-height: 36px;
  }

  .tagline-icon img {
    height: 70px;
  }

  /* Welcome */
  .welcome-section {
    padding: 40px 0 80px;
  }

  .welcome-wrapper {
    min-height: 450px;
  }

  .welcome-img-box {
    width: 75%;
  }

  .welcome-text-box {
    width: 55%;
    padding: 25px 22px;
  }

  .welcome-text-box h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }

  .welcome-text-box p {
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 8px;
  }

  .welcome-text-box .btn-cta {
    font-size: 15px;
    padding: 8px 22px;
  }

  .blob-orange-right {
    width: 500px;
    height: 500px;
  }

  /* Menu */
  .menu-section {
    padding: 60px 0 0;
  }

  .section-heading,
  .menu-title {
    font-size: 38px;
    line-height: 50px;
    margin-bottom: 25px;
  }

  .menu-items-wrapper {
    height: 580px;
  }

  .menu-bg {
    width: 95%;
    padding: 40px 0 30px;
  }

  .menu-circle {
    width: 150px;
    height: 150px;
    border-width: 10px;
  }

  .menu-label {
    font-size: 20px;
    line-height: 40px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 70px 0 80px;
  }

  .testimonial-card-wrapper {
    max-width: 95%;
  }

  .testimonial-img-box {
    min-height: 350px;
  }

  .review-text {
    font-size: 17px;
    line-height: 30px;
  }

  .reviewer-avatar {
    width: 70px;
    height: 70px;
  }

  .reviewer-name {
    font-size: 20px;
  }

  /* Footer */
  .footer-main {
    padding: 100px 0 25px;
  }

  .footer-main .sub-footer,
  .footer-bottom .sub-footer {
    width: 90%;
  }

  .footer-heading {
    font-size: 18px;
  }

  .footer-text {
    font-size: 14px;
    line-height: 26px;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  /* Menu Page */
  .menu-banner-bg {
    padding: 60px 0 50px;
  }

  .menu-banner-title {
    font-size: 45px;
  }

  .menu-banner-leaf-left,
  .menu-banner-leaf-right {
    width: 160px;
  }

  .menu-banner-drink-left,
  .menu-banner-drink-right {
    height: 70%;
  }

  .browse-menu-title {
    font-size: 34px;
    line-height: 46px;
    margin-bottom: 35px;
  }

  .category-tab {
    width: 160px;
    height: 100px;
  }

  .category-tab span {
    font-size: 14px;
  }

  .menu-items-grid {
    gap: 20px;
  }

  .menu-item-card {
    padding: 12px;
    gap: 12px;
  }

  .menu-item-img {
    width: 150px;
    height: 150px;
  }

  .menu-item-info {
    padding: 5px 8px;
  }

  .menu-item-name {
    font-size: 17px;
  }

  .menu-item-desc {
    font-size: 12px;
    line-height: 19px;
    margin-bottom: 10px;
  }

  .menu-item-price {
    font-size: 18px;
  }

  .btn-add-item {
    font-size: 13px;
    padding: 7px 18px;
  }
}

/* --- SM: 576–767px (mobile landscape) --- */
@media (max-width: 768px) {

  /* Navbar */
  .logo-img {
    height: 50px;
  }

  .hero-content {
    padding-top: 70px;
    padding-bottom: 80px;
    padding-left: 40px;
  }

  .menu-banner {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem !important;
    line-height: 46px;
  }

  /* .nav-right .btn-signin {
        display: none !important;
    } */

  .btn-cart {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  /* Order Details */
  .od-status-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .od-order-id {
    font-size: 18px;
  }

  .od-progress-wrapper {
    gap: 0;
  }

  .od-progress-step {
    min-width: 60px;
  }

  .od-progress-step span {
    font-size: 10px;
  }

  .od-progress-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  /* About Page */
  .about-intro-section {
    padding: 40px 0 30px;
  }

  .about-intro-tagline {
    font-size: 16px;
  }

  .about-intro-header {
    margin-bottom: 30px;
  }

  .about-main-title {
    font-size: 22px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-main-img {
    max-width: 100%;
  }

  .about-badge {
    width: 100px;
    height: 100px;
    padding: 10px;
  }

  .about-badge {
    top: 15%;
    left: 12%;
  }

  .about-badge h4 {
    font-size: 18px;
  }

  .about-badge p {
    font-size: 9px;
  }

  .about-story-section {
    padding: 30px 0 40px;
  }

  .about-story-img {
    max-width: 100%;
  }

  .about-flavors-section {
    min-height: auto;
    padding: 40px 15px;
  }

  .about-flavors-content {
    width: 80%;
  }

  .about-flavors-title {
    font-size: 1.5rem;
  }

  .about-flavors-subtitle {
    font-size: 1.2rem;
  }

  .about-flavors-desc {
    font-size: 12px;
  }

  /* Contact Cards */
  .contact-cards-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .contact-card {
    width: 100%;
    max-width: 400px;
  }

  /* Contact Map */
  .contact-cards-section {
    padding: 40px 0 30px;
  }

  .contact-map-section {
    padding: 20px 0 50px;
  }

  .map-wrapper {
    margin-top: 20px;
  }

  .map-wrapper iframe {
    height: 300px;
    border-radius: 12px;
  }

  .btn-get-directions {
    bottom: 15px;
    padding: 8px 24px;
    font-size: 13px;
  }

  /* Hero */
  .hero-section {
    min-height: 400px;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 38px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 22px;
    max-width: 320px;
  }

  .hero-paan-img {
    width: 21%;
    top: 44%;
    right: 13%;
  }

  .hero-leaf-top {
    width: 120px;
    top: -10px;
  }

  .hero-leaf-bottom {
    width: 180px;
    bottom: -15px;
  }

  .hero-union-bg {
    object-position: 70% bottom;
  }

  /* Tagline */
  .tagline-section {
    padding: 50px 15px 30px;
  }

  .tagline-text {
    font-size: 18px;
    line-height: 30px;
  }

  .tagline-icon img {
    height: 55px;
  }

  /* Welcome - stack vertically */
  .welcome-section {
    padding: 30px 0 30px;
  }

  .welcome-wrapper {
    min-height: auto;
  }

  .welcome-img-box {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .welcome-text-box {
    position: relative;
    width: 90%;
    top: auto;
    left: 5%;
    transform: none;
    margin-top: -50px;
    padding: 30px 25px;
  }

  .welcome-text-box h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .welcome-text-box p {
    font-size: 14px;
    line-height: 24px;
  }

  .welcome-leaf {
    display: none;
  }

  .blob-orange-right {
    display: none;
  }

  .blob-green-left {
    width: 180px;
    height: 180px;
  }

  /* Menu */
  .menu-section {
    padding: 25px 0 0;
  }

  .menu-title,
  .section-heading {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 30px;
  }

  .menu-items-wrapper {
    height: auto;
    min-height: 500px;
  }

  .menu-bg {
    width: 100%;
    padding: 35px 10px 25px;
  }

  .menu-circle {
    width: 130px !important;
    height: 130px !important;
    border-width: 8px;
    margin-bottom: 5px;
  }

  .menu-circle img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
  }

  .menu-label {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .menu-btn-wrapper {
    margin-top: 10px;
    margin-bottom: 0;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 60px 0 70px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .testimonial-card-wrapper {
    max-width: 100%;
  }

  .testimonial-img-box {
    min-height: 250px;
    aspect-ratio: auto;
  }

  .testimonial-review-box {
    padding: 30px 25px;
  }

  .review-text {
    font-size: 15px;
    line-height: 26px;
  }

  .reviewer-avatar {
    width: 55px;
    height: 55px;
  }

  .reviewer-name {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .reviewer-stars i {
    font-size: 18px;
  }

  .testimonial-blob-green,
  .testimonial-blob-orange {
    display: none;
  }

  /* Footer */
  .footer-main {
    padding: 80px 0 20px;
  }

  .footer-main .sub-footer,
  .footer-bottom .sub-footer {
    width: 92%;
  }

  .footer-heading {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .footer-text {
    font-size: 13px;
    line-height: 24px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-copyright {
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .footer-bottom {
    padding: 15px 0;
  }

  /* CTA button */
  .btn-cta {
    font-size: 16px;
    padding: 10px 28px;
  }

  /* Menu Page */
  .menu-banner-bg {
    padding: 50px 0 40px;
  }

  .menu-banner-title {
    font-size: 38px;
  }

  .menu-banner-leaf-left,
  .menu-banner-leaf-right {
    width: 120px;
  }

  .menu-banner-drink-left {
    left: 5%;
    height: 65%;
  }

  .menu-banner-drink-right {
    right: 5%;
    height: 60%;
  }

  .browse-menu-section {
    padding: 40px 0 60px;
  }

  .browse-menu-title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 30px;
  }

  .menu-category-tabs {
    gap: 15px;
    margin-bottom: 35px;
  }

  .category-tab {
    width: 140px;
    height: 90px;
    border-width: 3px;
  }

  .category-tab span {
    font-size: 13px;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    gap: 20px;
  }

  .menu-item-card {
    padding: 12px;
  }

  .menu-item-img {
    width: 150px;
    height: 150px;
  }

  .menu-item-info {
    padding: 5px 10px;
  }

  .menu-item-name {
    font-size: 18px;
  }

  .menu-item-desc {
    font-size: 13px;
    line-height: 21px;
  }
}

/* --- XS: <576px (mobile portrait) --- */
@media (max-width: 575px) {

  /* Navbar */
  .logo-img {
    height: 42px;
  }

  .tagline-section {
    padding: 30px 15px 15px;
  }

  z

  /* Hero */
  .hero-section {
    min-height: 350px;
  }

  .hero-content {
    padding-top: 9px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 10px;
  }

  .hero-content h1 {
    font-size: 1.4rem !important;
    line-height: 32px;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 12px;
    line-height: 20px;
    max-width: 250px;
    margin-bottom: 20px;
  }

  .hero-paan-img {
    width: 31%;
    top: 49%;
    right: 3%;
  }

  .hero-leaf-top {
    width: 90px;
  }

  .hero-leaf-bottom {
    width: 140px;
  }

  .btn-cta {
    font-size: 14px;
    padding: 8px 22px;
  }

  /* Tagline */
  .tagline-text {
    font-size: 16px;
    line-height: 26px;
  }

  .tagline-icon img {
    height: 45px;
  }

  .menu-banner {
    height: 300px;
  }

  .about-badge {
    top: 3%;
    left: 2%;
  }

  .about-flavors-desc {
    font-size: 10px;
  }

  .about-flavors-subtitle {
    font-size: 10px;
  }

  .about-flavors-content {
    top: 58%;
  }

  .about-flavors-title {
    font-size: 13px;
  }

  /* Welcome */
  .welcome-img-box {
    height: 220px;
  }

  .welcome-text-box {
    width: 92%;
    left: 4%;
    padding: 22px 18px;
  }

  .welcome-text-box h3 {
    font-size: 18px;
    line-height: 26px;
  }

  .welcome-text-box p {
    font-size: 13px;
    line-height: 22px;
  }

  .welcome-text-box .btn-cta {
    font-size: 14px;
    padding: 8px 20px;
  }

  /* Menu */
  .menu-title,
  .section-heading {
    font-size: 28px;
    line-height: 38px;
  }

  .menu-items-wrapper {
    min-height: 580px;
  }

  .menu-circle {
    width: 110px;
    height: 110px;
    border-width: 6px;
  }

  .menu-label {
    font-size: 14px;
    line-height: 24px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 20px 0 60px;
  }

  .testimonial-img-box {
    min-height: 200px;
  }

  .testimonial-review-box {
    padding: 22px 18px;
  }

  .review-text {
    font-size: 13px;
    line-height: 22px;
  }

  .reviewer-avatar {
    width: 45px;
    height: 45px;
  }

  .order-item-card {
    display: flex;
    border: 1px solid #808386;
    border-radius: 16px;
    padding: 16px;
    gap: 16px;
    flex-direction: column;
    align-content: stretch;
    justify-content: center;
    align-items: flex-start;
  }

  .payment-section .container-fluid {
    padding: 0 20px;
  }

  .reviewer-stars i {
    font-size: 15px;
  }

  .reviewer-name {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .review-dots .dot {
    width: 12px;
    height: 12px;
  }

  .review-dots {
    gap: 10px;
  }

  /* Footer */
  .footer-main {
    padding: 100px 0 15px;
  }

  .footer-main .sub-footer,
  .footer-bottom .sub-footer {
    width: 95%;
  }

  .footer-heading {
    font-size: 15px;
  }

  .footer-text {
    font-size: 12px;
    line-height: 22px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .footer-copyright {
    font-size: 11px;
    letter-spacing: 0.03em;
  }

  /* Menu Page */
  .menu-banner-bg {
    padding: 40px 0 30px;
  }

  .menu-banner-title {
    font-size: 32px;
  }

  .menu-banner-leaf-left,
  .menu-banner-leaf-right {
    width: 90px;
  }

  .menu-banner-drink-left,
  .menu-banner-drink-right {
    height: 55%;
  }

  .browse-menu-section {
    padding: 30px 0 50px;
  }

  .browse-menu-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 25px;
  }

  .menu-category-tabs {
    gap: 12px;
    margin-bottom: 30px;
  }

  .category-tab {
    width: 120px;
    height: 80px;
    border-radius: 12px;
  }

  .category-tab span {
    font-size: 11px;
    padding: 6px;
  }

  .menu-item-card {
    padding: 10px;
    border-radius: 14px;
    gap: 10px;
  }

  .menu-item-img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
  }

  .menu-item-info {
    padding: 2px 5px;
  }

  .menu-item-name {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .menu-item-desc {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 8px;
  }

  .menu-item-price {
    font-size: 16px;
  }

  .btn-add-item {
    font-size: 12px;
    padding: 6px 14px;
  }

  .qty-btn {
    width: 30px;
    height: 30px;
  }

  .qty-btn i {
    font-size: 22px;
  }

  .qty-value {
    font-size: 14px;
    min-width: 24px;
  }
}

/* --- XXS: <400px (very small phones) --- */
@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 20px;
    line-height: 28px;
  }

  .hero-content p {
    font-size: 11px;
    line-height: 18px;
    max-width: 200px;
  }

  .hero-section {
    min-height: 300px;
  }

  .menu-circle {
    width: 90px;
    height: 90px;
    border-width: 5px;
  }

  .menu-label {
    font-size: 12px;
  }

  .welcome-text-box h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .welcome-text-box p {
    font-size: 12px;
    line-height: 20px;
  }

  .tagline-text {
    font-size: 14px;
    line-height: 22px;
  }

  /* Menu Page */
  .menu-banner-title {
    font-size: 26px;
  }

  .menu-banner-leaf-left,
  .menu-banner-leaf-right {
    width: 70px;
  }

  .menu-banner-drink-left,
  .menu-banner-drink-right {
    height: 50%;
  }

  .browse-menu-title {
    font-size: 20px;
  }

  .category-tab {
    width: 100px;
    height: 70px;
    border-width: 2px;
    border-radius: 10px;
  }

  .category-tab span {
    font-size: 10px;
    padding: 4px;
  }

  .menu-item-card {
    padding: 8px;
    gap: 8px;
  }

  .menu-item-img {
    width: 50px;
    height: fit-content;
    border-radius: 8px;
    margin: 0px 10px;
  }

  .sub-text {
    font-size: 14px !important;
  }

  .menu-item-name {
    font-size: 14px;
  }

  .menu-item-desc {
    font-size: 11px;
    line-height: 16px;
  }

  .menu-item-price {
    font-size: 14px;
  }

  .qty-btn {
    width: 26px;
    height: 26px;
  }

  .qty-btn i {
    font-size: 20px;
  }

  .qty-value {
    font-size: 13px;
    min-width: 20px;
  }
}

/* Wrapper */
.yt-product-wrapper {
  /* max-width: 900px; */
  margin: auto;
}

/* Tabs */
.yt-tabs-header {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #808386;
}

.yt-tab-btn {
  padding: 12px 0;
  cursor: pointer;
  font-weight: 600;
  color: #999;
  position: relative;
  font-size: 1.3rem;
}

.yt-tab-btn.active {
  color: #e60023;
}

.yt-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e60023;
}

/* Content */
.yt-tab-content {
  padding: 20px 0;
  border-bottom: 1px solid #808386;
}


/* Icons */
.yt-icons img {
  width: 100%;
  max-width: 300px;
  margin-right: 15px;
}

/* Stars */
.yt-star {
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
}

.yt-star.active {
  color: orange;
}

/* Button */
.yt-btn-main {
  background: #EB3B2E;
  border: none;
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
}

.yt-btn-main:hover {
  background: #e60023;
}

.yt-progress-bar {
  height: 100%;
}

/* Mobile */
@media (max-width: 576px) {
  .yt-icons img {
    width: 140px;
  }

}

/* Wrapper */
.rp-wrapper {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.rp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rp-title {
  font-weight: 700;
  font-size: 22px;
}

.rp-nav {
  display: flex;
  gap: 8px;
}

/* Buttons */
.rp-nav-btn {
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #ff3b3b;
  color: #ff3b3b;
  background: #fff;
}

.rp-nav-btn.active {
  background: #ff3b3b;
  color: #fff;
}

/* Card */
.rp-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  position: relative;
  border: 1px solid #eee;
}

.rp-img-box {
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

.rp-img-box img {
  max-width: 100%;
  height: 120px;
  object-fit: contain;
}

/* Wishlist */
.rp-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* Text */
.rp-title-sm {
  font-weight: 600;
  font-size: 14px;
}

.rp-desc {
  font-size: 12px;
  color: #777;
}

/* Price */
.rp-price {
  font-weight: 700;
}

/* Button */
.rp-btn {
  background: #ff3b3b;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 13px;
}

/* Carousel spacing */
.carousel-item .col {
  padding: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .rp-img-box img {
    height: 100px;
  }
}

@media (max-width: 576px) {
  .rp-title {
    font-size: 18px;
  }
}

.rv-wrapper {
  /*max-width: 700px;*/
  margin: auto;
}

/* Review item */
.rv-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

/* Avatar */
.rv-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Content */
.rv-content {
  flex: 1;
}

/* Stars */
.rv-stars {
  color: #ff8c1a;
  font-size: 26px;
  margin-bottom: 3px;
}

/* Meta */
.rv-meta {
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

/* Text */
.rv-text {
  font-size: 13px;
  color: #444;
}

/* Responsive */
@media (max-width: 576px) {
  .rv-avatar img {
    width: 40px;
    height: 40px;
  }

  .rv-text {
    font-size: 12px;
  }

  .why-card-icon-wrap {
    width: 90px;
    height: 90px;
  }

  .why-card-icon-wrap img.circle-bg {
    width: 90px;
    height: 90px;
  }

  .badges-inner {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
  }

  .why-card {
    border-radius: 15px;
    padding: 18px 18px 18px;
  }

  .why-card p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
  }

  .why-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
  }

  .btn-red {
    background: #eb3b2e;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 12px 52px;
  }

  .btn-outline-white {
    color: black;
    background-color: #ffffff;
  }

  .why-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
  }

  .why-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
  }

  .btn-red {
    background: #EB3B2E;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 12px 52px;
  }

  .btn-outline-white {
    color: black;
    background-color: #ffffff;
  }

  .px-image-box img {
    max-height: 182px;
  }

  .od-input {
    width: 15px !important;

  }

  .od-product {
    flex-direction: row-reverse !important;
  }

  .od-products {
    flex-direction: column-reverse !important;

  }

  .od-coupon-input {

    padding: 12px !important;

  }

  .badges-inner,
  .featured-inner,
  .why-inner {
    padding: 0 12px;
  }
}

/* Row Layout */
.yt-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}


/* Progress */
.yt-progress {
  flex: 1;
  height: 20px;
  background: #e9e9e9;
  border-radius: 5px;
  overflow: hidden;
}

.yt-progress-bar {
  height: 100%;
  border-radius: 10px;
}

/* Colors */
.yt-bar-yellow {
  background: #f4b400;
}

.yt-bar-gray {
  background: #cfcfcf;
}

/* Label */
.yt-rating-label {
  width: 60px;
  font-size: 13px;
  color: #555;
  text-align: right;
}

/* Modal */
.sc-modal-dialog {
  max-width: 500px;
}

/* Header */
.sc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc-title {
  font-weight: 700;
  font-size: 20px;
}

/* Item */
.sc-item {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
  align-items: center;
}

.sc-item img {
  width: 70px;
}

/* Remove */
.sc-remove {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

/* Qty */
.sc-qty-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sc-btn {
  background: #EB3B2E;
  color: #fff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 5px;
}

.sc-input {
  width: 60px;
  text-align: center;
  height: 30px;
  border: 1px solid #ccc;
}

/* Buttons */
.sc-btn-outline {
  border: 2px solid #EB3B2E;
  color: #EB3B2E;
  border-radius: 30px;
  padding: 10px;
  width: 100%;
  background: transparent;
}

.sc-btn-main {
  background: #EB3B2E;
  color: #fff;
  border-radius: 30px;
  padding: 12px;
  width: 100%;
  border: none;
}

/* Footer */
.sc-note {
  font-size: 12px;
  color: #666;
}

/* Wrapper */
.od-wrapper {
  padding: 0 20px !important;
  margin: auto;
}

.od-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.od-step {
  background: #EB3B2E;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.od-head-row {
  font-weight: 600;
  margin-top: 20px;
  padding-bottom: 10px;
}

.od-item {
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.od-product {
  display: flex;
  align-items: center;
  gap: 15px;
}

.od-product img {
  width: 60px;
}

.od-remove {
  cursor: pointer;
  color: #999;
  font-size: 20px;
}

.od-qty-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.od-btn {
  background: #EB3B2E;
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 5px;
}

.od-input {
  width: 40px;
  text-align: center;
  border: none;
}

.od-label {
  display: none;
  font-weight: 700;
  font-size: 1.3rem;
  color: #000;
}

/* 🔥 Mobile Fix */
@media (max-width: 767px) {
  .od-head-row {
    display: none !important;
  }

  .od-item {
    display: block;
    /* border: 0; */
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px !important;
    margin: 0;
  }

  .od-item>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .od-product {
    display: flex !important;
    gap: 10px;
  }

  .od-label {
    display: none;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
  }

  .od-product img {
    width: 50px;
  }

  .od-label {
    display: inline;
  }

  .od-qty-box {
    justify-content: flex-end;
  }
}

/* Text */
.od-coupon-text {
  font-size: 13px;
  color: #444;
  margin-bottom: 10px;
}

/* Row */
.od-coupon-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

/* Input */
.od-coupon-input {
  flex: 1;
  height: 42px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 13px;
}

/* Button */
.od-coupon-btn {
  background: #EB3B2E;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 0 20px;
  font-size: 13px;
  white-space: nowrap;
}

/* Summary */
.od-summary-box {
  font-size: 13px;
  color: #444;
}

/* Row alignment */
.od-summary-row {
  display: grid;
  grid-template-columns: 80px 10px auto;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 576px) {
  .od-coupon-section {
    margin-left: 0;
    max-width: 100%;
  }

  .od-coupon-row {
    flex-direction: column;
  }

  .od-coupon-btn {
    width: 100%;
    height: 42px;
  }

  .od-payments {
    padding: 0px 0px 0 10px !important;
  }

  .checkout-wrapper {
    padding: 20px 20px !important;
  }

  .hero {
    min-height: 169px;
  }
}

.checkout-wrapper {
  padding: 40px 20px;
}

.checkout-card {
  background: #fff;
  border-radius: 10px;
}

/* .section-title {
      font-weight: 600;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    } */

.step-badge {
  width: 28px;
  height: 28px;
  background: #EB3B2E;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.form-control {
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
}

.payment-box {
  border-top: 1px solid #ddd;
  margin-top: 15px;
  padding-top: 15px;
}

.gpay-btn {
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 6px;
  background: #fff;
  font-weight: 500;
}

.pay-btn {
  background: #EB3B2E;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  width: 100%;
  font-weight: 600;
  margin-top: 15px;
}

.pay-btn:hover {
  background: #e60000;
}

.small-text {
  font-size: 12px;
  color: #777;
}

@media (max-width: 768px) {
  .checkout-card {
    padding: 5px;
  }

  .footer-logo {
    width: 150px;
    margin-bottom: 10px;
  }
}

.od-payments {
  padding: 0px 0px 0 30px;
}




.products-img {
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.product-title {
  font-size: 14px;
  line-height: 1.3;
}

.product-price {
  font-size: 16px;
}

@media (max-width: 576px) {
  .product-title {
    font-size: 13px;
  }

  .product-price {
    display: block;
    text-align: right;
  }

  .products-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
  }
}


.payment-details {
  max-width: 700px;
}

.pd-row {
  display: grid;
  grid-template-columns: 220px 20px 1fr;
  align-items: center;
  margin-bottom: 14px;
}

.pd-label {
  font-weight: 600;
}

.pd-colon {
  text-align: center;
}

.pd-value {
  text-align: left;
}

.pd-row.total .pd-value {
  font-weight: 700;
}

/* 📱 Mobile Fix */
@media (max-width: 576px) {
  .pd-row {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }

  .pd-colon {
    display: none;
  }

  .pd-value {
    text-align: left;
  }
}

.od-payments {
  padding: 0px 0px 0 30px;
}

.modal-content {
  position: relative;
}

.sc-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.shipping-card {
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.shipping-card img {
  width: 100%;
  max-width: 200px;
}

.shipping-text h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.shipping-text p {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}

/* Main Section */
.main-title {
  font-weight: 700;
  margin-top: 40px;
}

.sub-text {


  margin: 10px auto;
  font-size: 1.1rem;
  font-weight: 400;
}

.highlight-text {
  font-weight: 600;
  font-size: 1.3rem;
  margin-top: 15px;
}

/* CTA Box */
.cta-box {
  border: 2px dashed #EB3B2E;
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
  background: #fff;
}

.cta-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.btn-custom {
  background: #EB3B2E;
  color: #fff !important;
  border-radius: 25px;
  padding: 10px 25px;
  font-size: 14px;
  border: none;
}

.btn-custom:hover {
  background: #e63228;
}

.yt-tab-content h3 {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .shipping-card {
    flex-direction: column;
    text-align: center;
  }

  .shipping-card img {
    margin-bottom: 10px;
  }
}

.yt-tab-content h5 {
  font-size: 1.5rem;
}

.rp-slider-wrapper {
  overflow: hidden;
}

.rp-slider {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.4s ease;
}

.rp-slide {
  width: 25%;
  min-width: 25%;
  padding: 10px;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .rp-slide {
    min-width: 33.33%;
  }
}

@media (max-width: 768px) {
  .rp-slide {
    min-width: 50%;
  }
}

@media (max-width: 576px) {
  .rp-slide {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .px-image-box {

    max-height: 190px;
  }

  nu-items-grid {
    padding: 0 20px;
    gap: 25px;
  }

  /* .menu-item-img {
    height: 300px;
  } */
}

@media (max-width:1024px) {
  .nav-links {

    gap: 12px;

  }

}

@media (min-width:768px) and (max-width:1440px) {

  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: unset;
    object-fit: cover;
    object-position: center top;
    display: block;
    z-index: 0;
  }
}

.cart-dropdown {
  position: absolute;
  top: 55px;
  right: 0;
  width: 380px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 16px;
  display: none;
  z-index: 9999;
}

.cart-dropdown.show {
  display: block;
}

.tab-content .form-title {
  font-size: 19px;
}

.od-coupon-section {
  width: 84%;
}

.about-story-section h1 {
  font-size: 25px;
  font-weight: 600;
}

#contactBtn {
  width: fit-content !important;
  padding: 10px 20px !important;
}