/* ============================================================
   MOKAI – style.css  |  Developed by OASIS.IND.IN
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --orange:   #E8621A;
  --green:    #1E5F46;
  --green-lt: #236B4E;
  --cream:    #ffebb8;
  --cream-bg: #ffebb8;
  --tan-bg:   #F0E8D0;
  --menu-bg:  #ffebb8;
  --text-dark: #1a1a1a;
  --text-mid:  #444;
  --text-muted: #777;
  --white:    #ffffff;
  --font:     'Poppins', sans-serif;
  --script:   'Dancing Script', cursive;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  margin: 0;
  padding: 0;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; }

ul { list-style: none; padding: 0; margin: 0; }

/* ---------- UTILITIES ---------- */
.text-orange { color: var(--orange) !important; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  /*top: 33px;*/
  left: 0;
  width: 100%;
  max-width: 100vw !important;
  z-index: 999;
  padding: 10px 0;
  transition: background 0.3s, box-shadow 0.3s;
  height: 100px;
}
.header-left{
  height: 80px;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

.header.scrolled .nav-link,
.header.scrolled .header-action-link {
  color: var(--text-dark) !important;
}

.header.scrolled .menu-toggle span {
  background: var(--text-dark);
}

.header-inner {
  position: relative;
}

/* Burger */
.menu-toggle {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s;
}

/* Nav links */
.main-nav { margin-left: 8px; }

.nav-menu {
  display: flex;
  align-items: center;
  /*gap: 24px;*/
  gap: 10px;
  margin: 0;
}

.nav-menu li { position: relative; }

.nav-menu .nav-link {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  padding: 4px 0;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
  color: var(--green);
}

.nav-menu .nav-link i { margin-left: 2px; }

/* Center Logo */
.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 575px) {
  .header-center{
    transform: translateX(-50%);
  }
}

.logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

/* Right actions */
.header-right { gap: 10px; }

.header-action-link {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--white);
  transition: color 0.2s;
  white-space: nowrap;
}

.header-action-link:hover { color: var(--orange); }

.header-sep {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.cart-link { display: flex; align-items: center; }

@media (max-width: 575px) {
  .cart-link{
    right: 0px;
    position: absolute;
  }
}

.cart-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(10);
  transition: filter 0.2s;
}

.header.scrolled .cart-icon { filter: none; filter: brightness(0) !important; }
.cart-icon:hover { filter: brightness(0) saturate(100%) invert(43%) sepia(90%) saturate(500%) hue-rotate(5deg) brightness(95%); }

/* ---------- OFFCANVAS ---------- */
.mobile-menu-list { padding: 8px 0; }

.mobile-menu-list li { margin-bottom: 4px; }

.mobile-menu-list li a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color 0.2s;
}

.mobile-menu-list li a:hover { color: var(--orange); }

.offcanvas-contact p {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.btn-green-solid {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  border-radius: 6px;
  padding: 10px;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  transition: background 0.2s;
}

.btn-green-solid:hover { background: var(--green-lt); color: var(--white); }

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 6px;
  padding: 10px;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  transition: all 0.2s;
}

.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--orange);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}

/* White brushstroke swoosh behind the dish */
/*.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 30%;
  width: 55%;
  height: 60%;
  background: var(--white);
  transform: rotate(-8deg) skewY(-4deg);
  border-radius: 30% 50% 50% 30% / 30% 30% 50% 50%;
  opacity: 0.95;
  z-index: 0;
}*/

