* { box-sizing: border-box; }
* {
    max-width: 100vw;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
  width: 100%;
}
body.search-lock { overflow: hidden; }
img { max-width: 100%; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, a, input { transition: var(--transition); }
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 3px solid rgba(200, 155, 35, 0.55);
  outline-offset: 4px;
}
.container-xl { max-width: var(--container); }
.section { padding: var(--section-y) 0; }
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.08; letter-spacing: 0; }
h1 { font-size: 5.35rem; font-weight: 800; color: var(--white); margin-bottom: 22px; }
h2 { font-size: 3rem; font-weight: 700; }
h2 span, h1 span { color: var(--gold); }
h3 { font-size: 1.25rem; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font: 700 0.82rem var(--font-button);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.btn {
  min-height: 52px;
  border-radius: var(--radius-pill);
  padding: 15px 30px;
  font: 600 0.95rem var(--font-button);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  position: relative;
  overflow: hidden;
}
.btn-gold { color: var(--white); background: linear-gradient(135deg, var(--gold), #dfa93a); box-shadow: 0 14px 28px rgba(200, 155, 35, 0.28); }
.btn-green { color: var(--white); background: var(--green); }
.btn.btn-green:hover{
  background: linear-gradient(135deg, var(--gold), #dfa93a);
}
.btn:hover { transform: translateY(-5px); color: var(--white); box-shadow: 0 18px 42px rgba(200, 155, 35, 0.32); }
.icon-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: inline-grid;
  place-items: center;
}
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--green-900);
  z-index: 9999;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: 0.45s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-mark { color: var(--gold); text-align: center; display: grid; gap: 10px; }
.loader-mark span {
  width: 74px;
  height: 74px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 800 2rem var(--font-heading);
  animation: spinPulse 1.4s infinite;
}
.home .site-header{ padding: 12px 0; transition: var(--transition);  margin-top: 0px;}
.site-header { padding: 12px 0; transition: var(--transition);  margin-top: 42px;}
.site-header.scrolled {
  padding: 4px 0;
  background: rgba(255, 249, 242, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); }
.site-header.scrolled .brand, .site-header.scrolled .nav-link, .site-header.scrolled .icon-btn { color: var(--text); }
.brand-emblem {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: grid;
  place-items: center;
  font: 800 1.4rem var(--font-heading);
}
.brand strong { display: block; font: 600 1.42rem var(--font-heading); letter-spacing: 0.18em; }
.brand small { display: block; margin-top: -5px; font-size: 0.62rem; color: var(--gold-soft); }
.main-nav { gap: 22px; }
.nav-link {
  color: var(--white);
  font: 600 0.88rem var(--font-button);
  padding: 16px 0 !important;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.premium-menu {
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px;
}
.cart-btn { position: relative; }
.cart-btn span {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
}
.header-actions { align-items: center; gap: 10px; }
.search-popup {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 9, 0.72);
  backdrop-filter: blur(8px);
}
.search-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  background: var(--cream);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  padding: 44px;
  transform: scale(0.94);
  transition: transform 0.3s ease;
}
.search-popup.active .search-dialog { transform: scale(1); }
.search-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: rgba(16, 51, 33, 0.08);
  color: var(--text);
}
.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  position: relative;
  margin-top: 24px;
}
.search-form i {
  position: absolute;
  left: 18px;
  top: 17px;
  color: var(--gold);
}
.search-form input {
  min-height: 56px;
  border: 1px solid rgba(16,51,33,0.18);
  border-radius: var(--radius-input);
  padding: 0 18px 0 48px;
  background: var(--white);
  color: var(--text);
}
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(200, 155, 35, 0.2), transparent 28%), linear-gradient(115deg, #07180f 0%, #103321 44%, #070d09 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 15, 9, 0.92), rgba(4, 15, 9, 0.4), rgba(4, 15, 9, 0.82));
  z-index: 1;
}
.hero-section .container-xl { position: relative; z-index: 2; }
.hero-copy { padding-top: 104px; }
.hero-text { max-width: 550px; color: rgba(255, 255, 255, 0.9); font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; margin-top: 30px; }
.video-btn {
  border: 0;
  background: transparent;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 600 0.93rem var(--font-button);
}
.video-btn i {
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.video-btn.dark { color: var(--text); }
.hero-stats { display: flex; gap: 24px; margin-top: 36px; color: var(--white);     margin-bottom: 50px; }
.hero-stats div { border-left: 1px solid rgba(255, 255, 255, 0.22); padding-left: 16px; }
.hero-stats strong { display: block; font: 800 1.55rem var(--font-heading); color: var(--gold); }
.hero-stats small { color: rgba(255, 255, 255, 0.76); }
.hero-visual { position: relative; min-height: 620px; }
.hero-dish {
  position: absolute;
  right: -32px;
  top: 110px;
  width: min(720px, 100%);
  height: 470px;
  border-radius: 50% 18px 18px 50%;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.46);
}
.product-pack {
  position: absolute;
  right: 18px;
  bottom: 45px;
  width: 210px;
  min-height: 250px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 12px;
  transform: rotate(8deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.product-pack img { width: 100%; height: 100%; object-fit: cover; }
.auth-badge {
  position: absolute;
  right: 70px;
  top: 148px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: #fff5df;
  color: var(--green);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  text-align: center;
  font: 800 0.62rem var(--font-button);
  text-transform: uppercase;
}
.steam {
  position: absolute;
  top: 60px;
  width: 120px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 68%);
  filter: blur(18px);
  opacity: 0.55;
  z-index: 3;
}
.steam-one { right: 230px; }
.steam-two { right: 340px; animation-delay: 1s; }
.feature-strip { margin-top: -42px; position: relative; z-index: 5; }
.feature-bar {
  background: rgba(255, 249, 242, 1);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
}
.feature-bar article {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px;
  border-right: 1px solid rgba(200, 155, 35, 0.24);
}
.feature-bar article:last-child { border-right: 0; }
.feature-bar i { color: var(--gold); font-size: 2rem; }
.feature-bar strong, .feature-bar small { display: block; line-height: 1.4; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 32px; }
.text-link { font: 700 0.88rem var(--font-button); border-bottom: 1px solid var(--gold); }
.slider-wrap { position: relative; }
.product-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 6px;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

/* Desktop - 4 Products */
.product-card {
    position: relative;
    flex: 0 0 calc((100% - 90px) / 4);
    max-width: calc((100% - 90px) / 4);
    min-height: 250px;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    transition: .4s;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .55s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .16);
    pointer-events: none;
}

