/* Lala Paneer Udyog public website */
:root {
  --cream: #fbf7ef;
  --paper: #13eaf2;
  --ink: #2d2924;
  --muted: #c79955;
  --line: #b16c17;
  --primary: #f20101;
  --primary-dark: #773428;
  --accent: #c99a4a;
  --soft: #f4eadb;
  --danger: #b84a3a;
  --radius: 20px;
  --shadow: 0 16px 40px rgba(55, 37, 25, 0.08);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", "Noto Sans Devanagari", sans-serif;
  line-height: 1.65;
}

body {
  padding-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 250, 240, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 224, 209, 0.8);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.brand strong {
  display: block;
  font-family: "Noto Sans Devanagari", sans-serif;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

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

.nav a {
  padding: 9px 12px;
  border-radius: 10px;
  color: #555149;
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
  background: #f3e8e1;
}

.nav .nav-cta {
  background: var(--primary);
  color: #fff;
  padding-inline: 16px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 25px;
}

.section {
  max-width: var(--max);
  margin: auto;
  padding: 82px 20px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: 650px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.08;
  margin: 0 0 22px;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--primary);
}

.hero-lead,
.page-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 25px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 17px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.btn-light {
  background: #fff;
  color: var(--primary);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.trust-line {
  font-family: "Noto Sans Devanagari";
  font-weight: 700;
  color: #625d53;
}

.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.milk-art {
  height: 260px;
  display: grid;
  place-items: center;
  font-size: 120px;
  background: linear-gradient(135deg, #f7f2e7, #f0e6dc);
  border-radius: 20px;
  margin: 20px 0;
}

.hero-card h2 {
  font-family: "Noto Sans Devanagari";
  font-size: 22px;
  line-height: 1.4;
}

.hero-card p {
  color: var(--muted);
}

.section-soft {
  max-width: none;
  background: var(--soft);
}

.section-soft > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.split h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.035em;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
  max-width: 680px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.product-grid-large {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(38, 30, 18, 0.05);
}

.product-image {
  aspect-ratio: 4/3;
  background: #eef3ed;
  display: grid;
  place-items: center;
  font-size: 54px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 17px;
}

.product-body h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.product-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  min-height: 42px;
}

.price-line {
  display: flex;
  align-items: end;
  gap: 8px;
  flex-wrap: wrap;
}

.price {
  font-size: 21px;
  font-weight: 800;
  color: var(--primary);
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: #fff0d2;
  color: #805c23;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.availability {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.availability.available {
  color: var(--primary);
}

.availability.unavailable {
  color: var(--danger);
}

.product-actions {
  margin-top: 13px;
}

.product-actions .btn {
  width: 100%;
  font-size: 13px;
}

.loading-card {
  grid-column: 1/-1;
  padding: 45px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 18px;
  text-align: center;
  color: var(--muted);
}

.center {
  text-align: center;
}

.text-link {
  font-weight: 800;
  color: var(--primary);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 13px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}


/* Homepage service feature cards are links so visitors can jump directly to the matching service section. */
.feature-service {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.feature-service:hover,
.feature-service:focus-visible {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
  outline: none;
}
.feature-service > span {
  font-weight: 800;
  color: var(--accent);
}
.feature-service h3 { margin: 0; }
.feature-service p { margin: 3px 0 4px; color: var(--muted); font-size: 14px; }
.feature-service small { color: var(--primary); font-weight: 700; font-size: 12px; }

.feature-list span,
.service-card > span {
  font-weight: 800;
  color: var(--accent);
}

.feature-list h3 {
  margin: 0;
}

.feature-list p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-grid article {
  background: #fff;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #f3e8e1;
  color: var(--primary);
  border-radius: 12px;
  font-weight: 800;
}

.trust-grid h3 {
  margin: 16px 0 5px;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-grid blockquote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 18px;
  font-weight: 700;
  font-family: "Noto Sans Devanagari";
  box-shadow: var(--shadow);
}

.location {
  max-width: none;
  background: var(--primary-dark);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.location > * {
  max-width: 560px;
}

.location h2 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 14px;
}

.location p {
  color: #dbeae3;
}

.map-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 310px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 310px;
  border: 0;
}

.map-full {
  max-width: none;
}

.page-hero {
  padding-top: 90px;
  padding-bottom: 55px;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.filter-bar button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 700;
}

.filter-bar button.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  min-height: 220px;
}

.service-card h2 {
  margin: 28px 0 10px;
}

.service-card p {
  color: var(--muted);
}

.quote-box {
  background: var(--primary);
  color: #fff;
  border-radius: 22px;
  padding: 45px;
  font-size: 28px;
  font-family: "Noto Sans Devanagari";
  font-weight: 700;
}

.owner-card,
.contact-card,
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.owner-card h3 {
  margin: 4px 0;
  font-size: 22px;
}