.hero > .container { position: relative; z-index: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

.hero-text h1 {
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-text h1 strong {
  font-weight: 800;
  display: block;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-dark {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s;
}

.btn-hero-dark:hover {
  background: var(--green-lt);
  border-color: var(--green-lt);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s;
}

.btn-hero-outline:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* Dish */
.hero-dish-wrap {
  position: absolute;
  right: -60px;
  top: -50%;
  transform: translateY(-55%);
  z-index: 3;
  width: 55%;
  max-width: 660px;
}

.hero-dish {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

/* Doodles */
.hero-doodles {
  position: absolute;
  /*bottom: -30px;*/
  bottom: -100px;
  left: 0;
  display: flex;
  gap: 28px;
  align-items: flex-end;
  z-index: 2;
}

.hero-doodles img {
  width: 58px;
  height: auto;
  opacity: 0.7;
  object-fit: contain;
}

.hero-doodles .doodle-faded { opacity: 0.35; }

/* ============================================================
   TOP SELLERS
   ============================================================ */
.top-sellers {
  background: #faf4e6;
  padding: 70px 0 90px;
}

.section-title-sm {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.top-sellers-header { margin-bottom: 8px; }

.btn-top-orders {
  background: transparent;
  border: 1.5px solid var(--text-dark);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-top-orders:hover {
  background: var(--text-dark);
  color: var(--white);
}

/* Food Cards */
.food-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 20px 50px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.food-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.food-card-img-wrap {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: #f3f3f3;
}

.food-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-card-body { padding-bottom: 8px; }

.food-card-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.food-card-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.food-card-price {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}

.btn-add-cart {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 25px;
  padding: 11px 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(30,95,70,0.3);
}

.btn-add-cart:hover {
  background: var(--green-lt);
  transform: translateX(-50%) translateY(-2px);
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  background: var(--menu-bg) url('/mokai/assets/img/mokai/bg1.png') repeat;
  background-size: cover;
  padding: 80px 0 90px;
  position: relative;
}

.menu-heading {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.menu-layout { align-items: flex-start; }

/* Category tabs */
.menu-tabs-col { padding-right: 32px; }

.menu-tabs { display: flex; flex-direction: column; gap: 12px; }

.menu-tab {
  background: #EEE3C2;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-dark);
  transition: background 0.2s, color 0.2s;
  text-align: center;
  user-select: none;
}

.menu-tab:hover { background: #e0d3a8; }

.menu-tab.active {
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
}

/* Menu item cards */
.menu-items-col { display: flex; flex-direction: column; gap: 20px; }

.menu-item-card {
  background: var(--white);
  border-radius: 50px;
  padding: 18px 28px 18px 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}

.menu-item-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.10); }

.menu-item-img-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-info { flex: 1; min-width: 0; }

.menu-item-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.menu-item-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-item-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
  margin-left: 16px;
  white-space: nowrap;
}

/* ============================================================
   CATERING
   ============================================================ */
.catering {
  background: var(--green);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background-image: url('/mokai/assets/img/mokai/bg2.png');
  background-size: cover;
}

.catering-left {}

.catering-heading {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
}

.catering-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin: 0;
}

/* Form box */
.catering-form-box {
  background: var(--cream-bg);
  border-radius: 16px;
  padding: 32px 28px;
}

.form-box-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.form-group-custom { margin-bottom: 0; }

.form-input-custom {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #ccc;
  padding: 12px 4px;
  font-size: 13.5px;
  font-family: var(--font);
  color: var(--text-dark);
  outline: none;
  margin-bottom: 6px;
  transition: border-color 0.2s;
  display: block;
}

.form-input-custom:focus { border-color: var(--orange); }

.form-input-custom::placeholder { color: #aaa; }

.btn-submit {
  margin-top: 20px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 13px 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.25s, transform 0.2s;
}

.btn-submit:hover {
  background: #c95516;
  transform: translateY(-2px);
}

/* ============================================================
   CHEF SECTION
   ============================================================ */
.chef-section {
  padding: 90px 0 80px;
  background: var(--white);
  overflow: hidden;
}

.chef-heading {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 60px;
}

.chef-script {
  font-family: var(--script);
  font-weight: 700;
  color: var(--orange);
  font-size: 1.2em;
  line-height: 1;
}

/* Chef layout: 3-column grid */
.chef-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.chef-icons-left,
.chef-icons-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.chef-icons-left { align-items: flex-end; text-align: right; }
.chef-icons-right { align-items: flex-start; text-align: left; }

.chef-icon-item { display: flex; flex-direction: column; align-items: inherit; gap: 10px; }

@media (min-width: 991px) {
  .chef-icon-item.me-70{
    margin-right: 70px;
  }
  .chef-icon-item.ms-70{
    margin-left: 70px;
  }
}

.chef-icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.chef-icon-circle:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(232,98,26,0.15);
}

.chef-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chef-icon-label {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.45;
  margin: 0;
  max-width: 130px;
}

.chef-icons-left .chef-icon-label { text-align: right; }
.chef-icons-right .chef-icon-label { text-align: left; }

/* Chef center */
.chef-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chef-bg-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.chef-circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.chef-circle-ring.r1 { width: 300px; height: 300px; }
.chef-circle-ring.r2 { width: 450px; height: 450px; }
.chef-circle-ring.r3 { width: 600px; height: 600px; }

.chef-photo {
  width: 280px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.chef-name-badge {
  position: relative;
  z-index: 3;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  padding: 14px 28px;
  text-align: center;
  margin-top: -20px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 4px 16px rgba(232,98,26,0.35);
}

.chef-name-badge strong { font-size: 16px; }
.chef-name-badge span { font-size: 12.5px; opacity: 0.92; }

/* ============================================================
   OFFER SECTION
   ============================================================ */
.offer-section {
  position: relative;
  overflow: hidden;
}

.offer-bg { position: relative; }

.offer-bg-img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.offer-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.offer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
  flex-wrap: wrap;
}

.offer-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.offer-card {
  background: var(--cream-bg);
  border-radius: 16px;
  padding: 24px 28px;
  min-width: 260px;
  max-width: 320px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.offer-save-badge {
  position: absolute;
  top: -28px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 4px 16px rgba(232,98,26,0.4);
}

.offer-save-badge strong { font-size: 18px; }

.offer-dish-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.offer-dish-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.55;
}

.btn-add-to-cart-red {
  background: #e8192c;
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.25s;
}

.btn-add-to-cart-red:hover { background: #c8121f; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background: #f0f8f7;
  padding: 75px 0;
}

.process-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
}

.process-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.process-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.process-arrow {
  position: absolute;
  top: 24px;
  right: -18px;
  color: var(--text-mid);
  font-size: 16px;
  opacity: 0.5;
  z-index: 1;
}

.process-step.last .process-arrow { display: none; }

.process-label {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* ============================================================
   TESTIMONIAL SECTION
   ============================================================ */
.testimonial-section {
  background: #e8f0ee url('/mokai/assets/img/mokai/bg1.png') repeat;
  background-size: 150%;
  padding: 80px 0;
}

.testimonial-heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  height: 100%;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testi-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 2px;
  color: var(--text-dark);
}

.testi-role {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.testi-quote-icon {
  color: var(--orange);
  font-size: 22px;
  flex-shrink: 0;
}

.testi-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 20px 0 18px;
}

.testi-stars { display: flex; align-items: center; gap: 4px; }

.testi-stars i { color: var(--orange); font-size: 14px; }
.testi-stars .fa-regular.fa-star { color: #ddd; }

.testi-rating {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cream-bg);
  padding: 60px 0 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 240px;
  margin-bottom: 20px;
}

.footer-hours { margin-top: 4px; }

.hours-row {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.hours-row .day { font-weight: 600; min-width: 80px; }
.hours-row .time { color: var(--text-mid); }

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links li a {
  font-size: 13.5px;
  color: var(--text-mid);
  transition: color 0.2s;
}

.footer-links li a:hover { color: var(--orange); }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}

.footer-contact-list li i {
  color: var(--orange);
  width: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.social-icons { display: flex; gap: 10px; margin-top: 4px; }

.social-icon {
  width: 38px;
  height: 38px;
  background: var(--text-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.25s, transform 0.2s;
}

.social-icon:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0,0,0,0.04);
  margin-top: 48px;
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-bottom p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(232,98,26,0.4);
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top-btn:hover { transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- Tablet (≤ 991px) ---- */
@media (max-width: 991px) {

  .hero {
    padding: 120px 0 100px;
    min-height: auto;
  }

  .hero::after {
    display: none;
  }

  .hero-dish-wrap {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 80%;
    max-width: 420px;
    margin: 30px auto 0;
  }

  .hero-doodles { bottom: -10px; }

  .hero-doodles img { width: 42px; }

  .chef-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .chef-icons-left,
  .chef-icons-right {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
  }

  .chef-icons-left .chef-icon-label,
  .chef-icons-right .chef-icon-label { text-align: center; }

  .chef-icon-item { align-items: center; }

  .menu-tabs-col { margin-bottom: 30px; }

  .menu-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .menu-tab { padding: 10px 16px; font-size: 13px; }

  .menu-item-card { border-radius: 16px; }

  .offer-inner { flex-direction: column; align-items: flex-start; padding: 20px; }

  .offer-card { min-width: auto; max-width: 100%; width: 100%; }

  .catering { padding: 70px 0; }

}

/* ---- Mobile (≤ 575px) ---- */
@media (max-width: 575px) {

  .hero { padding: 100px 0 80px; }

  .hero-text h1 { font-size: 28px; }

  .hero-buttons { gap: 10px; }
  .btn-hero-dark, .btn-hero-outline { padding: 10px 20px; font-size: 13px; }

  .hero-dish-wrap { width: 95%; }

  .hero-doodles img { width: 34px; }

  .top-sellers { padding: 60px 0 80px; }

  .food-card { padding: 18px 14px 48px; }

  .food-card-img-wrap { width: 100px; height: 100px; }

  .menu-section { padding: 60px 0; }

  .menu-item-card {
    flex-wrap: wrap;
    border-radius: 16px;
    gap: 12px;
  }

  .menu-item-img-wrap { width: 80px; height: 80px; }

  .menu-item-price { margin-left: 0; }

  .catering-heading { font-size: 30px; }

  .chef-photo { width: 200px; }

  .chef-icon-circle { width: 70px; height: 70px; }

  .process-steps { gap: 20px; }

  .process-step { min-width: 120px; }

  .process-arrow { display: none; }

  .footer-bottom p { text-align: center; }

}

/* ============================================================
   UTILITY CLASSES  (replaces former inline styles)
   ============================================================ */

/* Offcanvas sidebar logo */
.offcanvas-logo { height: 90px; }

/* Positional helper used on hero breadcrumb wrappers */
.rel-z2 { position: relative; z-index: 2; }

/* ---- JS state classes (set by JS instead of inline style) ---- */

/* Form input validation error */
.input-error { border-color: #e8192c !important; }

/* Catering / contact submit button – success state */
.btn-submitted {
  background: var(--green) !important;
  color: var(--white) !important;
}

/* Add-to-cart button – brief feedback state */
.btn-added-feedback {
  background: var(--green) !important;
  color: var(--white) !important;
}

/* Menu-detail add-to-cart – feedback state */
.btn-cart-added {
  background: #27ae60 !important;
  color: var(--white) !important;
}

/* Wishlist heart icon – active (saved) state */
.wishlist-active { color: #e8192c !important; }


.dropdown-menu {
  border-radius: 12px;
  padding: 10px;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dropdown-item {
  padding: 8px 14px;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
}
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    font-size: 12px;
    line-height: 1;
  }
}/* ============================================================
   ABOUT US PAGE
   ============================================================ */

.nav-menu .nav-link, .header-action-link{
  color: var(--text-dark) !important;
}
.cart-icon{
  filter: brightness(0%) !important;
}
.menu-toggle span{
  background: var(--text-dark) !important;
}
/* ---- Breadcrumb / Page Header ---- */
.about-header {
  background: var(--cream-bg);
  padding: 140px 0 40px;
  position: relative;
  overflow: hidden;
}

.about-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  background: #f3d893;
  border-radius: 24px;
  padding: 40px 50px;
}

.about-breadcrumb {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.about-breadcrumb a:hover { color: var(--orange); }

.about-breadcrumb span { color: var(--orange); }

.about-page-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin: 0 0 6px;
}

.about-page-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

.about-header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-header-icons img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  opacity: 0.55;
}

/* ---- Chef Intro Section ---- */
.chef-intro {
  background: var(--cream-bg);
  padding: 60px 0 80px;
  position: relative;
  overflow: visible;
}

.chef-intro-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}

.chef-intro-img-wrap { position: relative; }

.chef-intro-img-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  position: relative;
}

.chef-intro-img-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.chef-leaf {
  position: absolute;
  top: -30px;
  right: -20px;
  width: 90px;
  z-index: 3;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.chef-intro-label {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 4px 16px rgba(232,98,26,0.35);
  z-index: 4;
}

.chef-intro-label span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.9;
}

.chef-intro-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chef-intro-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.chef-intro-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.chef-intro-heading em {
  font-style: normal;
  font-family: var(--script);
  color: var(--orange);
  font-size: 1.1em;
}

.chef-intro-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ---- Video Section ---- */
.video-section {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video-bg {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
  transition: filter 0.4s;
}

.video-section:hover .video-bg { filter: brightness(0.55); }

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.video-title {
  font-size: clamp(60px, 12vw, 130px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 8px;
  line-height: 1;
  text-align: center;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
  opacity: 0.92;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.video-play-btn i {
  font-size: 26px;
  color: var(--orange);
  margin-left: 4px;
}

/* ---- Birth of Mokai ---- */
.birth-section {
  background: var(--orange);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.birth-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.birth-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.birth-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
}

.birth-heading {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.birth-body {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
}

.birth-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.birth-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.birth-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.birth-photo:hover img { transform: scale(1.04); }

.birth-photo-large {
  grid-column: 1 / -1;
  height: 200px;
}

.birth-photo-small { height: 160px; }

/* ---- Dish Gallery + Quote ---- */
.dishes-section {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.dishes-top-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.dishes-bottom-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dish-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.dish-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.dish-photo:hover img { transform: scale(1.04); }

.dish-photo-tall img { height: 280px; }

.dishes-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 30px;
}

.dishes-quote-text {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 20px;
  font-family: var(--font);
}

.dishes-quote-text em {
  font-style: normal;
  color: var(--orange);
}

.dishes-quote-body {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ---- Our Awards ---- */
.awards-section {
  background: var(--cream-bg);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.awards-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/mokai/assets/img/mokai/texture2.png') repeat;
  background-size: 300px;
  opacity: 0.25;
  pointer-events: none;
}

.awards-heading {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.awards-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
}

.award-item:hover { transform: translateY(-6px); }

.award-item img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s;
  filter: grayscale(20%);
}

.award-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .chef-intro-inner { grid-template-columns: 260px 1fr; gap: 40px; }
  .birth-inner { grid-template-columns: 1fr; gap: 40px; }
  .birth-photos { grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto; }
  .birth-photo-large { grid-column: auto; height: 160px; }
  .dishes-top-row { grid-template-columns: 1fr 1fr; }
  .dishes-bottom-left { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .about-header { padding: 120px 0 36px; }
  .chef-intro-inner { grid-template-columns: 1fr; gap: 50px; }
  .chef-intro-img-card img { height: 300px; }
  .video-bg { height: 320px; }
  .video-title { font-size: clamp(48px, 16vw, 80px); letter-spacing: 4px; }
  .video-play-btn { width: 58px; height: 58px; }
  .birth-photos { grid-template-columns: 1fr 1fr; }
  .birth-photo-large { grid-column: 1 / -1; height: 180px; }
  .dishes-top-row { grid-template-columns: 1fr 1fr; }
  .dishes-bottom-left { grid-template-columns: 1fr 1fr; }
  .dishes-quote { padding: 10px 0; }
  .award-item img { width: 80px; height: 80px; }
  .awards-grid { gap: 20px; }
}

@media (max-width: 575px) {
  .about-header-inner { flex-direction: column; align-items: flex-start; }
  .about-header-icons img { width: 48px; height: 48px; }
  .chef-intro { padding: 50px 0 70px; }
  .chef-leaf { width: 64px; top: -20px; right: -10px; }
  .video-bg { height: 260px; }
  .dishes-top-row { grid-template-columns: 1fr; }
  .dish-photo img { height: 200px; }
  .birth-photos { grid-template-columns: 1fr; }
  .birth-photo-large, .birth-photo-small { height: 200px; }
  .award-item img { width: 68px; height: 68px; }
}
/* ============================================================
   CONTACT US PAGE
   ============================================================ */
.nav-menu .nav-link, .header-action-link{
  color: var(--text-dark) !important;
}
.cart-icon{
  filter: brightness(0%) !important;
}
.menu-toggle span{
  background: var(--text-dark) !important;
}
/* ---- Breadcrumb / Page Header ---- */
.contact-header {
  background: var(--cream-bg);
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

.contact-header-bubble {
  background: #b2f0e8;
  border-radius: 28px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  min-height: 160px;
}

.contact-breadcrumb {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.contact-breadcrumb a:hover { color: var(--orange); }

.contact-breadcrumb span { color: var(--text-dark); }

.contact-page-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin: 0;
}

.contact-header-icon { flex-shrink: 0; }

.contact-header-icon img {
  width: 180px;
  height: auto;
  object-fit: contain;
}

/* ---- Contact Section ---- */
.contact-section {
  background: var(--cream-bg);
  padding: 60px 0 70px;
}

.contact-info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.contact-info-icon-wrap {
  width: 64px;
  height: 64px;
  background: #fff8e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon-wrap i {
  font-size: 26px;
  color: #f5a623;
}

.contact-info-address {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0;
}

.contact-info-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-info-phone i {
  color: var(--orange);
  font-size: 16px;
}

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  height: 100%;
}

.contact-form-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.contact-form-group { margin-bottom: 18px; }

.contact-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-input-wrap { position: relative; }

.contact-input-wrap .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 15px;
  pointer-events: none;
}

.contact-input-wrap.textarea-wrap .input-icon {
  top: 16px;
  transform: none;
}

.contact-form-control {
  width: 100%;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 14px 12px 40px;
  font-family: var(--font);
  font-size: 13.5px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.contact-form-control::placeholder { color: #bbb; }

.contact-form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,26,0.1);
}

textarea.contact-form-control {
  resize: none;
  min-height: 110px;
}

.contact-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-checkbox-wrap input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--orange);
  flex-shrink: 0;
  cursor: pointer;
}

.contact-checkbox-wrap label {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0;
  cursor: pointer;
}

.contact-checkbox-wrap label a {
  color: var(--orange);
  font-weight: 600;
}

.contact-checkbox-wrap label a:hover { text-decoration: underline; }

.btn-contact-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 13px 34px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  letter-spacing: 0.3px;
}

.btn-contact-submit:hover {
  background: #c9511a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,98,26,0.35);
}

/* ---- Map Section ---- */
.contact-map {
  width: 100%;
  height: 420px;
  display: block;
  border: none;
  filter: saturate(0.85);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .contact-header-bubble { padding: 32px 32px; }
  .contact-form-card { padding: 32px 28px; }
}

@media (max-width: 767px) {
  .contact-header { padding: 110px 0 0; }
  .contact-header-bubble { padding: 28px 24px; border-radius: 20px; }
  .contact-header-icon img { width: 120px; }
  .contact-map { height: 320px; }
}

@media (max-width: 575px) {
  .contact-header-bubble { flex-direction: column; align-items: flex-start; gap: 16px; }
  .contact-form-card { padding: 28px 20px; }
}
/* ============================================================
   CORPORATE CATERING PAGE
   ============================================================ */
.nav-menu .nav-link, .header-action-link{
  color: var(--text-dark) !important;
}
.cart-icon{
  filter: brightness(0%) !important;
}
.menu-toggle span{
  background: var(--text-dark) !important;
}
/* ---- 1. Hero Banner ---- */
.cc-hero {
  background: var(--cream-bg);
  padding: 110px 0 48px;
}

.cc-hero-banner {
  background: var(--green);
  border-radius: 24px;
  padding: 44px 52px;
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  align-items: center;
}

.cc-breadcrumb {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.cc-breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.cc-breadcrumb a:hover { color: var(--white); }
.cc-breadcrumb i { font-size: 9px; }
.cc-breadcrumb span { color: var(--white); }

.cc-hero-text {
  position: relative;
  z-index: 2;
}

.cc-hero-title {
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.5px;
}

.cc-hero-illus {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  max-width: 45%;
  opacity: 0.88;
}

.cc-hero-illus img {
  width: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(10);
  mix-blend-mode: soft-light;
  opacity: 0.9;
}

.cc-hero-star {
  position: absolute;
  top: 28px;
  right: 380px;
  color: rgba(255,255,255,0.5);
  font-size: 22px;
}

/* ---- 2. Intro Section ---- */
.cc-intro {
  background: var(--cream-bg);
  padding: 70px 0 70px;
}

.cc-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cc-intro-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}

.cc-intro-photos {
  position: relative;
  height: 380px;
}

.cc-intro-photo {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.cc-intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.cc-intro-photo:hover img { transform: scale(1.04); }

.cc-intro-photo-1 { top: 0; left: 0; width: 60%; height: 260px; }
.cc-intro-photo-2 { bottom: 0; right: 0; width: 55%; height: 220px; }

/* ---- 3. Flavour Banner ---- */
.cc-flavour-banner {
  /*position: relative;
  overflow: hidden;
  background: var(--orange);*/
  background-color: #ffebb8;
  margin-bottom: -5px;
}

.cc-flavour-banner-img {
  width: 100%;
  /*max-height: 420px;
  object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
  opacity: 0.85;*/
}

.cc-flavour-text-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 100%);
}

.cc-flavour-text {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
  letter-spacing: -0.5px;
  margin: 0;
}

/* ---- 4. Enquiry + Description ---- */
.cc-enquiry {
  background: var(--cream-bg);
  padding: 75px 0 80px;
}

.cc-enquiry-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: flex-start;
}