.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(transparent 20%, rgba(0,0,0,.88));
}

.product-info {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    color: #fff;
}

.product-info h3 {
    margin-bottom: 2px;
    font-size: 18px;
    font-weight: 700;
}

.rating {
    color: #ffc107;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 13px;
}

.rating span {
    color: #fff;
    margin-left: 6px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.price-row button,
.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.6);
    background: rgba(0,0,0,.25);
    color: #fff;
}

.card-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
}

.tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    padding: 4px 10px;
    border-radius: 50px;
    background: #d4a017;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: #0b6b45;
    color: #fff;
    z-index: 20;
    cursor: pointer;
}

.slider-nav.prev {
    left: -24px;
}

.slider-nav.next {
    right: -24px;
}
.story-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.story-image { width: 100%; height: 100%; }
.story-copy {
  min-height: 260px;
  padding: 42px 58px;
  background: radial-gradient(circle at 85% 50%, rgba(200, 155, 35, 0.13), transparent 28%), var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.story-copy::after {
  content: "";
  position: absolute;
  right: 52px;
  top: 50%;
  width: 190px;
  height: 190px;
  transform: translateY(-50%);
  border: 1px solid rgba(200, 155, 35, 0.16);
  border-radius: 48% 52% 46% 54%;
  opacity: 0.8;
  pointer-events: none;
}
.story-copy p:not(.eyebrow) { max-width: 560px; }
.story-actions { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; margin-top: 20px; }
.story-actions .btn-green {
  background: var(--gold);
  color: var(--white);
}
.story-actions .btn-green:hover {
  background: #b8891f;
  color: var(--white);
}
.dark-band {
  background: radial-gradient(circle at 50% 50%, rgba(200,155,35,0.18), transparent 30%), var(--green);
  color: var(--white);
  padding: 70px 0;
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-grid article {
  min-height: 132px;
  border: 1px solid rgba(200, 155, 35, 0.55);
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.04);
}
.why-grid i { color: var(--gold); font-size: 2rem; }
.why-grid h3 { margin: 0; font: 600 1rem var(--font-body); }
.india-map {
  min-height: 245px;
  position: relative;
  background:
    linear-gradient(rgba(16,51,33,0.08), rgba(16,51,33,0.08)),
    url("../images/india-map-reference.png") center / contain no-repeat;
  border-radius: 20px;
}
.pin {
  position: absolute;
  padding-left: 22px;
  font-size: 0.78rem;
  color: var(--white);
}
.pin::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(200,155,35,0.22);
}
.delhi { top: 22%; left: 58%; }
.lucknow { top: 38%; left: 66%; }
.mumbai { top: 58%; left: 22%; }
.hyderabad { top: 66%; left: 48%; }
.kerala { top: 82%; left: 32%; }
.region-text { color: rgba(255,255,255,0.84); }
.video-band {
  min-height: 380px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
}
.video-band img { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.22), rgba(0,0,0,0.58)); }
.video-content { position: absolute; left: max(24px, calc((100vw - var(--container)) / 2)); z-index: 2; max-width: 420px; }
.play-large {
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.25);
  color: var(--white);
  font-size: 2.4rem;
  backdrop-filter: blur(8px);
}
.manufacturing-showcase img { height: 420px; width: 100%; border-radius: var(--radius-card); box-shadow: var(--shadow); }
.timeline { display: grid; gap: 14px; margin-top: 24px; }
.timeline span { padding: 16px 20px; border-left: 3px solid var(--gold); background: var(--white); border-radius: 12px; box-shadow: var(--shadow); }
.social-section {
  padding: 58px 0;
  background: #fff5e5;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial-card, .newsletter-card, .service-list, .instagram-block {
  height: 100%;
  padding: 26px;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(200,155,35,0.28);
  border-radius: 8px;
}
.testimonial-card img { width: 72px; height: 72px; border-radius: 50%; margin-bottom: 12px; }
blockquote { margin: 10px 0; line-height: 1.5; }
.insta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.insta-grid img { aspect-ratio: 1; border-radius: 8px; }
.newsletter-card h3 { font: 600 1.08rem var(--font-body); text-align: center; margin-bottom: 18px; }
.newsletter-card input, .mobile-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16,51,33,0.18);
  border-radius: var(--radius-input);
  padding: 0 18px;
  background: var(--white);
      margin-bottom: 15px;
}
.form-message { display: block; margin-top: 12px; text-align: center; color: var(--muted); }
.service-list { display: grid; gap: 20px; }
.service-list article { display: flex; gap: 14px; align-items: start; }
.service-list i { color: var(--gold); font-size: 1.7rem; }
.service-list strong, .service-list small { display: block; line-height: 1.45; }
.site-footer {
  padding: 70px 0 28px;
  background: linear-gradient(135deg, #092016, #103321);
  color: var(--white);
}
.footer-brand { margin-bottom: 24px; }
.site-footer h3 { color: var(--gold); font: 700 0.82rem var(--font-button); text-transform: uppercase; }
.site-footer a:not(.brand) { display: block; color: rgba(255,255,255,0.78); margin-bottom: 7px; font-size: 0.9rem; }
.site-footer a:hover { color: var(--gold); transform: translateX(3px); }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a, .certs i {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200,155,35,0.48);
  border-radius: 50%;
  display: inline-grid !important;
  place-items: center;
  color: var(--gold) !important;
}
.certs { display: flex; gap: 10px; flex-wrap: wrap; align-content: start; }
.footer-bottom { margin-top: 44px; color: rgba(255,255,255,0.72); font-size: 0.85rem; }
.float-whatsapp, .float-call, .back-top {
  position: fixed;
  z-index: 90;
  border-radius: var(--radius-pill);
  border: 0;
  box-shadow: var(--shadow-hover);
}
.float-whatsapp {
  right: 22px;
  bottom: 92px;
  background: #25d366;
  color: var(--white);
  padding: 12px 18px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font: 700 0.86rem var(--font-button);
}
.float-call {
  right: 22px;
  bottom: 148px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  display: none;
  place-items: center;
}
.back-top {
  right: 22px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  background: var(--green);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
}
.back-top.show { opacity: 1; visibility: visible; }
.mobile-bottom { display: none; }
.mobile-offcanvas { width: min(320px, 92vw) !important; background: var(--cream); }
.mobile-offcanvas .brand, .mobile-offcanvas .icon-btn { color: var(--text); }
.mobile-search { position: relative; margin-bottom: 20px; }
.mobile-search i { position: absolute; left: 16px; top: 13px; color: var(--gold); }
.mobile-search input { padding-left: 44px; }
.mobile-accordion a, .mobile-accordion .accordion-button, .theme-row {
  min-height: 54px;
  width: 100%;
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--text);
  font: 700 1rem var(--font-button);
}
.accordion-button:focus { box-shadow: none; }
.theme-row { gap: 10px; margin: 14px 0; }
.mobile-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.mobile-quick a { min-height: 48px; border-radius: 999px; background: var(--green); color: var(--white); display: grid; place-items: center; }

