/* ============================================================
   VADALO VENTURES PVT. LTD. — GLOBAL CSS
   Premium Eco-Brand | Green Luxury Export Company
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  /* Colors */
  --clr-forest:      #1a3a2a;
  --clr-forest-dark: #0f2318;
  --clr-forest-mid:  #224d38;
  --clr-forest-light:#2e6647;
  --clr-sage:        #5a8a6a;
  --clr-mint:        #a8c5b0;
  --clr-gold:        #c9a84c;
  --clr-gold-light:  #e0c87a;
  --clr-gold-dark:   #a07830;
  --clr-cream:       #f8f4ec;
  --clr-ivory:       #fdf9f2;
  --clr-warm-white:  #fffef9;
  --clr-charcoal:    #1c1c1c;
  --clr-text:        #2a2a2a;
  --clr-text-muted:  #666666;
  --clr-border:      #d4c9a8;
  --clr-border-light:#ede8d8;

  /* Typography */
  --font-display:    'Playfair Display', Georgia, serif;
  --font-body:       'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-ui:         'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Sizing */
  --container-max:   1320px;
  --container-pad:   clamp(1.5rem, 4vw, 3rem);


  /* Spacing scale */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 8rem;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(26,58,42,0.08);
  --shadow-md:  0 6px 24px rgba(26,58,42,0.12);
  --shadow-lg:  0 16px 48px rgba(26,58,42,0.16);
  --shadow-xl:  0 32px 80px rgba(26,58,42,0.2);

  /* Transitions */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:    cubic-bezier(0.64, 0, 0.78, 0);
  --ease-io:    cubic-bezier(0.45, 0, 0.55, 1);
  --trans-fast: 0.18s var(--ease-out);
  --trans-med:  0.32s var(--ease-out);
  --trans-slow: 0.55s var(--ease-out);

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ── CSS Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: #ffffff;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--clr-text);
  background: var(--clr-ivory);
  line-height: 1.75;
  letter-spacing: -0.01em;
  margin: 0; padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Ensure no ivory gap shows at top of pages */
main {
  background: inherit;
}

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; border: none; background: none; outline: none; }
button { cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--clr-cream); }
::-webkit-scrollbar-thumb { background: var(--clr-sage); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-forest); }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--sp-2xl);
}

.section--lg {
  padding-block: var(--sp-3xl);
}

/* ── Page Wrapper ── */
#page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--clr-forest-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }

p { margin-bottom: var(--sp-sm); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--clr-text-muted);
}

/* ── Section Headings ── */
.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--clr-forest-dark);
  margin-bottom: var(--sp-sm);
}

.section-title span { color: var(--clr-gold); font-style: italic; }

.section-subtitle {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.section-head {
  margin-bottom: var(--sp-xl);
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-subtitle {
  margin-inline: auto;
}

/* ── Divider ── */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  margin-block: var(--sp-md);
}

.divider--center { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-sm);
  transition: var(--trans-med);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--trans-fast);
}

.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--clr-forest);
  color: var(--clr-cream);
  border: 1.5px solid var(--clr-forest);
}

.btn--primary:hover {
  background: var(--clr-forest-mid);
  border-color: var(--clr-forest-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--clr-gold);
  color: var(--clr-forest-dark);
  border: 1.5px solid var(--clr-gold);
}

.btn--gold:hover {
  background: var(--clr-gold-light);
  border-color: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--clr-forest);
  border: 1.5px solid var(--clr-forest);
}

.btn--outline:hover {
  background: var(--clr-forest);
  color: var(--clr-cream);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--clr-cream);
  border: 1.5px solid rgba(248,244,236,0.5);
}

.btn--outline-light:hover {
  background: rgba(248,244,236,0.1);
  border-color: var(--clr-cream);
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.6875rem;
}

.btn--lg {
  padding: 1.1rem 2.75rem;
  font-size: 0.8125rem;
}

/* ── Cards ── */
.card {
  background: var(--clr-warm-white);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans-med);
}

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

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.badge--green {
  background: rgba(90,138,106,0.12);
  color: var(--clr-forest-light);
}

.badge--gold {
  background: rgba(201,168,76,0.15);
  color: var(--clr-gold-dark);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--clr-forest-dark) 0%, var(--clr-forest-mid) 60%, var(--clr-forest-light) 100%);
  padding: var(--sp-3xl) 0 var(--sp-2xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
}

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