.cc-form-box {
  background: #F5E6B8;
  border-radius: 16px;
  padding: 30px 28px 34px;
}

.cc-form-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.cc-form-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 5px;
  line-height: 1.5;
}

.cc-form-group { margin-bottom: 2px; }

.cc-form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,0.18);
  padding: 11px 4px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  display: block;
}

.cc-form-input:focus { border-color: var(--green); }
.cc-form-input::placeholder { color: #999; }
.cc-form-textarea { resize: none; height: 80px; }

.btn-cc-submit {
  margin-top: 22px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 36px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.25s, transform 0.2s;
}

.btn-cc-submit:hover { background: #c95516; transform: translateY(-2px); }

.cc-enquiry-heading {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 18px;
}

.cc-enquiry-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ---- 5. Photo Gallery ---- */
.cc-gallery {
  background: var(--cream-bg);
  padding: 10px 0 80px;
}

.cc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cc-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.09);
  position: relative;
}

.cc-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.cc-gallery-item:hover img { transform: scale(1.06); }

.cc-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,95,70,0);
  transition: background 0.3s;
  pointer-events: none;
}

.cc-gallery-item:hover::after { background: rgba(30,95,70,0.15); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .cc-hero-banner { padding: 36px 36px; min-height: 180px; }
  .cc-hero-illus { width: 240px; right: 24px; }
  .cc-intro-inner { grid-template-columns: 1fr; gap: 44px; }
  .cc-intro-photos { height: 300px; }
  .cc-intro-photo-1 { width: 58%; height: 220px; }
  .cc-intro-photo-2 { width: 52%; height: 190px; }
  .cc-enquiry-inner { grid-template-columns: 1fr; gap: 36px; }
  .cc-form-box { max-width: 480px; }
  .cc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .cc-hero { padding: 100px 0 36px; }
  .cc-hero-banner { padding: 30px 28px; border-radius: 18px; min-height: 160px; }
  .cc-hero-illus { width: 160px; }
  .cc-hero-star { display: none; }
  /*.cc-flavour-banner-img { max-height: 300px; }*/
  .cc-flavour-text-wrap { padding: 20px 24px; }
  .cc-intro-photos { height: 260px; }
  .cc-gallery-item img { height: 160px; }
}