.contact-page {
  background: var(--cream);
}

.contact-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  min-height: 42px;
  background: linear-gradient(90deg, #082015, #0f3a25);
  color: var(--white);
  font: 600 0.82rem var(--font-body);
}
.contact-topbar .container-xl {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.contact-topbar i,
.contact-topbar .heart {
  color: var(--gold);
}
.contact-topbar a {
  display: inline-flex;
  margin-left: 18px;
  color: var(--white);
}
/* .contact-header {
  top: 42px;
  background: rgba(4, 15, 9, 0.82);
  backdrop-filter: blur(16px);
}
.contact-header.scrolled {
  top: 0;
} */
.contactmain-contact-hero {
  min-height: 486px;
  padding: 180px 0 36px;
  /* background:
    linear-gradient(90deg, rgba(4, 15, 9, 0.96) 0%, rgba(4, 15, 9, 0.78) 36%, rgba(4, 15, 9, 0.28) 66%, rgba(4, 15, 9, 0.64) 100%),
    url("../images/heroimage.png") right 42% center / 560px 360px no-repeat,
    radial-gradient(circle at 78% 42%, rgba(200,155,35,0.24), transparent 24%),
    linear-gradient(115deg, #07180f 0%, #103321 48%, #070d09 100%); */
  color: var(--white);
  overflow: hidden;
  background: url(../images/heroimage.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.contact-hero-copy {
  max-width: 630px;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font: 700 0.86rem var(--font-body);
  margin-bottom: 18px;
}
.breadcrumb-nav i {
  color: var(--gold);
  font-size: 0.72rem;
}
.contact-hero h1 {
  font-size: 3rem;
  max-width: 480px;
  margin-bottom: 16px;
}
.contact-hero h1 span {
  display: block;
}
.contact-hero p {
  max-width: 450px;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
}
.contact-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 560px;
  margin-top: 34px;
}
.contact-benefits article {
  text-align: center;
}
.contact-benefits i {
  display: block;
  color: var(--gold);
  font-size: 1.65rem;
  margin-bottom: 10px;
}
.contact-benefits strong,
.contact-benefits small {
  display: block;
  line-height: 1.35;
}
.contact-benefits strong {
  color: var(--gold);
  font: 700 0.8rem var(--font-button);
}
.contact-benefits small {
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
}
.contact-main-section,
.contact-location-section,
.contact-faq-section {
  padding: 22px 0 0;
}
.contact-faq-section {
  padding-bottom: 22px;
}
.contact-panel {
  height: 100%;
  padding: 28px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(200,155,35,0.25);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.contact-panel-head {
  margin-bottom: 22px;
}
.contact-panel-head h2,
.map-head h2,
.contact-faq-head h2 {
  position: relative;
  margin: 0;
  padding-bottom: 12px;
  font-size: 1.55rem;
}
.contact-panel-head h2::after,
.map-head h2::after,
.contact-faq-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font: 500 0.86rem var(--font-body);
}
.contact-form label span {
  color: var(--danger);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16,51,33,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.76);
  color: var(--text);
  padding: 14px 16px;
  font: 400 0.92rem var(--font-body);
}
.contact-form textarea {
  resize: vertical;
  min-height: 118px;
}
.contact-form .btn {
  margin-top: 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, #07331f, #0e4a2c);
  text-transform: uppercase;
}
.contact-form-message {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.8rem;
}
.contact-form-message i {
  color: var(--green);
  margin-right: 5px;
}
.contact-details {
  display: grid;
  align-content: start;
  gap: 22px;
}
.contact-details article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
}
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #f3eadb;
  font-size: 1.45rem;
}
.contact-icon.call {
  background: var(--green);
  color: var(--white);
}
.contact-icon.whatsapp {
  background: #9be7ae;
  color: var(--white);
}
.contact-details h3 {
  margin: 0 0 2px;
  font: 800 1rem var(--font-body);
}
.contact-details a {
  display: block;
  color: var(--text);
  font-weight: 700;
}
.contact-details small,
.contact-details p,
.map-head p {
  color: var(--muted);
  line-height: 1.55;
}
.map-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}
.map-head .btn {
  border-radius: 6px;
  min-height: 44px;
  padding: 12px 24px;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.contact-map {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(185,222,226,0.68), rgba(255,249,242,0.58)),
    repeating-linear-gradient(28deg, transparent 0 30px, rgba(200,155,35,0.18) 31px 33px),
    #f3efe4;
}
.contact-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 38% 62%, rgba(16,51,33,0.14), transparent 18%),
    radial-gradient(circle at 68% 36%, rgba(200,155,35,0.13), transparent 22%);
}
.map-water {
  position: absolute;
  left: -6%;
  top: 0;
  width: 34%;
  height: 100%;
  background: rgba(174,221,229,0.78);
  border-radius: 0 48% 48% 0;
}
.map-road {
  position: absolute;
  height: 2px;
  background: rgba(200,155,35,0.44);
  transform-origin: left;
}
.road-one { left: 18%; top: 42%; width: 76%; transform: rotate(-8deg); }
.road-two { left: 36%; top: 18%; width: 48%; transform: rotate(34deg); }
.road-three { left: 22%; top: 78%; width: 62%; transform: rotate(-26deg); }
.map-pin {
  position: absolute;
  left: 44%;
  top: 38%;
  width: 54px;
  height: 54px;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  border: 2px solid var(--gold);
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}
.map-pin span {
  transform: rotate(45deg);
  color: var(--gold);
  font: 800 1.1rem var(--font-heading);
}
.contact-map strong,
.contact-map em,
.contact-map small {
  position: absolute;
  z-index: 2;
  color: var(--text);
  font-style: normal;
  font-weight: 800;
}
.contact-map strong { left: 41%; bottom: 22px; font-size: 1.3rem; }
.contact-map em { left: 34%; top: 54px; font-size: 0.86rem; }
.contact-map small { right: 14%; bottom: 34px; font-size: 1rem; }
.office-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.office-grid article,
.faq-grid details {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(200,155,35,0.24);
  border-radius: 10px;
  background: rgba(255,255,255,0.45);
}
.office-grid i {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 8px;
}
.office-grid h3 {
  margin: 0 0 8px;
  font: 800 0.92rem var(--font-body);
}
.office-grid p {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.55;
}
.office-grid span,
.office-grid a {
  display: inline-flex;
  border-radius: 6px;
  background: #f5ebdf;
  color: var(--text);
  padding: 6px 14px;
  font: 700 0.75rem var(--font-body);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.faq-item {
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    height: 100%;
}

.faq-item h4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 15px;
    font: 800 .95rem var(--font-body);
    line-height: 1.5;
}