.owner-card p,
.contact-card p {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.form-card h2,
.contact-card h2 {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-card label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(23, 107, 82, 0.1);
}

.form-status {
  min-height: 24px;
  font-size: 13px;
}

.form-status.success {
  color: var(--primary);
}

.form-status.error {
  color: var(--danger);
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 25px;
  align-items: end;
  max-width: var(--max);
  margin: auto;
  padding: 45px 20px 80px;
  color: var(--muted);
  font-size: 13px;
}

.footer strong {
  color: var(--ink);
  font-size: 18px;
}

.footer p {
  margin: 3px 0;
}

.footer-credit {
  text-align: right;
}

.mobile-actions {
  display: none;
}

@media (max-width: 950px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 60px;
  }

  .hero-card {
    max-width: 620px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .location,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-credit {
    text-align: left;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 58px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .nav .nav-cta {
    text-align: center;
  }

  .section {
    padding: 40px 16px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-card {
    transform: none;
  }

  .milk-art {
    height: 210px;
  }

  .product-grid,
  .product-grid-large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 24px;
  }

  .feature-list {
    gap: 10px;
  }

  .feature-service {
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
  }

  .feature-service p {
    font-size: 13px;
    line-height: 1.4;
  }

  .feature-service small {
    font-size: 11px;
  }

  .service-card {
    min-height: 0;
    padding: 18px;
  }

  .service-card h2 {
    margin: 12px 0 7px;
    font-size: 21px;
  }

  .service-card p {
    margin: 0 0 14px;
  }

  .service-grid {
    gap: 12px;
  }


  /* Compact product cards on phones: show three products in a row
     without introducing horizontal page scrolling. */
  .product-card {
    min-width: 0;
    border-radius: 13px;
  }

  .product-image {
    aspect-ratio: 1 / 1;
    min-height: 0;
    font-size: 34px;
  }

  .product-image img {
    padding: 6px;
  }

  .product-body {
    padding: 10px;
    min-width: 0;
  }

  .product-body h3 {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .product-body > p {
    font-size: 11px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 7px;
  }

  .price-line {
    gap: 4px;
    flex-wrap: wrap;
  }

  .price-line .price {
    font-size: 13px;
  }

  .price-line .old-price {
    font-size: 10px;
  }

  .availability {
    font-size: 10px;
    margin: 6px 0;
  }

  .offer-countdown {
    max-width: 100%;
    padding: 4px 6px;
    font-size: 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-actions {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  .product-actions .btn {
    min-height: 38px;
    padding: 5px 4px;
    font-size: 10px;
    line-height: 1.15;
    white-space: normal;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    padding-bottom: 30px;
  }

  .mobile-actions {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);
  }

  .mobile-actions a {
    text-align: center;
    padding: 14px;
    font-weight: 800;
    color: var(--primary);
  }

  .mobile-actions a + a {
    background: var(--primary);
    color: #fff;
  }

  .location {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-hero {
    padding-top: 38px;
    padding-bottom: 30px;
  }
}



@media (max-width: 360px) {
  .product-grid,
  .product-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-body {
    padding: 9px;
  }

  .product-body > p {
    display: none;
  }

  .product-actions .btn {
    font-size: 10.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Dynamic offer countdown */
.offer-countdown {
  display: inline-flex;
  align-items: center;
  margin-top: 0.65rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: rgba(0, 0, 0, 0.05);
}

.offer-countdown.expired {
  opacity: 0.65;
}


/* Reliability + mobile usability improvements */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, iframe {
  max-width: 100%;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  line-height: 1;
  padding: 0;
}

.product-image {
  position: relative;
  min-height: 190px;
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

.image-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 190px;
  font-size: 54px;
}

.product-image.image-error {
  background: #f4eadb;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-actions .btn {
  min-height: 44px;
  padding-inline: 10px;
  text-align: center;
}

.form-helper,
.field-hint {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.form-helper {
  margin: -4px 0 18px;
}

.field-hint {
  margin-top: 6px;
  font-weight: 400;
}

.order-fields {
  padding: 14px;
  margin: 4px 0 8px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: #fcfaf7;
}

.order-fields[hidden] {
  display: none;
}

.submit-btn {
  min-height: 48px;
  padding-inline: 22px;
}

.error-card p {
  margin: 8px 0 0;
}

@media (max-width: 700px) {
  .nav-toggle {
    display: inline-flex;
    flex: 0 0 46px;
  }

  .site-header {
    z-index: 80;
  }

  .nav {
    z-index: 90;
    box-shadow: 0 14px 30px rgba(38, 30, 18, 0.10);
  }

  body.nav-open {
    overflow: hidden;
  }

  .brand {
    min-width: 0;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand strong,
  .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Keep product cards compact; the grid above already controls the
     three-column phone layout. */
  .product-actions {
    grid-template-columns: 1fr 1fr;
  }

  .product-image {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .image-placeholder {
    min-height: 0;
  }

  .contact-card,
  .form-card,
  .owner-card {
    padding: 20px;
  }

  .form-card input,
  .form-card select,
  .form-card textarea {
    min-height: 46px;
    font-size: 16px;
  }

  .form-card textarea {
    min-height: 150px;
  }

  .mobile-actions a {
    min-height: 54px;
    display: grid;
    place-items: center;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(38px, 12vw, 46px);
  }

  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .page-hero h1 {
    overflow-wrap: anywhere;
  }
}


/* Direct order flow */
.order-layout{display:grid;grid-template-columns:minmax(280px,.75fr) minmax(0,1.25fr);gap:22px;align-items:start}
.order-product-card{background:#fff;border:1px solid var(--line);border-radius:20px;overflow:hidden;position:sticky;top:100px;box-shadow:var(--shadow)}
.order-product-body{padding:22px}.order-product-body h2{margin:0 0 8px}.order-product-body p{color:var(--muted)}
.order-product-card .product-image{aspect-ratio:4/3;min-height:260px;background:#f8f3eb}.order-product-card .product-image img{width:100%;height:100%;object-fit:contain;object-position:center;padding:14px}
@media(max-width:760px){.order-layout{grid-template-columns:1fr}.order-product-card{position:static}.order-product-card .product-image{min-height:210px}}

/* Mobile product browsing: two comfortable cards at a time.
   Featured products use a horizontal swipe carousel; the full Products page
   remains a clean two-column grid so users can scan the complete catalogue. */
@media (max-width: 700px) {
  #featuredProducts.product-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    margin-right: -2px;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  #featuredProducts.product-grid .product-card {
    flex: 0 0 calc((100% - 12px) / 2);
    width: calc((100% - 12px) / 2);
    scroll-snap-align: start;
  }

  #productGrid.product-grid-large {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
  }

  #productGrid.product-grid-large .product-card {
    width: 100%;
  }

  #featuredProducts .product-image,
  #productGrid .product-image {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  #featuredProducts .product-body,
  #productGrid .product-body {
    padding: 12px;
  }

  #featuredProducts .product-actions,
  #productGrid .product-actions {
    gap: 6px;
  }

  #featuredProducts .product-actions .btn,
  #productGrid .product-actions .btn {
    min-height: 40px;
    padding: 6px 5px;
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  #featuredProducts.product-grid {
    gap: 10px;
  }

  #featuredProducts.product-grid .product-card {
    flex-basis: calc((100% - 10px) / 2);
    width: calc((100% - 10px) / 2);
  }

  #productGrid.product-grid-large {
    gap: 10px;
  }
}


/* v6 mobile/product browsing polish: normal section rhythm + category rails. */
.product-category-list { display: block; }
.product-category-section { margin: 0 0 42px; }
.product-category-section:last-child { margin-bottom: 8px; }
.product-category-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
}
.product-category-heading .eyebrow { margin-bottom: 4px; }
.product-category-heading h2 { margin: 0; font-size: clamp(24px, 3vw, 34px); line-height: 1.15; }
.product-category-count { color: var(--muted); font-size: 13px; white-space: nowrap; }
.product-category-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-category-row .product-card { min-width: 0; }
.service-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 18px; }
.service-actions .btn { width: 100%; font-size: 12px; padding: 10px 9px; }

@media (max-width: 700px) {
  .page-hero.section {
    padding-top: 36px;
    padding-bottom: 22px;
  }
  .page-hero h1 { margin-bottom: 12px; }
  .page-hero p { margin-bottom: 0; font-size: 16px; line-height: 1.55; }
  .page-hero + .section { padding-top: 18px; }

  #productGrid.product-category-list { display: block; }
  .product-category-section { margin-bottom: 30px; }
  .product-category-heading { margin-bottom: 11px; align-items: center; }
  .product-category-heading h2 { font-size: 23px; }
  .product-category-count { font-size: 11px; }

  /* One comfortable card + a clear peek of the next card. The peek is the
     visual cue that the row is horizontally swipeable. */
  .product-category-row,
  #featuredProducts.product-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    padding: 2px 4px 12px 1px;
    margin-right: -1px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product-category-row::-webkit-scrollbar,
  #featuredProducts.product-grid::-webkit-scrollbar { display: none; }

  .product-category-row .product-card,
  #featuredProducts.product-grid .product-card {
    flex: 0 0 68%;
    width: 68%;
    scroll-snap-align: start;
  }

  .product-category-row .product-image,
  #featuredProducts .product-image { aspect-ratio: 1 / 1; }
  .product-category-row .product-body,
  #featuredProducts .product-body { padding: 12px; }
  .product-category-row .product-body h3,
  #featuredProducts .product-body h3 { font-size: 15px; }
  .product-category-row .product-body > p,
  #featuredProducts .product-body > p { font-size: 12px; min-height: 34px; }
  .product-category-row .price-line .price,
  #featuredProducts .price-line .price { font-size: 15px; }
  .product-category-row .product-actions,
  #featuredProducts .product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
  .product-category-row .product-actions .btn,
  #featuredProducts .product-actions .btn { min-height: 42px; font-size: 11px; padding: 7px 6px; }

  .service-card { min-height: 0; padding: 20px; }
  .service-card h2 { margin: 17px 0 8px; font-size: 22px; }
  .service-card p { margin-bottom: 0; }
  .service-actions { margin-top: 15px; }
  .service-actions .btn { min-height: 42px; }
}

@media (max-width: 420px) {
  .section { padding-top: 42px; padding-bottom: 42px; }
  .page-hero.section { padding-top: 30px; padding-bottom: 18px; }
  .product-category-row .product-card,
  #featuredProducts.product-grid .product-card { flex-basis: 72%; width: 72%; }
  .product-category-section { margin-bottom: 26px; }
}


/* v9: calmer spacing + clearer required fields + contact form visibility */
:root { --success: #17834b; }
.required-mark { color: var(--primary); font-weight: 800; margin-left: 2px; }
.form-status.success { color: var(--success); font-weight: 700; }
.form-status.error { color: var(--danger); font-weight: 700; }
.form-status.success::first-letter, .form-status.error::first-letter { font-weight: 900; }

/* Reduce oversized desktop whitespace without changing the overall design. */
@media (min-width: 951px) {
  .section { padding-top: 58px; padding-bottom: 58px; }
  .hero { gap: 42px; min-height: 560px; }
  .page-hero { padding-top: 62px; padding-bottom: 32px; }
  .split { gap: 44px; }
  .page-hero h1 { margin-bottom: 14px; }
  .page-hero p { margin: 0; }
  .section-heading { margin-bottom: 22px; }
  .contact-layout { gap: 20px; }
  .footer { padding-top: 34px; padding-bottom: 62px; }
}

@media (min-width: 701px) and (max-width: 950px) {
  .section { padding-top: 52px; padding-bottom: 52px; }
  .page-hero { padding-top: 50px; padding-bottom: 28px; }
}

@media (max-width: 700px) {
  body { padding-bottom: 48px; }
  .section { padding-top: 28px; padding-bottom: 28px; }
  .page-hero { padding-top: 28px; padding-bottom: 20px; }
  .page-hero h1 { margin-bottom: 10px; }
  .page-hero p { margin-top: 0; }

  /* On Contact, show the enquiry form before the tall direct-contact card so
     the user can see and use the form without scrolling past the sticky bar. */
  .contact-layout { display: flex; flex-direction: column; gap: 16px; }
  .contact-layout .form-card { order: 1; }
  .contact-layout .contact-card { order: 2; }

  .contact-card, .form-card { padding: 18px; }
  .form-card h2, .contact-card h2 { margin-bottom: 8px; }
  .form-helper { margin-bottom: 12px; }
  .form-card label { margin-bottom: 10px; }
  .form-card textarea { min-height: 120px; }

  /* Compact fixed contact bar so it never hides the form/status area. */
  .mobile-actions { height: 48px; }
  .mobile-actions a { min-height: 48px; padding: 8px 12px; font-size: 14px; }

  /* Avoid very large empty vertical zones on common phone widths. */
  .hero { gap: 24px; }
  .split { gap: 20px; }
  .section-heading { margin-bottom: 18px; }
}

@media (max-width: 420px) {
  .section { padding-top: 24px; padding-bottom: 24px; }
  .page-hero { padding-top: 24px; padding-bottom: 16px; }
  .contact-layout { gap: 12px; }
}

@media (max-width: 700px) {
  .form-card .required-mark { font-size: 12px; }
  .mobile-actions { box-sizing: border-box; }
  .contact-layout .form-card { scroll-margin-top: 82px; }
}


/* v10: balanced page rhythm and category counts that stay beside the title. */
.product-category-heading {
  display: block;
  margin: 0 0 14px;
}
.product-category-heading-main { min-width: 0; }
.product-category-title-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.product-category-title-row h2 { margin: 0; }
.product-category-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

@media (min-width: 951px) {
  /* The page hero and its content section are one visual block; don't leave
     a second full section of empty padding between them. */
  .page-hero + .section { padding-top: 22px; }
  .page-hero + .section .filter-bar { margin-bottom: 22px; }
  .product-category-section { margin-bottom: 34px; }
  .product-category-heading { margin-bottom: 12px; }
  .service-grid { gap: 16px; }
  .service-card { padding: 24px; min-height: 210px; }
  .contact-layout { gap: 20px; }
}

@media (min-width: 701px) and (max-width: 950px) {
  .page-hero + .section { padding-top: 22px; }
  .product-category-section { margin-bottom: 30px; }
}

@media (max-width: 700px) {
  .page-hero + .section { padding-top: 16px; }
  .product-category-heading { margin-bottom: 10px; }
  .product-category-title-row { gap: 8px; }
  .product-category-count { font-size: 11px; }
}

/* Premium homepage hero slider + product polish */
.hero-slider{position:relative;min-height:520px;overflow:hidden;isolation:isolate;background:#2f2721;color:#fff;box-shadow:0 22px 60px rgba(45,31,20,.18)}
.hero-slider::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(26,18,13,.08),rgba(26,18,13,.78))}
.hero-slide{position:absolute;inset:0;opacity:0;transition:opacity .7s ease;z-index:0}
.hero-slide.active{opacity:1}
.hero-slide img{width:100%;height:100%;object-fit:cover;display:block}
.hero-overlay{position:absolute;inset:0;z-index:2;padding:28px;display:flex;flex-direction:column;justify-content:space-between}
.hero-overlay .hero-card-top{position:relative;color:#fff;border-bottom-color:rgba(255,255,255,.25)}
.hero-overlay h2{max-width:520px;margin:10px 0 8px;color:#fff;font-size:clamp(25px,3vw,38px);line-height:1.12;text-shadow:0 2px 16px rgba(0,0,0,.22)}
.hero-overlay p{max-width:520px;margin:0;color:rgba(255,255,255,.9);font-size:14px;line-height:1.55}
.hero-slider-eyebrow{display:inline-flex;padding:6px 10px;border:1px solid rgba(255,255,255,.35);border-radius:999px;background:rgba(255,255,255,.1);font-size:10px;font-weight:800;letter-spacing:.08em}
.hero-dots{display:flex;gap:7px}
.hero-dots button{width:8px;height:8px;border:0;border-radius:50%;padding:0;background:rgba(255,255,255,.5);transition:.2s}
.hero-dots button.active{width:24px;border-radius:99px;background:#fff}
.product-card{border-color:#e1d7ca;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.product-card:hover{transform:translateY(-4px);border-color:#c9ad89;box-shadow:0 18px 40px rgba(38,30,18,.11)}
.product-image{background:linear-gradient(135deg,#f5f7f2,#ece8df)}
.product-image img{object-fit:cover}
.product-variant{display:inline-flex;margin:-1px 0 8px;padding:4px 8px;border-radius:999px;background:#f4eee5;color:#79644d;font-size:10px;font-weight:800}
@media(max-width:760px){
  .hero-slider{min-height:430px}
  .hero-overlay{padding:20px}
  .hero-overlay h2{font-size:25px}
  .hero-overlay p{font-size:12px}
}

/* =========================================================
   PREMIUM LPU VISUAL SYSTEM — keeps existing functionality
   ========================================================= */
:root{
  --ink:#18231d;
  --ink-soft:#536158;
  --cream:#f7f3ea;
  --cream-2:#eee8db;
  --paper:#fffdf8;
  --green:#1f6b45;
  --green-2:#2d8155;
  --green-deep:#123d2a;
  --gold:#c89a4b;
  --gold-soft:#ead8b5;
  --line:rgba(31,107,69,.14);
  --shadow:0 18px 55px rgba(23,48,35,.10);
  --shadow-hover:0 24px 70px rgba(23,48,35,.16);
  --radius-xl:30px;
  --radius-lg:22px;
  --radius-md:16px;
}

html{scroll-behavior:smooth}
body{
  background:
    radial-gradient(circle at 8% 8%,rgba(200,154,75,.08),transparent 28rem),
    radial-gradient(circle at 92% 18%,rgba(31,107,69,.07),transparent 30rem),
    var(--cream);
  color:var(--ink);
  font-family:"Plus Jakarta Sans","Noto Sans Devanagari",sans-serif;
  letter-spacing:-.01em;
}
body::selection{background:rgba(31,107,69,.18)}

.site-header{
  position:sticky;top:14px;z-index:50;
  width:min(1180px,calc(100% - 28px));
  margin:14px auto 0;
  padding:10px 12px 10px 16px;
  border:1px solid rgba(255,255,255,.72);
  border-radius:22px;
  background:rgba(255,253,248,.84);
  backdrop-filter:blur(18px) saturate(150%);
  -webkit-backdrop-filter:blur(18px) saturate(150%);
  box-shadow:0 12px 35px rgba(24,53,38,.08),inset 0 1px 0 rgba(255,255,255,.85);
}
.brand{gap:11px}
.brand-mark{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(145deg,var(--green-2),var(--green-deep));
  color:#fff;font-weight:800;box-shadow:0 9px 20px rgba(31,107,69,.22);
}
.brand strong{font-size:14px;color:var(--green-deep)}
.brand small{color:#738077;font-size:10px;letter-spacing:.04em}
.nav{gap:5px}
.nav a{
  border-radius:12px;padding:10px 13px;color:#526057;font-weight:700;
  transition:.22s ease;
}
.nav a:hover,.nav a.active{background:#edf4ee;color:var(--green-deep)}
.nav .nav-cta{
  color:#fff;background:linear-gradient(135deg,var(--green-2),var(--green));
  box-shadow:0 8px 20px rgba(31,107,69,.18);
}
.nav .nav-cta:hover{color:#fff;transform:translateY(-1px)}

.section{padding:92px 20px}
.section-soft{background:rgba(255,253,248,.62);border-block:1px solid rgba(31,107,69,.07)}
.hero.section{padding-top:74px;gap:48px;align-items:center;min-height:690px}
.hero-copy{max-width:590px}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--green);font-weight:800;font-size:11px;letter-spacing:.13em;text-transform:uppercase;
}
.eyebrow::before{content:"";width:22px;height:1.5px;background:var(--gold);display:inline-block}
.hero h1,.page-hero h1{
  font-family:"Playfair Display","Noto Sans Devanagari",serif;
  font-weight:700;letter-spacing:-.045em;color:var(--green-deep);
}
.hero h1{font-size:clamp(52px,6.4vw,88px);line-height:.98;margin:18px 0 22px}
.hero h1 span{color:var(--green)}
.hero-lead{max-width:560px;color:var(--ink-soft);font-size:16px;line-height:1.8}
.actions{gap:10px;flex-wrap:wrap}
.btn{
  min-height:46px;border-radius:13px;padding:12px 17px;font-weight:800;
  border:1px solid transparent;transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.btn:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(24,53,38,.11)}
.btn-primary{background:linear-gradient(135deg,#287b50,#175c3b);box-shadow:0 10px 25px rgba(31,107,69,.2)}
.btn-secondary{background:rgba(255,255,255,.72);border-color:rgba(31,107,69,.18);color:var(--green-deep)}
.trust-line{color:#69766e;font-weight:600;font-size:13px}

.hero-slider{
  min-height:570px;border-radius:var(--radius-xl);border:1px solid rgba(255,255,255,.68);
  box-shadow:var(--shadow);overflow:hidden;background:#183629;
}
.hero-slider::before{content:"";position:absolute;inset:0;z-index:1;border:1px solid rgba(255,255,255,.16);border-radius:inherit;pointer-events:none}
.hero-slider::after{
  background:linear-gradient(180deg,rgba(8,28,18,.04) 20%,rgba(8,28,18,.14) 42%,rgba(8,28,18,.88) 100%);
}
.hero-slide img{object-fit:cover;transform:scale(1.02);transition:transform 6s ease}
.hero-slide.active img{transform:scale(1.07)}
.hero-overlay{padding:30px}
.hero-overlay .hero-card-top{border-bottom:1px solid rgba(255,255,255,.22);padding-bottom:14px}
.hero-overlay h2{font-family:"Playfair Display","Noto Sans Devanagari",serif;font-size:clamp(28px,3.4vw,44px);line-height:1.08;letter-spacing:-.035em}
.hero-overlay p{font-size:13px;opacity:.9}
.hero-slider-eyebrow{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.3);backdrop-filter:blur(8px)}
.hero-dots button{background:rgba(255,255,255,.48);box-shadow:0 0 0 4px transparent}
.hero-dots button.active{background:#fff;box-shadow:0 0 0 4px rgba(255,255,255,.1)}

.section-heading{max-width:760px;margin-bottom:38px}
.section-heading h2,.split h2,.location h2{
  font-family:"Playfair Display","Noto Sans Devanagari",serif;
  color:var(--green-deep);font-size:clamp(30px,4vw,48px);line-height:1.08;letter-spacing:-.035em;
}
.section-heading p{color:var(--ink-soft);line-height:1.75}
.center{margin-top:28px}

.product-grid{gap:20px}
.product-card{
  position:relative;overflow:hidden;background:rgba(255,253,248,.94);
  border:1px solid rgba(31,107,69,.13);border-radius:22px;
  box-shadow:0 10px 34px rgba(23,48,35,.07);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.product-card:hover{transform:translateY(-6px);border-color:rgba(31,107,69,.28);box-shadow:var(--shadow-hover)}
.product-image{background:linear-gradient(145deg,#f4f0e7,#e7eee8);border-bottom:1px solid rgba(31,107,69,.09);overflow:hidden}
.product-image img{object-fit:cover;transition:transform .45s ease}
.product-card:hover .product-image img{transform:scale(1.045)}
.product-body{padding:19px}
.product-body h3{color:var(--green-deep);font-size:19px;letter-spacing:-.025em}
.product-body p{color:#66736b;line-height:1.6;font-size:13px}
.price{color:var(--green-deep);font-weight:800}
.availability.available{color:#1d7549;background:#edf7ef;border-color:#cfe7d5}
.product-actions .btn{flex:1}
.badge{background:#fbf1dc;color:#8a631f;border:1px solid #ead6ab}

.split{gap:48px;align-items:start}
.feature-list{gap:12px}
.feature-service{
  background:rgba(255,253,248,.78);border:1px solid rgba(31,107,69,.13);border-radius:18px;padding:18px;
  transition:.22s ease;box-shadow:0 8px 28px rgba(23,48,35,.05)
}
.feature-service:hover{transform:translateX(4px);border-color:rgba(31,107,69,.28);box-shadow:0 14px 36px rgba(23,48,35,.09)}
.feature-service>span{color:var(--gold);font-weight:800}
.feature-service h3{color:var(--green-deep)}
.feature-service p,.feature-service small{color:#6b776f}

.trust-grid{gap:18px}
.trust-grid article{
  background:rgba(255,253,248,.78);border:1px solid rgba(31,107,69,.12);border-radius:20px;padding:24px;
  box-shadow:0 8px 28px rgba(23,48,35,.05)
}
.trust-grid .icon{background:#edf5ef;color:var(--green);border:1px solid #d4e6d8}
.trust-grid h3{color:var(--green-deep)}
.trust-grid p{color:#68756d;line-height:1.65}

.review-grid{gap:16px}
.review-grid blockquote{
  margin:0;background:var(--paper);border:1px solid rgba(200,154,75,.2);border-radius:20px;padding:26px;
  color:var(--green-deep);font-family:"Playfair Display",serif;font-size:19px;box-shadow:0 8px 28px rgba(23,48,35,.05)
}

.section-dark.location{
  background:linear-gradient(135deg,#123d2a,#1c5c3d 58%,#245f42);border-radius:30px;margin:30px auto;max-width:1180px;width:calc(100% - 40px);
  box-shadow:0 25px 70px rgba(18,61,42,.22);color:#fff;overflow:hidden
}
.location h2{color:#fff}.location p{color:rgba(255,255,255,.76);line-height:1.7}
.map-card{border:1px solid rgba(255,255,255,.18);box-shadow:0 15px 45px rgba(0,0,0,.14)}

.footer{background:#102c20;color:#c9d8cf;border-top:1px solid rgba(255,255,255,.08);padding:42px 20px 95px}
.footer strong{color:#fff}.footer p{color:#9fb1a6}
.mobile-actions{background:rgba(16,44,32,.95);backdrop-filter:blur(16px);border-top:1px solid rgba(255,255,255,.1)}
.mobile-actions a{font-weight:800;color:#fff}

/* Products page/category rails: premium, but never clip public products. */
.product-category-section{
  background:rgba(255,253,248,.68);border:1px solid rgba(31,107,69,.11);border-radius:24px;padding:22px;margin-bottom:20px;
  box-shadow:0 10px 34px rgba(23,48,35,.045)
}
.product-category-heading{border-bottom:1px solid rgba(31,107,69,.09);padding-bottom:15px;margin-bottom:18px}
.product-category-title-row{display:flex;align-items:center;justify-content:space-between;gap:12px}
.product-category-title-row h2{color:var(--green-deep);font-family:"Playfair Display","Noto Sans Devanagari",serif;font-size:30px}
.product-category-count{background:#edf5ef;border:1px solid #d6e7da;color:var(--green);padding:6px 10px;border-radius:999px;font-size:11px;font-weight:800}
.product-category-row{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.product-category-row .product-card{min-width:0}

@media (max-width:1000px){
  .hero.section{grid-template-columns:1fr;min-height:auto;padding-top:54px}
  .hero-copy{max-width:760px}.hero-slider{min-height:510px}
  .product-category-row{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:720px){
  .site-header{top:8px;margin-top:8px;width:calc(100% - 16px);border-radius:18px}
  .hero.section{padding-top:36px;gap:28px}.hero h1{font-size:50px}.hero-lead{font-size:14px}
  .hero-slider{min-height:430px;border-radius:22px}.hero-overlay{padding:20px}.hero-overlay h2{font-size:28px}
  .section{padding:68px 16px}.section-heading{margin-bottom:26px}
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .product-body{padding:14px}.product-body h3{font-size:16px}.product-body p{font-size:12px}
  .product-actions{flex-direction:column}.product-actions .btn{width:100%}
  .product-category-section{padding:14px;border-radius:19px}.product-category-row{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  .product-category-title-row{align-items:flex-start}.product-category-title-row h2{font-size:25px}
  .section-dark.location{width:calc(100% - 24px);margin:12px auto;border-radius:24px}
}
@media (max-width:430px){
  .brand-mark{width:38px;height:38px;border-radius:12px}.brand strong{font-size:12px}.brand small{font-size:9px}
  .hero h1{font-size:43px}.hero-slider{min-height:400px}.hero-overlay p{font-size:11px}
  .product-card{border-radius:17px}.product-image{aspect-ratio:1/1}.product-body{padding:12px}.product-body h3{font-size:15px}
  .price{font-size:14px}.product-actions .btn{font-size:12px;padding:10px 8px}
}

/* ===== Premium modern visual refresh ===== */
:root {
  --cream: #f6f7f2;
  --paper: #ffffff;
  --ink: #10221b;
  --muted: #66746e;
  --line: #dfe6e1;
  --primary: #176b4f;
  --primary-dark: #0d3f30;
  --accent: #c9a35f;
  --soft: #edf3ee;
  --danger: #b64b43;
  --radius: 24px;
  --shadow: 0 22px 60px rgba(16,34,27,.10);
  --max: 1220px;
}

body {
  background: #f6f7f2;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Noto Sans Devanagari", sans-serif;
}

.site-header {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(246,247,242,.82);
  border-bottom: 1px solid rgba(223,230,225,.78);
  box-shadow: 0 8px 30px rgba(16,34,27,.035);
}

.brand-mark {
  background: linear-gradient(145deg, #1d7959, #0e4a38);
  box-shadow: 0 10px 24px rgba(23,107,79,.22);
}

.brand strong { color: #10221b; }
.brand small { color: #718078; }
.nav a { color: #53615b; font-weight: 650; }
.nav a:hover, .nav a.active { color: var(--primary); }
.nav-cta {
  background: #123f31 !important;
  color: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 9px 22px rgba(18,63,49,.16);
}

.section { padding: 96px 24px; }
.hero {
  max-width: 1280px;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 5vw, 76px);
  min-height: 690px;
  padding-top: 74px;
  padding-bottom: 74px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  color: var(--primary);
  letter-spacing: .16em;
  font-size: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 8px;
}
.hero h1 {
  font-family: "Playfair Display", "Noto Sans Devanagari", serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 86px);
  letter-spacing: -.055em;
  color: #10221b;
}
.hero h1 span { color: var(--primary); }
.hero-lead, .page-hero p { color: #66746e; line-height: 1.8; }
.trust-line { color: #53645d; }

.btn {
  border-radius: 14px;
  padding: 13px 19px;
  min-height: 48px;
  box-shadow: none;
}
.btn-primary {
  background: linear-gradient(135deg, #1a7657, #0e4d39);
  box-shadow: 0 12px 26px rgba(23,107,79,.20);
}
.btn-primary:hover { box-shadow: 0 16px 32px rgba(23,107,79,.25); transform: translateY(-2px); }
.btn-secondary { background: rgba(255,255,255,.8); border-color: #d5dfda; }

.hero-card {
  position: relative;
  min-height: 570px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  background: #102a21;
  box-shadow: 0 30px 80px rgba(16,34,27,.20);
  transform: none;
  isolation: isolate;
}
.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9,31,24,.04) 15%, rgba(9,31,24,.18) 46%, rgba(9,31,24,.88) 100%);
}
.hero-slide img { object-fit: cover; transform: scale(1.02); transition: transform 1.2s ease; }
.hero-slide.active img { transform: scale(1.055); }
.hero-overlay {
  z-index: 2;
  padding: 30px;
  color: #fff;
}
.hero-card-top { color: rgba(255,255,255,.78); }
.hero-card-top span {
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
}
.hero-slider-eyebrow { color: #e5c888; letter-spacing: .12em; }
.hero-card h2 {
  font-family: "Noto Sans Devanagari", sans-serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.35;
  color: #fff;
  max-width: 620px;
}
.hero-card p { color: rgba(255,255,255,.78); }
.hero-dots button { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.25); }
.hero-dots button.active { background: #e1bd72; border-color: #e1bd72; }

.section-soft {
  background: linear-gradient(180deg, #eef3ee 0%, #f4f6f2 100%);
  border-top: 1px solid #e1e9e4;
  border-bottom: 1px solid #e1e9e4;
}
.section-heading h2, .split h2 {
  font-family: "Playfair Display", "Noto Sans Devanagari", serif;
  color: #10221b;
  letter-spacing: -.045em;
}
.section-heading p { color: #6b7872; }

.product-grid { gap: 22px; }
.product-card {
  background: rgba(255,255,255,.92);
  border: 1px solid #dfe7e2;
  border-radius: 22px;
  box-shadow: 0 12px 36px rgba(16,34,27,.065);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: #b9d0c5;
  box-shadow: 0 22px 50px rgba(16,34,27,.12);
}
.product-image { background: linear-gradient(145deg, #f0f5f1, #e5eee8); }
.product-body { padding: 20px; }
.product-body h3 { color: #173329; font-weight: 800; }
.product-body p, .availability { color: #718078; }
.price { color: var(--primary); }
.badge { background: #f4ead2; color: #765d2e; }

.feature-list { gap: 13px; }
.feature-service, .trust-grid article, .review-grid blockquote {
  border: 1px solid #dce6e0;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 32px rgba(16,34,27,.05);
  border-radius: 20px;
}
.feature-service:hover { border-color: #b8cec2; transform: translateY(-3px); }
.feature-service > span { color: var(--accent); }
.trust-grid article { padding: 26px; }
.trust-grid .icon {
  background: #e4efe9;
  color: var(--primary);
  border: 1px solid #cfe0d6;
}
.review-grid { gap: 18px; }
.review-grid blockquote { color: #34463e; padding: 26px; font-weight: 650; }

.section-dark {
  background: linear-gradient(135deg, #0b3024 0%, #123f31 58%, #0d2a21 100%);
  color: #fff;
  border-radius: 30px;
  margin: 0 24px 80px;
  max-width: calc(var(--max) - 48px);
  box-shadow: 0 30px 70px rgba(13,63,48,.18);
}
.section-dark h2 { color: #fff; font-family: "Playfair Display", serif; }
.section-dark .eyebrow { color: #e0c07b; }
.map-card { border: 1px solid rgba(255,255,255,.15); box-shadow: 0 20px 45px rgba(0,0,0,.18); }

.footer { background: #0a2119; color: rgba(255,255,255,.78); border-top: 1px solid rgba(255,255,255,.06); }
.footer strong { color: #fff; }
.mobile-actions { background: rgba(10,33,25,.96); backdrop-filter: blur(14px); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 56px; }
  .hero-card { min-height: 520px; }
  .section { padding: 76px 20px; }
  .section-dark { margin-left: 16px; margin-right: 16px; max-width: calc(var(--max) - 32px); }
}

@media (max-width: 620px) {
  .site-header { padding-left: 16px; padding-right: 16px; }
  .hero { padding-top: 38px; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-card { min-height: 430px; border-radius: 25px; }
  .hero-overlay { padding: 20px; }
  .hero-card h2 { font-size: 23px; }
  .product-grid, .product-grid-large { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .product-body { padding: 14px; }
  .product-body h3 { font-size: 15px; }
  .product-body p { font-size: 12px; min-height: 0; }
  .price { font-size: 18px; }
  .section-dark { border-radius: 24px; margin-bottom: 60px; }
}


/* ================================================================
   V15 PREMIUM LUXURY DESIGN SYSTEM
   Deep navy / charcoal + warm cream + restrained gold.
   This final layer intentionally overrides older visual layers while
   preserving the existing layout, Firebase and component structure.
   ================================================================ */
:root {
  --cream: #FDFBF7;
  --paper: #FFFFFF;
  --ink: #151820;
  --muted: #667085;
  --line: #E6E1D8;
  --primary: #0A1128;
  --primary-dark: #070B18;
  --accent: #B08A4A;
  --soft: #F3F0EA;
  --danger: #B54747;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(10,17,40,.08);
  --max: 1180px;
}

html { background: var(--cream); }
body {
  background:
    radial-gradient(circle at 15% -5%, rgba(176,138,74,.08), transparent 30%),
    radial-gradient(circle at 100% 20%, rgba(10,17,40,.045), transparent 28%),
    var(--cream);
  color: var(--ink);
  font-family: "Inter", "Noto Sans Devanagari", sans-serif;
  letter-spacing: -.01em;
}

h1,h2,h3,h4,.hero-card h2,.section-heading h2,.split h2,.location h2,
.page-hero h1,.service-card h2,.quote-box {
  font-family: "Playfair Display", "Noto Sans Devanagari", Georgia, serif;
  font-weight: 700;
  letter-spacing: -.035em;
}

.site-header {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(253,251,247,.84);
  border-bottom: 1px solid rgba(10,17,40,.09);
  box-shadow: 0 10px 35px rgba(10,17,40,.035);
  backdrop-filter: blur(22px) saturate(150%);
}
.brand { gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(145deg, #111A38, #070B18);
  color: #E7C982;
  border: 1px solid rgba(176,138,74,.38);
  box-shadow: 0 10px 24px rgba(10,17,40,.18), inset 0 1px 0 rgba(255,255,255,.12);
}
.brand strong { color: #0A1128; }
.brand small { color: #8A7654; }
.nav { gap: 5px; }
.nav a {
  color: #596170;
  border-radius: 12px;
  padding: 10px 13px;
  transition: .22s ease;
}
.nav a:hover,.nav a.active {
  color: var(--primary);
  background: rgba(10,17,40,.055);
}
.nav .nav-cta {
  background: var(--primary);
  color: #fff;
  border: 1px solid rgba(176,138,74,.45);
  box-shadow: 0 10px 24px rgba(10,17,40,.16);
}
.nav-toggle {
  background: rgba(255,255,255,.72);
  border-color: #D9D4CA;
}

.section { padding-top: 92px; padding-bottom: 92px; }
.hero {
  gap: 54px;
  min-height: 720px;
  padding-top: 72px;
}
.eyebrow {
  color: #96733A;
  letter-spacing: .18em;
}
.hero h1,.page-hero h1 {
  color: #0A1128;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 1.02;
}
.hero h1 span { color: #9D793D; }
.hero-lead,.page-hero p { color: #687080; }
.trust-line { color: #4F5968; }

.actions .btn { min-height: 50px; border-radius: 14px; }
.btn {
  padding: 13px 19px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg,#0A1128,#172143);
  border-color: #0A1128;
  box-shadow: 0 12px 28px rgba(10,17,40,.18);
}
.btn-primary:hover { box-shadow: 0 16px 34px rgba(10,17,40,.25); }
.btn-secondary {
  background: rgba(255,255,255,.72);
  border-color: #D9D2C6;
  color: #171B25;
}
.btn-light { color: #0A1128; }
.btn-outline-light { border-color: rgba(255,255,255,.38); }

.hero-card {
  background: #0A1128;
  border: 1px solid rgba(176,138,74,.42);
  border-radius: 30px;
  box-shadow: 0 35px 90px rgba(10,17,40,.22), 0 0 0 8px rgba(255,255,255,.38);
}
.hero-slider {
  min-height: 570px;
  background: #090E20;
}
.hero-slider::before {
  border: 1px solid rgba(231,201,130,.28);
  border-radius: inherit;
}
.hero-slider::after {
  background:
    linear-gradient(180deg, rgba(6,10,22,.05) 0%, rgba(6,10,22,.14) 35%, rgba(6,10,22,.84) 100%),
    linear-gradient(90deg, rgba(6,10,22,.24), transparent 65%);
}
.hero-slide img { filter: saturate(.96) contrast(1.03); }
.hero-slide.active img { transform: scale(1.065); }
.hero-overlay { padding: 32px; }
.hero-overlay .hero-card-top {
  color: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding-bottom: 15px;
}
.hero-overlay h2 {
  color: #fff;
  text-shadow: 0 8px 35px rgba(0,0,0,.35);
}
.hero-overlay p { color: rgba(255,255,255,.84); }
.hero-slider-eyebrow {
  color: #F1D89C;
  border-color: rgba(241,216,156,.42);
  background: rgba(10,17,40,.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.hero-dots button.active { background: #D4AF63; box-shadow: 0 0 0 4px rgba(212,175,99,.14); }

.section-soft {
  background: linear-gradient(180deg,#F5F2EC 0%,#FDFBF7 100%);
  border-top: 1px solid #E8E2D8;
  border-bottom: 1px solid #E8E2D8;
}
.section-heading { margin-bottom: 36px; }
.section-heading h2,.split h2 { color: #0A1128; }
.section-heading p { color: #727987; }

.product-grid { gap: 24px; }
.product-card {
  background: rgba(255,255,255,.96);
  border: 1px solid #E2DDD3;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(10,17,40,.055);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  transform: translateY(-7px);
  border-color: #C8AE7D;
  box-shadow: 0 24px 55px rgba(10,17,40,.12);
}
.product-image {
  background: linear-gradient(145deg,#F5F1E8,#EDE8DD);
  border-bottom: 1px solid #ECE7DE;
}
.product-image img { padding: 12px; transition: transform .35s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-body { padding: 21px; }
.product-body h3 { color: #121827; font-family: "Inter",sans-serif; font-weight: 750; letter-spacing: -.025em; }
.product-body p,.availability { color: #737B88; }
.price { color: #8D6A32; }
.badge {
  background: #F3E9D2;
  color: #71572C;
  border: 1px solid #E3D2A9;
}
.availability.available { color: #376B58; }
.product-actions .btn { border-radius: 12px; }

.feature-service,.trust-grid article,.review-grid blockquote,.owner-card,.contact-card,.form-card,.service-card {
  background: rgba(255,255,255,.82);
  border: 1px solid #E2DDD3;
  box-shadow: 0 14px 36px rgba(10,17,40,.055);
}
.feature-service:hover { border-color: #C9B17D; box-shadow: 0 20px 45px rgba(10,17,40,.09); }
.feature-service > span,.feature-list span,.service-card > span { color: #9D793D; }
.feature-service small { color: #0A1128; }
.trust-grid .icon {
  background: #F1EBDD;
  color: #8D6A32;
  border-color: #E1D4B7;
}
.review-grid blockquote { color: #343B47; }

.location,.section-dark {
  background: linear-gradient(135deg,#070B18 0%,#0A1128 58%,#151E3B 100%);
  border: 1px solid rgba(176,138,74,.22);
  box-shadow: 0 30px 80px rgba(10,17,40,.20);
}
.location h2,.section-dark h2 { color: #fff; }
.location p { color: #C7CCD7; }
.map-card { border-color: rgba(255,255,255,.16); }

.service-card h2 { color: #0A1128; }
.service-card p { color: #737987; }
.quote-box {
  background: linear-gradient(135deg,#0A1128,#172143);
  border: 1px solid rgba(176,138,74,.35);
  box-shadow: 0 24px 55px rgba(10,17,40,.16);
}

.filter-bar button {
  border-color: #DDD7CC;
  background: rgba(255,255,255,.8);
  color: #4E5664;
}
.filter-bar button.active {
  background: #0A1128;
  border-color: #0A1128;
  box-shadow: 0 8px 20px rgba(10,17,40,.14);
}

.form-card input,.form-card select,.form-card textarea {
  border-color: #DDD7CC;
  background: #FFF;
}
.form-card input:focus,.form-card select:focus,.form-card textarea:focus {
  border-color: #B08A4A;
  box-shadow: 0 0 0 4px rgba(176,138,74,.12);
}
.form-status.success { color: #376B58; }

.footer {
  background: #070B18;
  color: rgba(255,255,255,.68);
  border-top: 1px solid rgba(176,138,74,.18);
}
.footer strong { color: #fff; }
.footer a:hover { color: #E5C985; }
.mobile-actions {
  background: rgba(7,11,24,.95);
  border-top-color: rgba(176,138,74,.2);
}
.mobile-actions a { color: #E5C985; }
.mobile-actions a + a { background: #E5C985; color: #0A1128; }

@media (max-width: 900px) {
  .hero { padding-top: 54px; }
  .hero-slider { min-height: 500px; }
}
@media (max-width: 620px) {
  .section { padding-top: 64px; padding-bottom: 64px; }
  .hero { padding-top: 30px; }
  .hero-card { border-radius: 24px; box-shadow: 0 25px 60px rgba(10,17,40,.18), 0 0 0 5px rgba(255,255,255,.34); }
  .hero-slider { min-height: 430px; }
  .hero-overlay { padding: 20px; }
  .product-card { border-radius: 18px; }
}