@media (max-width: 575px) {
  .cc-hero-banner { padding: 26px 20px; }
  .cc-hero-title { font-size: 30px; }
  .cc-hero-illus { width: 110px; right: 16px; opacity: 0.6; }
  .cc-intro { padding: 50px 0 60px; }
  .cc-intro-photos { height: 240px; }
  .cc-intro-photo-1 { width: 65%; height: 180px; }
  .cc-intro-photo-2 { width: 58%; height: 160px; }
  ./*cc-flavour-banner-img { max-height: 240px; }*/
  .cc-enquiry { padding: 55px 0 60px; }
  .cc-form-box { max-width: 100%; }
  .cc-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cc-gallery-item img { height: 130px; }
}
/* ============================================================
   WEDDING & EVENT CATERING PAGE
   ============================================================ */
.nav-menu .nav-link, .header-action-link{
  color: var(--text-dark) !important;
}
.cart-icon{
  filter: brightness(0%) !important;
}
.menu-toggle span{
  background: var(--text-dark) !important;
}
/* ---- 1. Hero Banner ---- */
.wc-hero {
  background: var(--cream-bg);
  padding: 110px 0 48px;
}

.wc-hero-banner {
  background: var(--orange);
  border-radius: 24px;
  padding: 44px 52px;
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  align-items: center;
}