.faq-item h4 i {
    color: var(--green);
    font-size: 18px;
    flex-shrink: 0;
}

.faq-item p {
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.7;
}

  
.footer-copy {
  max-width: 250px;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 12px;
}
.footer-newsletter input {
  min-width: 0;
  border: 0;
  border-radius: 8px 0 0 8px;
  padding: 12px 14px;
}
.footer-newsletter button {
  border: 0;
  border-radius: 0 8px 8px 0;
  background: #ee7c06;
  color: var(--white);
  padding: 0 16px;
  font: 700 0.72rem var(--font-button);
  text-transform: uppercase;
}

.about-page {
  background: var(--cream);
}
.about-header {
  background: rgba(4, 15, 9, 0.78);
  border-bottom: 1px solid rgba(200,155,35,0.18);
  backdrop-filter: blur(14px);
}
.about-hero {
  min-height: 520px;
  padding: 155px 0 80px;
  background:
    linear-gradient(90deg, rgba(4, 15, 9, 0.96) 0%, rgba(4, 15, 9, 0.76) 38%, rgba(4, 15, 9, 0.25) 70%, rgba(4, 15, 9, 0.58) 100%),
    url("../images/heroimage.png") center / cover no-repeat;
  color: var(--white);
}
.about-hero-copy {
  max-width: 560px;
}
.about-hero h1 {
  max-width: 520px;
  font-size: 3.55rem;
  margin-bottom: 20px;
}
.about-hero h1 span {
  display: block;
}
.about-hero p:not(.eyebrow) {
  max-width: 440px;
  color: rgba(255,255,255,0.84);
  line-height: 1.7;
}
.about-story {
  background: var(--cream);
}
.about-story-copy {
  min-height: 420px;
  padding: 72px max(44px, calc((100vw - var(--container)) / 2 + 44px)) 72px 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-story-copy h2 {
  max-width: 520px;
  font-size: 2.4rem;
}
.about-story-copy p {
  max-width: 560px;
  line-height: 1.65;
}
.about-story-copy .btn {
  align-self: flex-start;
  margin-top: 12px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.about-story-image-wrap {
  overflow: hidden;
}
.about-story-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  transition: 0.55s ease;
}
.about-story-image-wrap:hover img {
  transform: scale(1.04);
}
.founder-section {
  padding: 3px 0 52px;
}
/* .founder-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 58px;
  align-items: center;
  min-height: 310px;
  padding: 36px 64px;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 40, 25, 0.98), rgba(5, 45, 28, 0.9), rgba(5, 40, 25, 0.72)),
    url("../images/heroimage.png") right center / 680px auto no-repeat;
  color: var(--white);
  box-shadow: var(--shadow);
} */
.founder-card{
background:url("../images/heroabout.png") right center / 680px auto no-repeat;
background-size:cover;
  background-position:right center;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 58px;
  align-items: center;
  min-height: 310px;
  padding: 36px 64px;
  /* border-radius: 12px; */
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow);
}
.founder-portrait img {
  width: 196px;
  height: 196px;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}
