.font-devanagari,
:lang(hi),
[lang="hi"] {
  font-family: "Noto Serif Devanagari", "Noto Sans Devanagari", "Manrope", system-ui, sans-serif;
  letter-spacing: 0;
}

:root {
  --bg-primary: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --text-primary: #1f2933;
  --text-muted: #4b5563;
  --brand-primary: #1f5a3a;
  --brand-primary-dark: #16452c;
  --earth-soft: #c8b79f;
  --line-soft: rgba(31, 41, 51, 0.12);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
  --radius-md: 12px;
  --radius-lg: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text-primary);
  background-color: #ffffff !important;
  background-image: none !important;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Match Tailwind surface/background utilities to plain white */
body.bg-surface,
body.bg-background {
  background-color: #ffffff !important;
  background-image: none !important;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.site-logo-img {
  display: block;
  width: auto;
  height: 50px;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 0;
  image-rendering: auto;
  -webkit-user-drag: none;
}

.site-logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  min-width: 0;
  white-space: nowrap;
}

.heading-lg {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: 0.4px;
}

.heading-md {
  margin: 0;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.26;
  letter-spacing: 0.3px;
}

.text-muted {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}

/* Track page: premium dark-green dotted frame + outer hairline ring */
.track-double-dotted {
  --track-dotted-color: #0a3622;
  --track-dotted-focus: #072818;
  position: relative;
  border: 2px dotted var(--track-dotted-color);
  background: transparent;
  background-clip: padding-box;
  box-shadow:
    0 1px 3px rgba(8, 39, 23, 0.07),
    0 6px 16px rgba(8, 39, 23, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition:
    border-color 0.2s ease,
    box-shadow 0.22s ease;
}

.track-double-dotted::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid rgba(10, 54, 34, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55) inset;
  pointer-events: none;
  z-index: 0;
}