.wc-breadcrumb {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.wc-breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.wc-breadcrumb a:hover { color: var(--white); }
.wc-breadcrumb i { font-size: 9px; }
.wc-breadcrumb span { color: var(--white); }

.wc-hero-text {
  position: relative;
  z-index: 2;
}

.wc-hero-title {
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.5px;
}

.wc-hero-illus {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.wc-hero-illus img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  mix-blend-mode: luminosity;
}

/* ---- 2. Intro Section ---- */
.wc-intro {
  background: var(--cream-bg);
  padding: 70px 0 80px;
}

.wc-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.wc-intro-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}

.wc-intro-photos {
  position: relative;
  height: 380px;
}

.wc-intro-photo {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.wc-intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.wc-intro-photo:hover img { transform: scale(1.04); }

.wc-intro-photo-1 { top: 0; left: 0; width: 60%; height: 260px; }
.wc-intro-photo-2 { bottom: 0; right: 0; width: 55%; height: 220px; }

/* ---- 3. Occasion Banner ---- */
.wc-occasion-banner {
  position: relative;
  /*overflow: hidden;*/
  margin-bottom: -5px;
  background-color: #ffebb8;
}

.wc-occasion-banner-img {
  width: 100%;
  /*max-height: 440px;
  object-fit: cover;
  display: block;*/
}

.wc-occasion-text-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 44px;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
}