.page-hero__label {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--sp-sm);
}

.page-hero__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--clr-gold);
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--clr-cream);
  margin-bottom: var(--sp-sm);
}

.page-hero__desc {
  font-size: 1rem;
  color: rgba(248,244,236,0.7);
  max-width: 520px;
  font-family: var(--font-body);
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(248,244,236,0.55);
  margin-top: var(--sp-md);
}

.breadcrumb a { color: rgba(248,244,236,0.7); transition: var(--trans-fast); }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb__sep { color: rgba(248,244,236,0.3); }
.breadcrumb__current { color: var(--clr-gold); }

/* ── Grid utilities ── */
.grid { display: grid; }
.grid--2 { grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg); }
.grid--3 { grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); }
.grid--4 { grid-template-columns: repeat(4, 1fr); gap: var(--sp-lg); }

/* ── Flex utilities ── */
.flex { display: flex; }
.flex--center { align-items: center; justify-content: center; }
.flex--between { align-items: center; justify-content: space-between; }
.flex--gap-sm { gap: var(--sp-sm); }
.flex--gap-md { gap: var(--sp-md); }

/* ── Text utilities ── */
.text-center { text-align: center; }
.text-gold { color: var(--clr-gold); }
.text-forest { color: var(--clr-forest); }
.text-muted { color: var(--clr-text-muted); }
.text-italic { font-style: italic; }
.fw-300 { font-weight: 300; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }

/* ── Spacing utilities ── */
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }

/* ── Decorative elements ── */
.leaf-bg {
  position: relative;
}

.leaf-bg::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(90,138,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideRight {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

.anim-fade-up  { animation: fadeUp 0.7s var(--ease-out) both; }
.anim-fade-in  { animation: fadeIn 0.5s var(--ease-out) both; }

/* ── Loading state ── */
.skeleton {
  background: linear-gradient(90deg, var(--clr-border-light) 25%, var(--clr-border) 50%, var(--clr-border-light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Notification ── */
.toast {
  position: fixed;
  bottom: var(--sp-lg);
  right: var(--sp-lg);
  background: var(--clr-forest);
  color: var(--clr-cream);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--trans-med);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── Scroll Progress Ring (Back to Top) ── */
#back-to-top,
#backToTop,
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  z-index: 900;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top.visible,
#backToTop.visible,
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-progress-btn .scroll-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.scroll-ring__track {
  fill: var(--clr-forest);
  stroke: rgba(255,255,255,0.12);
  stroke-width: 3;
}

.scroll-ring__fill {
  fill: none;
  stroke: var(--clr-gold);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.12s linear;
}

.scroll-ring__icon {
  position: relative;
  z-index: 2;
  color: var(--clr-cream);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}

#back-to-top:hover .scroll-ring__track,
#backToTop:hover .scroll-ring__track,
.back-to-top:hover .scroll-ring__track { fill: var(--clr-forest-mid); }

#back-to-top:hover .scroll-ring__fill,
#backToTop:hover .scroll-ring__fill,
.back-to-top:hover .scroll-ring__fill { stroke: var(--clr-gold-light); }

#back-to-top:hover .scroll-ring__icon,
#backToTop:hover .scroll-ring__icon,
.back-to-top:hover .scroll-ring__icon { color: var(--clr-gold); transform: translateY(-2px); }

@media (max-width: 600px) {
  #back-to-top, #backToTop, .back-to-top { bottom: 90px; right: 14px; width: 44px; height: 44px; }
}

/* ── Visitor counter display ── */
.visitor-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visitor-bar__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.visitor-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
  animation: pulse 2s infinite;
}

/* ── WhatsApp Float ── */
#whatsapp-float,
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  animation: wa-float-pulse 2.5s ease infinite;
}

@keyframes wa-float-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 4px 16px rgba(37,211,102,0.5)); }
  50%       { transform: scale(1.07); filter: drop-shadow(0 6px 24px rgba(37,211,102,0.75)); }
}

/* WA Icon circle */
.wa-float-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  flex-shrink: 0;
  transition: transform .2s;
  position: relative;
  overflow: visible !important;
}