.track-double-dotted:focus-within {
  border-color: var(--track-dotted-focus);
  border-style: dotted;
  box-shadow:
    0 0 0 3px rgba(10, 54, 34, 0.16),
    0 4px 14px rgba(8, 39, 23, 0.12),
    0 10px 28px rgba(8, 39, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  outline: none;
}

.track-double-dotted:focus-within::before {
  border-color: rgba(10, 54, 34, 0.35);
}

.track-double-dotted--pill {
  border-radius: 9999px;
}

.track-double-dotted--rounded {
  border-radius: 0.75rem;
}

.track-double-dotted > * {
  position: relative;
  z-index: 1;
}

/* Locate order: subtle light outline on solid green (no white dots) */
.track-single-dotted-btn {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.75rem;
  background-clip: padding-box;
}

/* Site-wide sticky contact + WhatsApp (track page theme: light gradient, primary border) */
.floating-contact {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
}


.floating-contact__btn {
  position: fixed;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid #d4af37;
  background: white;
  color: #d4af37;
  box-shadow:
    0 4px 16px rgba(8, 39, 23, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-decoration: none;
  pointer-events: auto;
  touch-action: none;
  -webkit-user-drag: none;
  cursor: grab;
  user-select: none;
  contain: layout paint style;
  will-change: left, top, transform;
  transition:
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}


.floating-contact__btn.is-dragging {
  touch-action: none;
  cursor: grabbing;
}

.floating-contact__btn.is-snapping {
  transition:
    left 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.floating-contact__btn.is-dragging,
.floating-contact__btn.is-dragging.is-snapping {
  transition:
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.floating-contact__btn:not(.is-positioned):nth-of-type(1) {
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: calc(max(1rem, env(safe-area-inset-bottom, 0px)) + 3.5rem);
}

.floating-contact__btn:not(.is-positioned):nth-of-type(2) {
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
}

.floating-contact__btn.is-dragging {
  cursor: grabbing;
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(8, 39, 23, 0.35);
}

/* Ensure immediate response while dragging */
.floating-contact__btn.is-dragging {
  transition: none !important;
  transform: translateZ(0) scale(1.04) !important;
}

.floating-contact__btn:hover:not(.is-dragging) {
  transform: translateY(-2px);
  background: #0d4a2e;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 8px 22px rgba(8, 39, 23, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.floating-contact__btn:active {
  transform: translateY(-1px);
}

.floating-contact__btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}

.floating-contact__btn i {
  font-size: 1.2rem;
  line-height: 1;
}

.floating-contact__btn--whatsapp {
  color: #fafaf8;
}

.floating-contact__btn--whatsapp:hover {
  color: #fff;
}

.floating-contact__btn:not(.is-positioned):nth-of-type(3) {
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: calc(max(1rem, env(safe-area-inset-bottom, 0px)) + 7rem);
}

.floating-contact__btn--instagram {
  color: #fff;
  background: #e4405f;
  border-color: rgba(255, 255, 255, 0.16);
}

.floating-contact__btn--instagram:hover {
  color: #fff;
  background: #c8324d;
}

/* Gold-on-white floating contact variant requested */
.floating-contact__btn--gold {
  background: #ffffff !important;
  border-color: #d4af37 !important; /* gold border */
  color: #d4af37 !important; /* icon color */
  box-shadow: 0 6px 20px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}
.floating-contact__btn--gold:hover {
  background: #ffffff !important;
  color: #b88926 !important; /* slightly darker gold on hover */
  border-color: #b88926 !important;
  transform: translateY(-2px);
}

/* Logo typography to match provided image: use Manrope/Noto Serif fallback. Adjust size/weight here. */
.site-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
.site-logo .logo-word {
  font-weight: 400;
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1;
  color: #0f1720;
  letter-spacing: -0.02em;
}
.site-logo .logo-word--organore {
  font-weight: 300; /* lighter weight for first word as in image */
  letter-spacing: -0.03em;
}
.site-logo .logo-word--pure {
  font-weight: 700; /* bolder second word */
}

/* smaller-screen tweak */
@media (max-width: 640px) {
  .site-logo {
    gap: 8px;
  }

  .site-logo-img {
    height: 46px;
  }

  .site-logo .logo-word {
    font-size: 17px;
  }
}

.floating-contact__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Track page: order result — minimal, editorial */
.track-result-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(15, 46, 34, 0.08);
  background: #fff;
  box-shadow: 0 1px 3px rgba(8, 39, 23, 0.04), 0 12px 32px -16px rgba(8, 39, 23, 0.1);
}

/* Full-width sheet block: large “arch” top (matches user marks), edge-to-edge on mobile */
.track-result-card--sheet {
  width: 100%;
  border: none;
  border-radius: 3rem 3rem 1.125rem 1.125rem;
  box-shadow:
    0 -6px 32px -12px rgba(8, 39, 23, 0.12),
    0 8px 28px -16px rgba(8, 39, 23, 0.08);
}

@media (min-width: 480px) {
  .track-result-card--sheet {
    border-radius: 3.25rem 3.25rem 1.125rem 1.125rem;
  }
}

@media (min-width: 768px) {
  .track-result-card--sheet {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1.25rem;
    border: 1px solid rgba(15, 46, 34, 0.08);
    box-shadow: 0 1px 3px rgba(8, 39, 23, 0.04), 0 12px 32px -16px rgba(8, 39, 23, 0.1);
  }
}

@keyframes track-result-reveal {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes track-result-footnote-reveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.track-result-card--sheet.track-result-card--enter {
  animation: track-result-reveal 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.track-result-footnote.track-result-footnote--enter {
  animation: track-result-footnote-reveal 0.45s ease 0.32s both;
}

@media (prefers-reduced-motion: reduce) {
  .track-result-card--sheet.track-result-card--enter,
  .track-result-footnote.track-result-footnote--enter {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.track-result-card__hero {
  padding: 0.85rem 1rem 0.9rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  background: #082717;
  border-bottom: 1px solid #0d3d24;
}

.track-result-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212, 184, 122, 0.85);
}

.track-result-card__id {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #faf9f6;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.track-result-card__customer {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(250, 249, 246, 0.72);
}

.track-result-card__body {
  padding: 0.5rem 0.65rem 0.65rem;
  padding-left: max(0.65rem, env(safe-area-inset-left, 0px));
  padding-right: max(0.65rem, env(safe-area-inset-right, 0px));
  background: #fff;
}

.track-summary-frame,
.track-summary-frame__inner {
  border: none;
  background: #fff;
  padding: 0;
}

.track-summary-dl {
  margin: 0;
  padding: 0;
}

.track-summary-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.4rem 0.65rem;
  align-items: start;
  padding: 0.5rem 0.85rem;
  border-bottom: 1px solid rgba(8, 39, 23, 0.07);
}

.track-summary-row:last-child {
  border-bottom: none;
}

.track-summary-row dt {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #000;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.track-summary-row__value {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: #1a1a1a;
  text-align: right;
}

.track-summary-row__value--multiline {
  white-space: pre-wrap;
  word-break: break-word;
}

.track-summary-row__value--status-cancelled {
  font-weight: 600;
  color: #991b1b;
}

/* Cancellation — light highlight only */
.track-cancel-minimal {
  margin: 0.15rem 0.65rem 0.35rem;
  padding: 0.45rem 0.55rem 0.45rem 0.6rem;
  border: none;
  border-left: 3px solid #b91c1c;
  border-radius: 0 4px 4px 0;
  background: #fef2f2;
}

.track-cancel-minimal__label {
  margin: 0 0 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #7f1d1d;
  line-height: 1.3;
}

.track-cancel-minimal__text {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1a1a1a;
  white-space: pre-wrap;
  word-break: break-word;
}

.track-cancel-minimal__date {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.625rem;
  font-weight: 500;
  color: #737373;
  line-height: 1.3;
}

.track-cancel-minimal__date:empty {
  display: none;
}

.track-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.5rem 0.85rem 0.55rem;
  border-top: 1px solid #eee;
  background: #fff;
}

.track-summary-total__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
}

.track-summary-total__amount {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #082717;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* Track page — 4-step delivery progress (premium; red when cancelled) */
.track-delivery-progress {
  margin: 0.75rem 1rem 1rem;
  padding: 1.15rem 1.15rem 1.2rem;
  max-width: min(42rem, 100%);
  margin-left: auto;
  margin-right: auto;
  border-radius: 1.125rem;
  border: 1px solid rgba(8, 39, 23, 0.08);
  background: linear-gradient(165deg, #fafcf9 0%, #ffffff 48%, #f6f8f5 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 32px -18px rgba(8, 39, 23, 0.18);
}

.track-delivery-progress__head {
  margin-bottom: 0.9rem;
}

.track-delivery-progress__title {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #082717;
  letter-spacing: -0.02em;
}

.track-delivery-progress__subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.45;
}

.track-delivery-progress__eta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(8, 39, 23, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 12px -6px rgba(8, 39, 23, 0.12);
}

.track-delivery-progress__eta.hidden {
  display: none;
}

.track-delivery-progress__eta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, #0a331f 0%, #16452c 100%);
  color: #f4f7f2;
  font-size: 1rem;
}

.track-delivery-progress__eta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
  text-align: left;
}