.wc-occasion-text {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 800;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
  letter-spacing: -0.5px;
  margin: 0;
}

/* ---- 4. Enquiry + Description ---- */
.wc-enquiry {
  background: var(--cream-bg);
  padding: 75px 0 80px;
}

.wc-enquiry-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: flex-start;
}

.wc-form-box {
  background: #F5E6B8;
  border-radius: 16px;
  padding: 30px 28px 34px;
}

.wc-form-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.wc-form-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 5px;
  line-height: 1.5;
}

.wc-form-group { margin-bottom: 2px; }

.wc-form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,0.18);
  padding: 11px 4px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  display: block;
}

.wc-form-input:focus { border-color: var(--orange); }
.wc-form-input::placeholder { color: #999; }
.wc-form-textarea { resize: none; height: 80px; }

.btn-wc-submit {
  margin-top: 22px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 36px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.25s, transform 0.2s;
}

.btn-wc-submit:hover { background: #c95516; transform: translateY(-2px); }

.wc-enquiry-heading {
  font-size: clamp(17px, 2.3vw, 24px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 18px;
}

.wc-enquiry-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ---- 5. Gallery ---- */
.wc-gallery {
  background: var(--cream-bg);
  padding: 10px 0 80px;
}

.wc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.wc-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.09);
  position: relative;
}

.wc-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.wc-gallery-item:hover img { transform: scale(1.06); }

.wc-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232,98,26,0);
  transition: background 0.3s;
  pointer-events: none;
}