/* WA Label bubble */
.wa-float-label {
  background: #fff;
  color: #1a3a2a;
  font-size: .78rem;
  font-weight: 700;
  padding: .45rem .9rem;
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,.15);
  white-space: nowrap;
  animation: wa-label-blink 3s ease infinite;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

@keyframes wa-label-blink {
  0%, 80%, 100% { opacity: 1; }
  40%            { opacity: 0.7; }
}

/* Ping ring */
.wa-float::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  opacity: 0;
  animation: wa-ring 2.5s ease infinite;
  z-index: -1;
}

@keyframes wa-ring {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

#whatsapp-float:hover .wa-float-icon,
.wa-float:hover .wa-float-icon {
  transform: scale(1.12) rotate(-8deg);
}

@media(max-width:600px) {
  .wa-float-label { display: none; }
  .wa-float { bottom: 18px; right: 14px; }
}

/* ═══════════════════════════════════════
   CORE WEB VITALS OPTIMIZATION
   LCP, CLS, INP fixes
═══════════════════════════════════════ */

/* ── CLS PREVENTION — reserve space for images ── */
img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

/* ── CLS — font-display optimization ── */
@font-face {
  font-display: optional;
}

/* ── LCP — critical images ── */
img[loading="eager"] {
  fetchpriority: high;
}

/* ── CLS — fixed-size containers ── */
.hero-slide__bg {
  aspect-ratio: 16/9;
  contain: layout style paint;
}

/* ── INP — interaction optimization ── */
button, a, [role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ── CLS — layout containment ── */
.site-header { contain: layout; will-change: transform; }
.hero-slider { contain: layout style; }
.product-card { contain: layout style paint; }

/* ── RENDER BLOCKING — critical CSS inline hints ── */
.above-fold { content-visibility: auto; }
.below-fold { content-visibility: auto; contain-intrinsic-size: 0 500px; }

/* ── SCROLL PERFORMANCE ── */
html { scroll-behavior: smooth; }
* { -webkit-overflow-scrolling: touch; }

/* ── SEO INTERNAL LINKS ── */
.seo-internal-links {
  background: var(--clr-forest);
  padding: 2rem 0;
  margin: 0;
}

.seo-internal-links .container {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

.seo-internal-links a {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: all .2s;
}

.seo-internal-links a:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-forest);
}

/* ═══════════════════════════════════════
   HERO 2-COLUMN LAYOUT
   Left: text content | Right: banner image
   ═══════════════════════════════════════ */
.hero-two-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  text-align: center;
}
.hero-two-col > .container,
.hero-two-col > div[class*="__inner"] {
  flex: 1;
  min-width: 0;
}
.hero-img-col {
  flex: 0 0 42%;
  max-width: 42%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.hero-img-col img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 900px) {
  .hero-two-col { flex-direction: column; gap: 1rem; }
  .hero-img-col { flex: 0 0 100%; max-width: 100%; width: 100%; }
  .hero-img-col img { height: 200px; }
}
@media (max-width: 480px) {
  .hero-img-col img { height: 160px; }
}