.track-delivery-progress__eta-primary {
  font-size: 0.875rem;
  font-weight: 700;
  color: #082717;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.track-delivery-progress__eta-secondary {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.3;
}

.track-delivery-progress__bar {
  position: relative;
  height: 5px;
  margin: 0 0.5rem 0;
  border-radius: 999px;
  background: #e2e8e4;
  overflow: hidden;
}

.track-delivery-progress__bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #16452c 0%, #082717 55%, #1f5a3a 100%);
  box-shadow: 0 0 12px rgba(8, 39, 23, 0.25);
  transition: width 0.45s ease;
}

.track-delivery-progress__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.track-delivery-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.track-delivery-progress__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 2px solid #d1d9d4;
  background: #f4f6f5;
  color: #94a3b8;
  font-size: 0.95rem;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

.track-delivery-progress__step.is-done .track-delivery-progress__dot {
  border-color: #082717;
  background: #082717;
  color: #fafaf8;
}

.track-delivery-progress__step.is-current .track-delivery-progress__dot {
  border-color: #082717;
  background: #fff;
  color: #082717;
  box-shadow:
    0 0 0 3px rgba(8, 39, 23, 0.12),
    0 4px 14px -4px rgba(8, 39, 23, 0.35);
  transform: scale(1.05);
}

.track-delivery-progress__label {
  margin: 0.45rem 0 0;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #082717;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.track-delivery-progress__step.is-upcoming .track-delivery-progress__label {
  color: #94a3b8;
  font-weight: 600;
}

.track-delivery-progress__date {
  margin: 0.2rem 0 0;
  font-size: 0.625rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.2;
}

.track-delivery-progress__date--est {
  color: #775a19;
  font-weight: 600;
}

.track-delivery-progress__step.is-done .track-delivery-progress__date {
  color: #64748b;
}

.track-delivery-progress__step.is-current .track-delivery-progress__date {
  color: #475569;
  font-weight: 600;
}

/* Cancelled — red treatment */
.track-delivery-progress--cancelled {
  border-color: rgba(185, 28, 28, 0.25);
  background: #fffbfb;
}

.track-delivery-progress--cancelled .track-delivery-progress__title {
  color: #991b1b;
}

.track-delivery-progress--cancelled .track-delivery-progress__subtitle {
  color: #b91c1c;
}

.track-delivery-progress--cancelled .track-delivery-progress__bar {
  background: #fecaca;
}

.track-delivery-progress--cancelled .track-delivery-progress__bar-fill {
  background: #991b1b;
  width: 100% !important;
}

.track-delivery-progress--cancelled .track-delivery-progress__step.is-done .track-delivery-progress__dot,
.track-delivery-progress--cancelled .track-delivery-progress__step.is-current .track-delivery-progress__dot,
.track-delivery-progress--cancelled .track-delivery-progress__step.is-upcoming .track-delivery-progress__dot {
  border-color: #fca5a5;
  background: #fef2f2;
  color: #991b1b;
  box-shadow: none;
  transform: none;
}

.track-delivery-progress--cancelled .track-delivery-progress__label {
  color: #991b1b;
}

@media (min-width: 768px) {
  .track-delivery-progress {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Shared premium botanical section divider */
.botanical-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
}

.botanical-divider__line {
  height: 1px;
  background: #78956f;
}

.botanical-divider__leaf {
  width: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.botanical-divider__leaf svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Phase C — below-fold only (avoids LCP/anchor regressions) */
section[data-below-fold="true"] {
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

.t-testimonials-desktop-grid .pd-showcase-testimonial-card:nth-child(n + 3) {
  content-visibility: auto;
  contain-intrinsic-size: auto 280px;
}

img {
  decoding: async;
}