.wc-gallery-item:hover::after { background: rgba(232,98,26,0.12); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .wc-hero-banner { padding: 36px 36px; min-height: 180px; }
  .wc-hero-illus { width: 260px; }
  .wc-intro-inner { grid-template-columns: 1fr; gap: 44px; }
  .wc-intro-photos { height: 300px; }
  .wc-intro-photo-1 { width: 58%; height: 220px; }
  .wc-intro-photo-2 { width: 52%; height: 190px; }
  .wc-enquiry-inner { grid-template-columns: 1fr; gap: 36px; }
  .wc-form-box { max-width: 480px; }
  .wc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .wc-hero { padding: 100px 0 36px; }
  .wc-hero-banner { padding: 30px 28px; border-radius: 18px; min-height: 160px; }
  .wc-hero-illus { width: 160px; }
  /*.wc-occasion-banner-img { max-height: 300px; }*/
  .wc-occasion-text-wrap { padding: 20px 24px; }
  .wc-intro-photos { height: 260px; }
  .wc-gallery-item img { height: 160px; }
}

@media (max-width: 575px) {
  .wc-hero-banner { padding: 26px 20px; }
  .wc-hero-title { font-size: 30px; }
  .wc-hero-illus { width: 110px; opacity: 0.7; }
  .wc-intro { padding: 50px 0 60px; }
  .wc-intro-photos { height: 240px; }
  .wc-intro-photo-1 { width: 65%; height: 180px; }
  .wc-intro-photo-2 { width: 58%; height: 160px; }
  /*.wc-occasion-banner-img { max-height: 220px; }*/
  .wc-enquiry { padding: 55px 0 60px; }
  .wc-form-box { max-width: 100%; }
  .wc-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .wc-gallery-item img { height: 130px; }
}