/* ══ SEO HIGHLIGHT STYLES ══ */
.text-highlight{background:linear-gradient(120deg,#fef3cd 0%,#fef3cd 100%);background-repeat:no-repeat;background-size:100% 40%;background-position:0 85%;padding:0 2px;}
.text-highlight-green{background:linear-gradient(120deg,rgba(168,197,176,.35) 0%,rgba(168,197,176,.35) 100%);background-repeat:no-repeat;background-size:100% 40%;background-position:0 85%;padding:0 2px;}
.text-bold-green{color:var(--clr-forest);font-weight:700;}
.text-bold-gold{color:var(--clr-gold-dark);font-weight:700;}
strong{color:var(--clr-forest);font-weight:700;}
b{color:var(--clr-forest);font-weight:700;}
h1,h2,h3,h4,h5{letter-spacing:-0.02em;line-height:1.2;}
p{line-height:1.8;color:#3a3a3a;}

/* ══ WA ONLINE GREEN DOT ══ */
.wa-float-icon { position: relative !important; }
.wa-online-dot {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 15px;
  height: 15px;
  background: #00e676;
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: block !important;
  animation: wa-dot-blink 1.5s ease infinite;
  z-index: 99999;
  pointer-events: none;
}
@keyframes wa-dot-blink {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(0,230,118,.6); }
  50%       { opacity: 0.5; transform: scale(0.75); box-shadow: 0 0 6px 3px rgba(0,230,118,0); }
}

/* ============================================================
   MOBILE HERO HEIGHT FIX — All Pages
   Max-width: 768px
   ============================================================ */
@media (max-width: 768px) {
  /* About */
  .about-hero { padding: 1.2rem 0 1rem !important; min-height: unset !important; }
  /* Blog */
  .blog-hero { padding: 1.2rem 0 1rem !important; min-height: unset !important; }
  /* Contact */
  .contact-hero { padding: 1.2rem 0 1rem !important; min-height: unset !important; }
  /* FAQ */
  .faq-hero { padding: 1.2rem 0 1rem !important; min-height: unset !important; }
  /* Sampling */
  .sp-hero { padding: 1.2rem 0 1rem !important; min-height: unset !important; }
  /* Shipping */
  .ship-hero { padding: 1.2rem 0 1rem !important; min-height: unset !important; }
  /* Terms */
  .terms-hero { padding: 1.2rem 0 1rem !important; min-height: unset !important; }
  /* CSR */
  .csr-hero { padding: 1.2rem 0 1rem !important; min-height: unset !important; }
  /* Products */
  .products-hero { padding: 1.2rem 0 1rem !important; min-height: unset !important; }
  /* Gallery */
  .gallery-hero { padding: 1.2rem 0 1rem !important; min-height: unset !important; }
  /* Manufacturing */
  .mfg-hero { padding: 1.2rem 0 1rem !important; min-height: unset !important; }

  /* Hero title font sizes — smaller on mobile */
  .about-hero__title,
  .blog-hero__title,
  .contact-hero__title,
  .faq-hero__title,
  .sp-hero__title,
  .ship-hero__title,
  .terms-hero__title,
  .csr-hero__title,
  .mfg-hero__title,
  .gallery-hero__title,
  .products-hero__title { font-size: clamp(1.4rem, 5.5vw, 2rem) !important; margin-bottom: 0.5rem !important; }

  /* Hero description — compact */
  .about-hero__desc,
  .blog-hero__desc,
  .contact-hero__desc,
  .faq-hero__desc,
  .sp-hero__sub,
  .ship-hero__sub,
  .terms-hero__sub,
  .csr-hero__sub,
  .mfg-hero__sub,
  .gallery-hero__desc { font-size: 0.8rem !important; line-height: 1.55 !important; margin-bottom: 0.75rem !important; }

  /* Hero label/tag */
  .about-hero__label,
  .blog-hero__label,
  .contact-hero__label,
  .faq-hero__label,
  .gallery-hero__label,
  .mfg-hero__tag,
  .csr-hero__tag,
  .terms-hero__tag { font-size: 0.55rem !important; margin-bottom: 0.4rem !important; }

  /* Breadcrumbs */
  .about-hero__breadcrumb,
  .blog-hero__breadcrumb,
  .contact-hero__breadcrumb,
  .faq-hero__breadcrumb,
  .gallery-hero__breadcrumb,
  .mfg-hero__breadcrumb,
  .csr-hero__breadcrumb,
  .terms-hero__breadcrumb { margin-top: 0.6rem !important; font-size: 0.6rem !important; }
}

@media (max-width: 480px) {
  .about-hero, .blog-hero, .contact-hero, .faq-hero,
  .sp-hero, .ship-hero, .terms-hero, .csr-hero,
  .products-hero, .gallery-hero, .mfg-hero {
    padding: 0.75rem 0 0.6rem !important;
    min-height: unset !important;
  }
}

/* ── HOME PAGE HERO MOBILE FIX ── */
@media (max-width: 768px) {
  .hero-slider,
  .hero-slider__track,
  .hero-slide { min-height: 55vh !important; }
  .hero-slide__content { padding-top: calc(var(--header-h, 70px) + 0.5rem) !important; }
}

@media (max-width: 480px) {
  .hero-slider,
  .hero-slider__track,
  .hero-slide { min-height: 48vh !important; }
  .hero-slide__content { padding-top: calc(var(--header-h, 62px) + 0.25rem) !important; }
}