.founder-portrait strong {
  display: block;
  color: var(--white);
  font: 700 1.45rem var(--font-heading);
}
.founder-portrait small {
  color: var(--gold);
  font-weight: 700;
}
.founder-message {
  max-width: 620px;
}
.founder-message h2 {
  color: var(--gold);
  font-size: 2.05rem;
}
.founder-message p {
  color: rgba(255,255,255,0.86);
  line-height: 1.65;
}
.founder-message span {
  display: inline-block;
  margin-top: 6px;
  color: var(--white);
  font: 700 1.35rem var(--font-heading);
}
.about-journey-section,
.mission-section,
.values-section,
.cert-achievement-section {
  padding: 34px 0;
}
.about-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  text-align: center;
}
.about-section-title h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.about-section-title h2::before,
.about-section-title h2::after {
  content: "";
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,155,35,0.7));
}
.about-section-title h2::after {
  background: linear-gradient(90deg, rgba(200,155,35,0.7), transparent);
}
.journey-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.journey-timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 67px;
  height: 2px;
  background: rgba(200,155,35,0.56);
}
.journey-timeline article {
  position: relative;
  z-index: 1;
  text-align: center;
}
.journey-timeline span {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f8efe3;
  color: var(--green);
  border: 1px solid rgba(200,155,35,0.32);
  font-size: 1.45rem;
}
.journey-timeline strong {
  display: block;
  color: var(--text);
  font: 800 0.94rem var(--font-body);
}
.journey-timeline h3 {
  margin: 6px 0;
  font: 800 0.95rem var(--font-body);
}
.journey-timeline p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}
.mission-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(200,155,35,0.24);
  border-radius: 10px;
  background: rgba(255,255,255,0.48);
}
.mission-card i {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--gold);
  font-size: 2rem;
}
.mission-card p:last-child {
  margin: 0;
  line-height: 1.65;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(200,155,35,0.16);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.34);
}
.values-grid article {
  min-height: 178px;
  padding: 28px 22px;
  text-align: center;
  border-right: 1px solid rgba(200,155,35,0.16);
  transition: var(--transition);
}
.values-grid article:last-child {
  border-right: 0;
}
.values-grid article:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.74);
}
.values-grid i {
  color: var(--green);
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.values-grid h3 {
  margin-bottom: 8px;
  font: 800 1rem var(--font-body);
}
.values-grid p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}
.about-manufacturing {
  padding: 34px 0;
}
.about-manufacturing-card {
  min-height: 330px;
  border-radius: 12px;
  overflow: hidden;
  padding: 58px;
  background:
    linear-gradient(90deg, rgba(4, 15, 9, 0.94), rgba(4, 15, 9, 0.58), rgba(4, 15, 9, 0.28)),
    url("https://images.unsplash.com/photo-1581092160607-ee22731c4af5?auto=format&fit=crop&w=1400&q=85") center / cover no-repeat;
  color: var(--white);
}
.about-manufacturing-card h2 {
  max-width: 430px;
  font-size: 2.35rem;
}
.about-manufacturing-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}
.about-manufacturing-card li {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}
.about-manufacturing-card i {
  color: var(--gold);
  margin-right: 8px;
}
.cert-panel {
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(200,155,35,0.2);
  background: rgba(255,255,255,0.38);
  border-radius: 10px;
  text-align: center;
}
.cert-grid,
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cert-grid article,
.achievement-grid article {
  display: grid;
  justify-items: center;
  gap: 6px;
}
.cert-grid i,
.achievement-grid i {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #f6eddf;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.65rem;
}
.cert-grid strong,
.achievement-grid strong {
  color: var(--text);
  font: 800 1rem var(--font-body);
}
.achievement-grid strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}
.cert-grid small,
.achievement-grid small {
  color: var(--muted);
  line-height: 1.35;
}
.about-cta {
  min-height: 240px;
  padding: 46px 0;
  background:
    linear-gradient(90deg, rgba(4, 15, 9, 0.92) 0%, rgba(4, 15, 9, 0.78) 42%, rgba(4, 15, 9, 0.2) 100%),
    url("../images/heroimage.png") center / cover no-repeat;
  color: var(--white);
}
.about-cta-copy {
  max-width: 520px;
}
.about-cta h2 {
  color: var(--white);
  font-size: 2.45rem;
}
.about-cta p {
  color: rgba(255,255,255,0.86);
  margin-bottom: 18px;
}

.products-page {
  background: var(--cream);
}
.products-header {
  background: rgba(4, 15, 9, 0.82);
  border-bottom: 1px solid rgba(200,155,35,0.18);
  backdrop-filter: blur(14px);
}
.products-hero {
  min-height: 390px;
  padding: 140px 0 58px;
  background:
    linear-gradient(90deg, rgba(4,15,9,0.96) 0%, rgba(4,15,9,0.78) 36%, rgba(4,15,9,0.22) 70%, rgba(4,15,9,0.64) 100%),
    url("../images/heroimage.png") center / cover no-repeat;
  color: var(--white);
}
.products-hero-copy {
  max-width: 500px;
}
.products-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 12px;
}
.products-hero p {
  max-width: 420px;
  color: rgba(255,255,255,0.9);
  font-size: 1.08rem;
  line-height: 1.7;
}
.products-divider {
  display: block;
  width: 280px;
  height: 18px;
  margin-top: 22px;
  background:
    linear-gradient(90deg, rgba(200,155,35,0.18), var(--gold), rgba(200,155,35,0.18)) center / 100% 1px no-repeat;
  position: relative;
}
.products-divider::after {
  content: "\F3E7";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1rem;
}
.product-catalog-section {
  padding: 34px 0 58px;
}
.product-category-wrap {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(200,155,35,0.32);
}
.products-section-title {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.products-section-title h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 1.45rem;
  margin: 0;
}
.products-section-title h2::before,
.products-section-title h2::after {
  content: "";
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.products-section-title h2::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.category-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.category-tabs button {
  min-height: 68px;
  border: 1px solid rgba(200,155,35,0.28);
  border-radius: 10px;
  background: rgba(255,255,255,0.52);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font: 700 1rem var(--font-body);
}
.category-tabs button i {
  color: var(--gold);
  font-size: 1.9rem;
}
.category-tabs button.active,
.category-tabs button:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin: 28px 0 22px;
}
.products-toolbar h2 {
  margin: 0 0 4px;
  font-size: 1.8rem;
}
.products-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.products-toolbar select {
  min-width: 250px;
  min-height: 46px;
  border: 1px solid rgba(200,155,35,0.36);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255,255,255,0.65);
  color: var(--text);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.catalog-card {
  overflow: hidden;
  border: 1px solid rgba(200,155,35,0.22);
  border-radius: 10px;
  background: rgba(255,255,255,0.58);
  box-shadow: 0 10px 34px rgba(0,0,0,0.04);
  transition: var(--transition);
}
.catalog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}
.catalog-image {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.2)),
    url("../images/heroimage.png") center / cover no-repeat;
}
.catalog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.12);
  transition: var(--transition);
}
.catalog-card:hover .catalog-image::after {
  background: rgba(0,0,0,0.02);
}
.catalog-image span {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  border-radius: 999px;
  background: #177637;
  color: var(--white);
  padding: 4px 12px;
  font: 700 0.72rem var(--font-body);
}
.catalog-image button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.26);
  color: var(--white);
}
.catalog-image button:hover {
  background: var(--gold);
  color: var(--white);
}
.biryani-one { background-position: right 38% center; }
.biryani-two { background-position: right 44% top; }
.biryani-three { background-position: right 36% bottom; }
.biryani-four { background-position: right 30% center; }
.marinade-one {
  background-image:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.28)),
    url("https://images.unsplash.com/photo-1599487488170-d11ec9c172f0?auto=format&fit=crop&w=700&q=80");
}
.marinade-two {
  background-image:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.28)),
    url("https://images.unsplash.com/photo-1610057099431-d73a1c9d2f2f?auto=format&fit=crop&w=700&q=80");
}
.chaat-one {
  background-image:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.26)),
    url("https://images.unsplash.com/photo-1606491956689-2ea866880c84?auto=format&fit=crop&w=700&q=80");
}
.chaat-two {
  background-image:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.24)),
    url("https://images.unsplash.com/photo-1601050690597-df0568f70950?auto=format&fit=crop&w=700&q=80");
}
.halwa-one,
.halwa-two,
.halwa-three {
  background-position: right 48% center;
  filter: saturate(0.95) sepia(0.08);
}
.halwa-two { background-position: right 42% bottom; }
.halwa-three { background-position: right 54% top; }
.ready-one { background-position: right 40% center; }
.catalog-image.biryani,
.quick-view-image.biryani {
  background-image:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.22)),
    url("../images/heroimage.png");
}
.catalog-image.marinades,
.quick-view-image.marinades {
  background-image:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.28)),
    url("https://images.unsplash.com/photo-1599487488170-d11ec9c172f0?auto=format&fit=crop&w=700&q=80");
}
.catalog-image.chaat,
.quick-view-image.chaat {
  background-image:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.26)),
    url("https://images.unsplash.com/photo-1606491956689-2ea866880c84?auto=format&fit=crop&w=700&q=80");
}
.catalog-image.halwa,
.quick-view-image.halwa,
.catalog-image.ready-mix,
.quick-view-image.ready-mix {
  background-image:
    linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.22)),
    url("../images/heroimage.png");
}
.catalog-body {
  padding: 14px 14px 16px;
}
.catalog-body h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}
.catalog-rating {
  display: flex;
  gap: 2px;
  align-items: center;
  color: #f29f05;
  font-size: 0.78rem;
}
.catalog-rating small {
  color: var(--muted);
  margin-left: 4px;
}
.catalog-body p {
  min-height: 44px;
  margin: 6px 0 10px;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.45;
}
.catalog-body strong {
  display: block;
  margin-bottom: 12px;
  font: 800 1.08rem var(--font-body);
}
.catalog-actions {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: center;
}
.qty-control {
  min-height: 34px;
  border: 1px solid rgba(200,155,35,0.45);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.qty-control button {
  min-height: 32px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 800;
}
.qty-control span {
  font-size: 0.86rem;
}
.add-cart {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  font: 800 0.72rem var(--font-button);
  text-transform: uppercase;
}
.add-cart:hover {
  background: #092616;
  transform: translateY(-2px);
}
.catalog-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.catalog-pagination button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200,155,35,0.35);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.58);
  font-weight: 800;
}
.catalog-pagination button.active,
.catalog-pagination button:hover {
  background: var(--green);
  color: var(--white);
}

.enhanced-category-tabs {
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.product-filter-panel {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.9fr;
  gap: 18px;
  margin: 24px 0 6px;
  padding: 18px;
  border: 1px solid rgba(200,155,35,0.22);
  border-radius: 10px;
  background: rgba(255,255,255,0.42);
}
.product-filter-panel label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font: 800 0.8rem var(--font-button);
  text-transform: uppercase;
}
.live-search-field div {
  position: relative;
}
.live-search-field i {
  position: absolute;
  left: 15px;
  top: 13px;
  color: var(--gold);
}
.live-search-field input,
.rating-filter select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(200,155,35,0.32);
  border-radius: 8px;
  background: rgba(255,255,255,0.72);
  color: var(--text);
  padding: 0 14px;
}
.live-search-field input {
  padding-left: 42px;
}
.price-filter input {
  width: 100%;
  accent-color: var(--gold);
}
.price-filter strong {
  color: var(--gold);
}
.enhanced-catalog-grid {
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.enhanced-catalog-grid.is-filtering {
  opacity: 0.35;
  transform: translateY(8px);
}
.catalog-card mark {
  padding: 0;
  background: rgba(200,155,35,0.24);
  color: inherit;
}
.catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.catalog-category {
  color: var(--gold);
  font: 800 0.72rem var(--font-button);
  text-transform: uppercase;
}
.stock-pill {
  color: var(--success);
  font: 800 0.72rem var(--font-button);
}
.price-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.price-line strong {
  margin: 0;
}
.price-line del {
  color: var(--muted);
  font-size: 0.86rem;
}
.price-line span {
  border-radius: 999px;
  background: rgba(46,125,50,0.12);
  color: var(--success);
  padding: 2px 8px;
  font: 800 0.7rem var(--font-button);
}
.quick-view-btn {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(16px);
  opacity: 0;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 999px;
  background: rgba(4,15,9,0.72);
  color: var(--white);
  padding: 0 16px;
  font: 800 0.72rem var(--font-button);
  text-transform: uppercase;
}
.catalog-card:hover .quick-view-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.catalog-image button.wishlist-active {
  background: var(--gold);
  color: var(--white);
}
.catalog-image button.wishlist-active i::before {
  content: "\F415";
}
.no-products-found {
  margin: 34px auto;
  max-width: 520px;
  text-align: center;
  padding: 46px 24px;
  border: 1px solid rgba(200,155,35,0.24);
  border-radius: 12px;
  background: rgba(255,255,255,0.48);
}
.no-products-found i {
  color: var(--gold);
  font-size: 3rem;
}
.no-products-found h3 {
  margin-top: 12px;
}
.product-quick-modal .modal-content {
  border: 1px solid rgba(200,155,35,0.34);
  border-radius: 14px;
  background: var(--cream);
  overflow: hidden;
}
.product-quick-modal .btn-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 5;
}
.quick-view-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.quick-view-image {
  min-height: 380px;
  border-radius: 10px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.quick-view-content h2 {
  padding-right: 24px;
  font-size: 2rem;
}
.quick-view-content .catalog-rating {
  margin: 8px 0 12px;
}
.quick-view-content ul {
  padding-left: 18px;
  margin: 14px 0;
  color: var(--muted);
}
.premium-toast {
  border: 1px solid rgba(200,155,35,0.34);
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-hover);
}
.premium-toast .toast-body {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.premium-toast i {
  color: var(--gold);
}

.details-main {
  padding: 158px 0 28px;
  background: var(--cream);
}
.details-breadcrumb {
  margin-bottom: 22px;
  color: var(--muted);
  font: 700 0.84rem var(--font-body);
  text-align: left;
  max-width: 100%;
}
.details-breadcrumb .breadcrumb {
  margin: 0;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.details-breadcrumb .breadcrumb-item,
.details-breadcrumb .breadcrumb-item a {
  color: var(--muted);
  text-decoration: none;
}
.details-breadcrumb .breadcrumb-item a:hover,
.details-breadcrumb .breadcrumb-item.active { color: var(--gold); }
.details-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--gold);
  content: var(--bs-breadcrumb-divider, ">");
}
.details-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: start;
}
.details-main-image {
  height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
  background: var(--green);
  touch-action: pan-y pinch-zoom;
}
@media (min-width: 1400px) {
  .details-main-image { height: 550px; }
}
.product-details-page header{
  background: var(--green-900);
}
.details-carousel,
.details-carousel .carousel-inner,
.details-carousel .carousel-item,
.details-carousel img {
  width: 100%;
  height: 100%;
}
.details-carousel .carousel-item {
  transition: opacity 0.3s ease;
}
.details-carousel .carousel-item-next,
.details-carousel .carousel-item-prev,
.details-carousel .carousel-item.active {
  display: block;
}
.details-carousel .carousel-item-next:not(.carousel-item-start),
.details-carousel .active.carousel-item-end {
  opacity: 0;
}
.details-carousel img {
  object-fit: cover;
  object-position: center;
  user-select: none;
  transition: transform 0.3s ease;
}
.details-main-image.is-zoomed img {
  cursor: zoom-out;
  transform: scale(1.75);
}
.details-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  border-radius: 999px;
  background: #177637;
  color: var(--white);
  padding: 7px 14px;
  font-weight: 800;
}
.gallery-nav,
.gallery-full {
  position: absolute;
  z-index: 4;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--green);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}
.gallery-nav { top: 50%; width: 46px; height: 46px; transform: translateY(-50%); opacity: 1; }
.gallery-nav i { pointer-events: none; }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-full { top: 18px; right: 18px; width: 42px; height: 42px; }
.details-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.details-thumbs button {
  height: 90px;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: transparent;
  overflow: hidden;
}
.details-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.details-thumbs button.active { border-color: var(--gold); }
.gallery-modal .modal-content {
  background: #070a07;
  color: var(--white);
}
.gallery-modal .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 18px 28px;
}
.gallery-modal .modal-title {
  font: 700 1.35rem var(--font-heading);
}
.modal-tools {
  display: flex;
  gap: 10px;
}
.gallery-modal .modal-body {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 20px 28px 28px;
}
.modal-gallery-carousel,
.modal-gallery-carousel .carousel-inner,
.modal-gallery-carousel .carousel-item {
  height: 100%;
  min-height: 0;
}
.modal-gallery-carousel img {
  width: 100%;
  height: calc(100vh - 190px);
  object-fit: contain;
  transition: transform 0.3s ease;
}
.modal-gallery-carousel.is-zoomed img {
  transform: scale(1.7);
  cursor: zoom-out;
}
.modal-thumbs {
  grid-template-columns: repeat(6, minmax(110px, 150px));
  justify-content: center;
  margin-top: 0;
}
.details-info h1 {
  color: var(--text);
  font-size: 2.35rem;
  margin-bottom: 8px;
}
.details-rating {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #f29f05;
  margin-bottom: 12px;
}
.details-rating small { color: var(--text); margin-left: 8px; }
.details-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}
.details-price strong {
  color: var(--text);
  font: 800 1.8rem var(--font-body);
}
.details-price del { color: var(--muted); }
.details-price span {
  border-radius: 999px;
  background: rgba(46,125,50,0.12);
  color: var(--success);
  padding: 4px 10px;
  font-weight: 800;
}
.details-actions {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  margin-bottom: 14px;
}
.details-actions .qty-control,
.details-actions .add-cart,
.details-buy { min-height: 48px; }
.details-buy {
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  font: 800 0.82rem var(--font-button);
  text-transform: uppercase;
}
.details-meta {
  display: flex;
  gap: 22px;
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 0.85rem;
}
.details-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(200,155,35,0.25);
  border-bottom: 1px solid rgba(200,155,35,0.25);
}
.details-trust article { display: flex; gap: 8px; align-items: start; }
.details-trust i { color: var(--green); font-size: 1.25rem; }
.details-trust strong,
.details-trust small { display: block; line-height: 1.35; }
.details-trust strong { font-size: 0.78rem; }
.details-trust small { color: var(--muted); font-size: 0.7rem; }
.inside-card {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 20px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(200,155,35,0.25);
  border-radius: 8px;
  background: rgba(255,255,255,0.48);
}
.inside-card h2,
.details-panel h2,
.details-related h2 { font-size: 1.25rem; margin-bottom: 12px; }
.inside-card ul { margin: 0; padding-left: 18px; line-height: 1.9; }
.inside-card li::marker { color: var(--gold); }
.inside-pack {
  min-height: 160px;
  border-radius: 8px;
  background: url("../images/hero-pack-reference.png") center / contain no-repeat;
}
.details-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 28px 0;
  padding: 18px;
  border: 1px solid rgba(200,155,35,0.18);
  border-radius: 10px;
  background: rgba(255,255,255,0.34);
}
.details-feature-strip article {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.details-feature-strip i {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200,155,35,0.32);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
}
.details-feature-strip strong,
.details-feature-strip small { display: block; line-height: 1.35; }
.details-feature-strip small { color: var(--muted); }
.details-panel {
  margin-bottom: 14px;
  padding: 24px;
  border: 1px solid rgba(200,155,35,0.22);
  border-radius: 10px;
  background: rgba(255,255,255,0.42);
}
.details-ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 28px;
}
.ingredient-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.ingredient-row article {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  font-weight: 800;
  font-size: 0.78rem;
}
.ingredient-row i {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(200,155,35,0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.7rem;
}
.nutrition-table th,
.nutrition-table td {
  border-color: rgba(200,155,35,0.18);
  color: var(--text);
  font-size: 0.86rem;
}
.nutrition-table td { text-align: right; }
.cooking-steps {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr;
  gap: 14px;
  align-items: center;
}
.cooking-steps article:not(:has(.bi-arrow-right)) {
  min-height: 140px;
  padding: 18px;
  border: 1px solid rgba(200,155,35,0.16);
  border-radius: 10px;
  background: rgba(255,255,255,0.28);
}
.cooking-steps i { color: var(--green); font-size: 1.25rem; }
.cooking-steps strong { color: #d66b12; }
.cooking-steps h3 { font: 800 0.94rem var(--font-body); margin: 4px 0; }
.cooking-steps p { color: var(--muted); font-size: 0.8rem; margin: 0; }
.details-media-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}
.video-panel {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
}
.details-video {
  min-height: 250px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.3)),
    url("../images/heroimage.png") center / cover no-repeat;
  display: grid;
  place-items: center;
}
.details-video button {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  background: rgba(0,0,0,0.32);
  color: var(--white);
  font-size: 2rem;
}
.video-modal .modal-content {
  border: 1px solid rgba(200,155,35,0.28);
  border-radius: 10px;
  background: var(--cream);
}
.video-modal .modal-header {
  border-bottom: 1px solid rgba(200,155,35,0.18);
}
.video-modal .modal-title {
  font: 700 1.35rem var(--font-heading);
}
.modal-video-frame {
  min-height: 430px;
}
.details-faq .accordion-item {
  border: 1px solid rgba(200,155,35,0.18);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  background: transparent;
}
.details-faq .accordion-button {
  background: rgba(255,255,255,0.35);
  color: var(--text);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 160px 260px 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.overall-rating strong { font: 800 3rem var(--font-body); }
.rating-bars { display: grid; gap: 8px; }
.rating-bars span {
  display: grid;
  grid-template-columns: 36px 1fr 30px;
  gap: 8px;
  align-items: center;
  font-size: 0.78rem;
}
.rating-bars b {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 70%, #f4e8d8 70%);
}
.reviews-grid article {
  padding: 18px;
  border: 1px solid rgba(200,155,35,0.18);
  border-radius: 8px;
}
.reviews-grid img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  float: left;
  margin-right: 12px;
}
.reviews-grid h3 { font: 800 0.9rem var(--font-body); margin: 0; }
.reviews-grid small { color: var(--gold); font-weight: 800; }
.details-related { margin: 28px 0; }
.mobile-detail-bar { display: none; }
@media (max-width:768px){

.reveal-right {
    opacity: 0;
    transform: translateY(0px) !important;
    transition: none !important;
}

}