/* ═══════════════════════════════════════════════════════════════════════════
   RUDRA OCEAN TRADING — Premium Style Sheet
   Colors: Dark Green #1B4D35, Gold #C9A84C, Cream #FAF8F3
════════════════════════════════════════════════════════════════════════════ */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
/* ─── CSS Variables ──────────────────────────────────────────────────────── */
:root {
  --green-900: #0f2d1f;
  --green-800: #1b4d35;
  --green-700: #236040;
  --green-600: #2d7550;
  --green-500: #3a9065;
  --green-100: #e8f4ee;
  --gold-900: #7a5c0a;
  --gold-800: #a8882a;
  --gold-700: #c9a84c;
  --gold-600: #d4b866;
  --gold-100: #fbf5e6;
  --brown: #6b3a2a;
  --cream: #faf8f3;
  --cream-dark: #f2ede3;
  --white: #ffffff;
  --dark: #1c1c1c;
  --text-muted: #212121;
  --border: #e5ddd0;
  --shadow-sm: 0 2px 8px rgba(27, 77, 53, 0.08);
  --shadow-md: 0 8px 30px rgba(27, 77, 53, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 77, 53, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--green-800);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
}

::selection {
  background: var(--gold-700);
  color: var(--white);
}

.text-gold {
  color: var(--gold-700) !important;
}
.text-green {
  color: var(--green-800) !important;
}
.bg-cream {
  background-color: var(--cream) !important;
}
.bg-green {
  background-color: var(--green-800) !important;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 26px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.3px;
  border: 2px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-700), var(--gold-800));
  color: var(--white);
  border-color: var(--gold-700);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-800), var(--gold-900));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.45);
}

.btn-green {
  background: linear-gradient(135deg, var(--green-700), var(--green-800));
  color: var(--white);
  border-color: var(--green-700);
  box-shadow: 0 4px 15px rgba(27, 77, 53, 0.3);
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 77, 53, 0.4);
}

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

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

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  font-size: 18px;
}
.btn-whatsapp:hover {
  background: #1da851;
  color: var(--white);
  transform: scale(1.1);
}

.btn-whatsapp-outline {
  background: transparent;
  color: #25d366;
  border: 2px solid #25d366;
}
.btn-whatsapp-outline:hover {
  background: #25d366;
  color: var(--white);
}

/* ─── Section Commons ─────────────────────────────────────────────────────── */
.section {
  padding: 90px 0;
}
.section-sm {
  padding: 60px 0;
}
.section-lg {
  padding: 120px 0;
}

.section-badge {
  display: inline-block;
  background: var(--gold-100);
  color: var(--gold-800);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid var(--gold-600);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--green-800);
  margin-bottom: 16px;
}
.section-title span {
  color: var(--gold-700);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-600));
  border-radius: 2px;
  margin: 16px 0;
}
.divider-gold.center {
  margin: 16px auto;
}

/* ─── Page Hero (Inner Pages) ─────────────────────────────────────────────── */
.page-hero {
  padding: 50px 0 35px;
  position: relative;
  overflow: hidden;
  background-color: var(--green-900);
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Dark green gradient overlay — sits over the photo */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgb(0 0 0 / 60%) 0%,
    rgb(0 0 0 / 60%) 55%,
    rgb(0 0 0 / 60%) 100%
  );
  z-index: 1;
}
/* Gold bottom fade */
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--gold-800),
    var(--gold-600),
    var(--gold-800)
  );
  z-index: 3;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.page-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.page-hero-meta-item i {
  color: var(--gold-600);
  font-size: 15px;
}
.page-hero-title {
  font-size: clamp(32px, 5vw, 40px);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-title span {
  color: var(--gold-600);
}
.page-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255);
  max-width: 600px;
}
.breadcrumb-custom .breadcrumb-item {
  font-size: 13px;
}
.breadcrumb-custom .breadcrumb-item a {
  color: var(--gold-600);
}
.breadcrumb-custom .breadcrumb-item.active {
  color: rgba(255, 255, 255);
}
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255);
}

/* ─── TOP BAR ─────────────────────────────────────────────────────────────── */
.top-bar {
  background: var(--green-900);
  color: rgba(255, 255, 255);
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar-info a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.top-bar-info a:hover {
  color: var(--gold-600);
}
.top-bar-info i {
  color: var(--gold-600);
  font-size: 12px;
}

.cert-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-600);
  border: 1px solid rgba(201, 168, 76, 0.3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ─── NAVBAR ──────────────────────────────────────────────────────────────── */
.main-navbar {
  background: var(--white);
  padding: 0;
  border-bottom: 2px solid var(--gold-700);
  box-shadow: 0 4px 20px rgba(27, 77, 53, 0.1);
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-navbar .container {
  height: 70px;
  display: flex;
  align-items: center;
}

.main-navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.main-navbar.scrolled .container {
  height: 60px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 8px;
  padding: 0;
}

.navbar-logo {
  height: 52px;
  width: auto;
  transition: var(--transition);
  flex-shrink: 0;
}
.main-navbar.scrolled .navbar-logo {
  height: 44px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: "Libre Baskerville", serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--green-800);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.brand-sub {
  font-size: 9px;
  font-weight: 700;
  color: var(--gold-700);
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Hide brand text on narrow laptops to save space */
@media (min-width: 992px) and (max-width: 1100px) {
  .brand-text {
    display: none;
  }
}
/* Show brand text on 1101px+ */
@media (min-width: 1101px) {
  .brand-text {
    display: flex;
  }
}

/* Nav items — single line, compact */
.navbar-collapse {
  flex-grow: 1;
}

.navbar-nav {
  align-items: center;
  flex-wrap: nowrap;
}

.navbar-nav .nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark) !important;
  padding: 6px 10px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1.4;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-700);
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--green-800) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

/* Override Bootstrap dropdown caret — use our own mini arrow */
.navbar-nav .dropdown-toggle::after {
  display: inline-block;
  border: none;
  width: 0;
  height: 0;
  margin-left: 4px;
  vertical-align: middle;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 0;
  opacity: 0.6;
}
/* Don't apply gold underline animation to dropdown toggle */
.navbar-nav .dropdown-toggle.nav-link::after {
  content: ""; /* reset our underline pseudo on same element */
  position: static;
  background: none;
  transform: none;
}
/* Re-add the caret visually as border-trick via a wrapper span workaround —
   simplest: just override ::after back to Bootstrap caret */
.navbar-nav .dropdown-toggle::after {
  content: "" !important;
  display: inline-block !important;
  margin-left: 5px !important;
  vertical-align: middle !important;
  border-top: 4px solid var(--green-800) !important;
  border-right: 4px solid transparent !important;
  border-left: 4px solid transparent !important;
  border-bottom: 0 !important;
  position: static !important;
  transform: none !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  opacity: 0.65;
}

.toggler-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--green-800);
}
.navbar-toggler {
  border: none;
  box-shadow: none !important;
  padding: 4px 8px;
}

/* CTA area */
.navbar-cta {
  flex-shrink: 0;
  margin-left: 12px;
  padding-left: 14px;
  border-left: 1px solid var(--border);
}
.navbar-cta .btn-gold {
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 6px;
  letter-spacing: 0.2px;
}
.navbar-cta .btn-whatsapp {
  width: 38px;
  height: 38px;
  font-size: 17px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Mega Menu ──────────────────────────────────────────────────────────── */
.mega-dropdown {
  position: static !important;
}
.mega-menu {
  width: 100%;
  left: 0 !important;
  right: 0 !important;
  border: none;
  border-top: 3px solid var(--gold-700);
  border-radius: 0 0 18px 18px;
  padding: 0;
  box-shadow: 0 24px 60px rgba(27, 77, 53, 0.18);
  background: var(--white);
  overflow: hidden;
}
/* Left accent sidebar panel */
.mega-menu-inner {
  display: flex;
}
.mega-menu-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: linear-gradient(
    160deg,
    var(--green-900) 0%,
    var(--green-800) 100%
  );
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mega-menu-sidebar-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 8px;
}
.mega-menu-sidebar-heading {
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}
.mega-menu-sidebar-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255);
  line-height: 1.6;
  margin-bottom: 20px;
}
.mega-menu-sidebar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-700);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.mega-menu-sidebar-btn:hover {
  background: var(--gold-800);
  color: var(--white);
  transform: translateX(3px);
}
.mega-menu-sidebar-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 18px;
}
.mega-menu-cert-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 2px 8px;
  border-radius: 4px;
}
/* Columns area */
.mega-menu-columns {
  flex: 1;
  padding: 28px 28px 0;
  display: flex;
  flex-direction: column;
}
.mega-menu-cols-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  flex: 1;
}
.mega-menu-col {
  padding: 0 18px 20px;
  border-right: 1px solid var(--border);
}
.mega-menu-col:last-child {
  border-right: none;
}
.mega-menu-col-icon {
  width: 36px;
  height: 36px;
  background: var(--green-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--green-700);
  margin-bottom: 10px;
  flex-shrink: 0;
}
.mega-menu-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-800);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold-700);
  display: flex;
  align-items: center;
  gap: 7px;
}
.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-menu-list li {
  border-bottom: 1px dashed var(--border);
}
.mega-menu-list li:last-child {
  border-bottom: none;
}
.mega-menu-list li a {
  font-size: 12.5px;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  transition: var(--transition);
  font-weight: 500;
}
.mega-menu-list li a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-700);
  flex-shrink: 0;
  opacity: 0;
  transition: var(--transition);
}
.mega-menu-list li a:hover {
  color: var(--green-800);
  padding-left: 4px;
  font-weight: 600;
}
.mega-menu-list li a:hover::before {
  opacity: 1;
}
.mega-menu-list li:first-child a {
  color: var(--green-700);
  font-weight: 600;
  font-size: 12px;
}
/* Footer bar inside mega menu */
.mega-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding: 14px 0;
  margin-top: 4px;
  gap: 12px;
  flex-wrap: wrap;
}
.mega-menu-footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.mega-menu-footer-left i {
  color: var(--gold-700);
}
.mega-menu-footer-actions {
  display: flex;
  gap: 10px;
}

/* ─── HOME HERO ───────────────────────────────────────────────────────────── */
/* ─── HERO SLIDER (Swiper) ─────────────────────────────────────────────────── */
.hs-wrap {
  position: relative;
  overflow: hidden;
}

.hs-swiper {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
}

.hs-slide {
  position: relative;
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.7) 45%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.hs-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 120px;
  max-width: 740px;
}

.hs-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gold-500, #d4a843);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  animation: hsFadeUp 0.7s ease both;
}

.hs-title {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(34px, 5.2vw, 45px);
  color: var(--white);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
  animation: hsFadeUp 0.7s 0.1s ease both;
}
.hs-title span {
  color: var(--gold-600, #c9a84c);
}

.hs-sub {
  font-size: 17px;
  color: rgba(255, 255, 255);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 34px;
  animation: hsFadeUp 0.7s 0.2s ease both;
}

.hs-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
  animation: hsFadeUp 0.7s 0.3s ease both;
}
.hs-cta .btn {
  padding: 14px 30px;
  font-size: 15px;
}

.hs-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
.hs-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.hs-btn-wa {
  background: #25d366;
  color: #fff;
  border: none;
  font-weight: 600;
}
.hs-btn-wa:hover {
  background: #1ebe5d;
  color: #fff;
}

.hs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: hsFadeUp 0.7s 0.4s ease both;
}
.hs-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}
.hs-pills span i {
  color: var(--gold-500, #d4a843);
  font-size: 13px;
}

/* Swiper slide in/out animation */
.swiper-slide-active .hs-tag,
.swiper-slide-active .hs-title,
.swiper-slide-active .hs-sub,
.swiper-slide-active .hs-cta,
.swiper-slide-active .hs-pills {
  animation-play-state: running;
}
.swiper-slide:not(.swiper-slide-active) .hs-tag,
.swiper-slide:not(.swiper-slide-active) .hs-title,
.swiper-slide:not(.swiper-slide-active) .hs-sub,
.swiper-slide:not(.swiper-slide-active) .hs-cta,
.swiper-slide:not(.swiper-slide-active) .hs-pills {
  opacity: 0;
  animation: none;
}

@keyframes hsFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pagination dots */
.hs-pagination {
  bottom: 82px !important;
  text-align: left;
  padding-left: calc((100vw - min(1320px, 100%)) / 2 + 12px);
}
.hs-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: all 0.3s;
  border-radius: 50px;
}
.hs-pagination .swiper-pagination-bullet-active {
  width: 32px;
  background: var(--gold-600, #c9a84c);
}

/* Prev / Next arrows */
.hs-prev,
.hs-next {
  width: 48px !important;
  height: 48px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 50% !important;
  color: var(--white) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition:
    background 0.25s,
    border-color 0.25s !important;
  top: auto !important;
  bottom: 68px !important;
}
.hs-prev {
  right: 80px !important;
  left: auto !important;
}
.hs-next {
  right: 24px !important;
  left: auto !important;
}
.hs-prev:hover,
.hs-next:hover {
  background: var(--gold-700, #b8943e) !important;
  border-color: var(--gold-700, #b8943e) !important;
}
.hs-prev::after,
.hs-next::after {
  display: none !important;
}
.hs-prev i,
.hs-next i {
  font-size: 18px;
}

/* Stats bar pinned at bottom of slider */
.hs-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(8, 24, 14, 0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 14px 24px;
  flex-wrap: wrap;
}
.hs-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 28px;
}
.hs-stat strong {
  font-family: "Libre Baskerville", serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gold-500, #d4a843);
  line-height: 1;
}
.hs-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 3px;
}
.hs-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .hs-swiper {
    height: 100svh;
    max-height: none;
  }
  .hs-content {
    padding-top: 110px;
    padding-bottom: 140px;
  }
  .hs-title {
    font-size: clamp(28px, 7.5vw, 42px);
  }
  .hs-sub {
    font-size: 15px;
  }
  .hs-cta .btn {
    padding: 12px 22px;
    font-size: 14px;
  }
  .hs-prev {
    right: 68px !important;
    bottom: 100px !important;
  }
  .hs-next {
    right: 14px !important;
    bottom: 100px !important;
  }
  .hs-pagination {
    bottom: 142px !important;
    padding-left: 16px;
  }
  .hs-stats-bar {
    gap: 0;
    padding: 10px 8px;
  }
  .hs-stat {
    padding: 4px 12px;
  }
  .hs-stat strong {
    font-size: 17px;
  }
  .hs-stat-div {
    height: 28px;
  }
}

/* ─── STATS STRIP ─────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--green-800);
  padding: 32px 0;
  position: relative;
}
.stats-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-700),
    var(--gold-600),
    var(--gold-700)
  );
}
.stat-item {
  text-align: center;
  padding: 8px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-600);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ─── CATEGORY CARDS ──────────────────────────────────────────────────────── */
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-600);
}
.category-card-img {
  /* height: 200px; */
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.category-card:hover .category-card-img img {
  transform: scale(1.08);
}

.category-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.category-icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--green-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold-600);
  transition: var(--transition);
}
.category-card:hover .category-icon-wrap {
  background: var(--gold-700);
  color: var(--white);
  transform: scale(1.1);
}

.category-card-body {
  padding: 24px;
}
.category-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 8px;
}
.category-card-text {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.category-card-products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.product-pill {
  font-size: 11px;
  font-weight: 600;
  background: var(--green-100);
  color: var(--green-700);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(27, 77, 53, 0.12);
}

.category-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-700);
  padding-top: 14px;
  border-top: 1px solid var(--border);
  transition: var(--transition);
}
.category-card-link:hover {
  color: var(--green-800);
}
.category-card-link i {
  transition: var(--transition);
}
.category-card:hover .category-card-link i {
  transform: translateX(5px);
}

/* ─── WHY CHOOSE US ───────────────────────────────────────────────────────── */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-600));
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 66px;
  height: 66px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--green-700);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--green-800);
  color: var(--gold-600);
  transform: rotate(5deg) scale(1.1);
}
.why-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}

/* ─── PRODUCT CARDS ───────────────────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-600);
}
.product-card-img {
  /* height: 220px; */
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green-800);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-card-body {
  padding: 20px;
}
.product-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 6px;
}
.product-card-variants {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.product-card-variants span {
  background: var(--cream-dark);
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 4px;
  margin-bottom: 4px;
  display: inline-block;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.product-card-spec {
  font-size: 12px;
  color: var(--text-muted);
}
.product-card-spec strong {
  color: var(--green-700);
  display: block;
}

/* ─── PROCESS FLOW ───────────────────────────────────────────────────────── */
.pf-section {
  padding: 90px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.pf-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 15% 50%,
      rgba(27, 77, 53, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 85% 20%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Desktop timeline row */
.pf-timeline {
  align-items: flex-start;
  gap: 0;
}
.pf-step {
  display: flex;
  align-items: flex-start;
  flex: 1;
}
.pf-step-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 18px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.pf-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.4);
}
.pf-step-card:hover .pf-step-detail {
  max-height: 80px;
  opacity: 1;
}
.pf-icon-wrap {
  width: 64px;
  height: 64px;
  background: color-mix(in srgb, var(--step-color) 12%, transparent);
  border: 2px solid color-mix(in srgb, var(--step-color) 30%, transparent);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--step-color);
  margin: 0 auto 14px;
  transition: var(--transition);
}
.pf-step-card:hover .pf-icon-wrap {
  background: color-mix(in srgb, var(--step-color) 20%, transparent);
  transform: scale(1.08);
}
.pf-step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-700), var(--gold-800));
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(201, 168, 76, 0.4);
  border: 2px solid var(--white);
}
.pf-step-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 6px;
  line-height: 1.3;
}
.pf-step-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}
.pf-step-detail {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.35s ease;
  margin-top: 8px;
  text-align: left;
  border-top: 1px dashed var(--border);
  padding-top: 8px;
}

/* Connector arrow between cards */
.pf-connector {
  display: flex;
  align-items: center;
  padding: 0 4px;
  margin-top: 44px;
  flex-shrink: 0;
}
.pf-connector span {
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-600));
  position: relative;
}
.pf-connector span::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  border-left: 7px solid var(--gold-700);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* Mobile stacked list */
.pf-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pf-mobile-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pf-mobile-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.pf-mobile-left .pf-icon-wrap {
  width: 52px;
  height: 52px;
  font-size: 20px;
  border-radius: 14px;
  margin: 0;
}
.pf-mobile-line {
  width: 2px;
  flex: 1;
  min-height: 36px;
  background: linear-gradient(
    180deg,
    var(--gold-700),
    rgba(201, 168, 76, 0.15)
  );
  margin: 6px 0;
}
.pf-mobile-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  flex: 1;
  margin-bottom: 8px;
  box-shadow: var(--shadow-sm);
}
.pf-mobile-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 4px;
}
.pf-mobile-body .pf-step-detail {
  max-height: none;
  opacity: 1;
  font-size: 12px;
}

/* ─── SPEC TABLE ──────────────────────────────────────────────────────────── */
.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.spec-table thead th {
  background: var(--green-800);
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 14px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.spec-table tbody tr {
  transition: var(--transition);
}
.spec-table tbody tr:nth-child(even) {
  background: var(--cream);
}
.spec-table tbody tr:hover {
  background: var(--gold-100);
}
.spec-table td {
  padding: 13px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.spec-table td:first-child {
  font-weight: 600;
  color: var(--green-800);
  width: 40%;
}

/* ─── APPLICATIONS GRID ───────────────────────────────────────────────────── */
.app-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.app-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-600));
  transform: scaleX(0);
  transition: var(--transition);
}
.app-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.app-card:hover::after {
  transform: scaleX(1);
}
.app-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.app-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 8px;
}
.app-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.app-tag {
  font-size: 11px;
  background: var(--green-100);
  color: var(--green-700);
  padding: 3px 9px;
  border-radius: 50px;
  font-weight: 600;
}

/* ─── APPLICATIONS PAGE ──────────────────────────────────────────────────── */

/* Hero extras */
.app-hero {
  position: relative;
  overflow: hidden;
}
.app-hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 80% 20%,
      rgba(201, 168, 76, 0.12) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 10% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 45%
    ),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}
.app-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}
.app-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px 24px;
  width: fit-content;
}
.app-hero-stat {
  text-align: center;
  padding: 0 22px;
}
.app-hs-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  font-family: "Libre Baskerville", serif;
  line-height: 1;
}
.app-hs-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.app-hero-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero icon grid */
.app-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.app-hero-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px 12px;
  transition: var(--transition);
}
.app-hero-chip:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.app-hero-chip i {
  font-size: 28px;
  color: #ffffff;
}
.app-hero-chip span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── INDUSTRY CARDS (Brand Palette) ────────────────────────────────────── */
.ind-section {
  padding: 90px 0;
  background: var(--cream);
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Base card */
.ind-card {
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 16px rgba(27, 77, 53, 0.07);
}
.ind-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(27, 77, 53, 0.15);
}

/* Variant A — white card, green header */
.ind-card--a {
  background: var(--white);
  border: 1px solid var(--border);
}
/* Variant B — cream card, gold header */
.ind-card--b {
  background: var(--cream-dark);
  border: 1px solid #e0d5c4;
}

/* Card header band */
.ind-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 18px;
}
.ind-card--a .ind-card-header {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
}
.ind-card--b .ind-card-header {
  background: linear-gradient(135deg, var(--gold-800), var(--gold-700));
}

/* Icon */
.ind-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: var(--transition);
  flex-shrink: 0;
}
.ind-card--a .ind-card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold-500);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ind-card--b .ind-card-icon {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.ind-card:hover .ind-card-icon {
  transform: scale(1.1) rotate(-6deg);
  background: rgba(255, 255, 255, 0.25);
}

/* Number badge in header */
.ind-card-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: "Libre Baskerville", serif;
  opacity: 0.45;
  line-height: 1;
}
.ind-card--a .ind-card-num {
  color: var(--gold-400, #e0c875);
}
.ind-card--b .ind-card-num {
  color: var(--white);
}

/* Body */
.ind-card-body {
  padding: 20px 22px 6px;
  flex: 1;
}
.ind-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}
.ind-card--a .ind-card-title {
  color: var(--green-800);
}
.ind-card--b .ind-card-title {
  color: var(--green-900);
}

.ind-card-tagline {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.ind-card--a .ind-card-tagline {
  color: var(--gold-700);
}
.ind-card--b .ind-card-tagline {
  color: var(--gold-800);
}

.ind-card-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Bottom bar */
.ind-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 22px;
  margin-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.ind-card--a .ind-card-bottom {
  background: var(--green-100);
}
.ind-card--b .ind-card-bottom {
  background: var(--gold-100);
}

.ind-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex: 1;
}
.ind-card-tags span {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  white-space: nowrap;
}
.ind-card--a .ind-card-tags span {
  background: rgba(27, 77, 53, 0.1);
  color: var(--green-700);
  border: 1px solid rgba(27, 77, 53, 0.15);
}
.ind-card--b .ind-card-tags span {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-800);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.ind-card-stat {
  text-align: right;
  flex-shrink: 0;
}
.ind-card-stat strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  font-family: "Libre Baskerville", serif;
  line-height: 1;
}
.ind-card--a .ind-card-stat strong {
  color: var(--green-800);
}
.ind-card--b .ind-card-stat strong {
  color: var(--gold-800);
}
.ind-card-stat small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 2px;
  max-width: 72px;
  text-align: right;
  line-height: 1.3;
}

@media (max-width: 1199.98px) {
  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 479.98px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }
}

/* Matrix table */
.matrix-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.matrix-table-scroll {
  overflow-x: auto;
}
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}
.matrix-table thead tr {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
}
.matrix-table thead th {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 14px;
  text-align: center;
  white-space: nowrap;
}
.matrix-th-product {
  text-align: left !important;
  color: var(--gold-500) !important;
  padding-left: 24px !important;
  min-width: 180px;
}
.matrix-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.matrix-table tbody tr:last-child {
  border-bottom: none;
}
.matrix-table tbody tr:hover {
  background: var(--cream);
}
.matrix-table tbody tr:nth-child(even) {
  background: #fafaf8;
}
.matrix-table tbody tr:nth-child(even):hover {
  background: var(--cream);
}
.matrix-td-product {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-800);
  padding: 14px 14px 14px 24px;
  white-space: nowrap;
}
.matrix-td-cell {
  text-align: center;
  padding: 14px 10px;
}
.matrix-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #dcfce7;
  border-radius: 50%;
  color: #16a34a;
  font-size: 14px;
}
.matrix-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--cream-dark);
  border-radius: 50%;
  color: #000000;
  font-size: 18px;
}

/* Bottom CTA strip */
.app-strip {
  background: linear-gradient(
    135deg,
    var(--green-900) 0%,
    var(--green-800) 100%
  );
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.app-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(201, 168, 76, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 50%
    );
}
.app-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}
.app-strip-text h3 {
  font-size: clamp(20px, 3vw, 30px);
  color: var(--white);
  margin-bottom: 8px;
}
.app-strip-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.app-strip-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.app-strip-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.app-strip-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .app-strip-inner {
    flex-direction: column;
    text-align: center;
  }
  .app-strip-actions {
    justify-content: center;
  }
  .app-hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ─── CERTIFICATIONS ──────────────────────────────────────────────────────── */
.cert-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 25px 20px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.cert-card:hover {
  border-color: var(--gold-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.cert-icon {
  width: 80px;
  height: 80px;
  background: var(--green-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--gold-600);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.cert-card:hover .cert-icon {
  transform: rotateY(360deg);
  transition: transform 0.6s;
}
.cert-card h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 8px;
}
.cert-card p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ─── PACKAGING CARDS ─────────────────────────────────────────────────────── */
.pack-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.pack-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--green-600);
}
.pack-number {
  position: absolute;
  top: -16px;
  left: 28px;
  width: 32px;
  height: 32px;
  background: var(--gold-700);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pack-icon {
  font-size: 40px;
  color: var(--green-700);
  margin-bottom: 16px;
  display: block;
  transition: var(--transition);
}
.pack-card:hover .pack-icon {
  color: var(--gold-700);
  transform: scale(1.1);
}
.pack-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 12px;
}
.pack-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pack-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pack-list li {
  font-size: 13.5px;
  color: var(--dark);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pack-list li:last-child {
  border-bottom: none;
}
.pack-list li i {
  color: var(--gold-700);
  font-size: 14px;
  flex-shrink: 0;
}

/* ─── EXPORT MAP SECTION ──────────────────────────────────────────────────── */
.export-info-card {
  background: var(--green-800);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  height: 100%;
}
.export-info-card h3 {
  color: var(--gold-600);
  margin-bottom: 24px;
}
.export-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.export-detail-row:last-child {
  border-bottom: none;
}
.export-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-600);
  flex-shrink: 0;
}
.export-detail-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.export-detail-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

.shipping-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgb(172 140 46);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  transition: var(--transition);
}
.shipping-badge:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold-700);
}
.shipping-badge-code {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-600);
  line-height: 1;
}
.shipping-badge-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* ─── CONTACT ─────────────────────────────────────────────────────────────── */
.contact-info-box {
  background: var(--green-800);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  color: var(--white);
}
.contact-info-box h3 {
  color: var(--gold-600);
  margin-bottom: 28px;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-row:last-child {
  border-bottom: none;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-600);
  flex-shrink: 0;
}
.contact-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 14.5px;
  color: var(--white);
}
.contact-value a {
  color: rgba(255, 255, 255, 0.9);
}
.contact-value a:hover {
  color: var(--gold-600);
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-card h3 {
  color: var(--green-800);
  margin-bottom: 28px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-800);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(27, 77, 53, 0.1);
  outline: none;
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ─── ABOUT PAGE ──────────────────────────────────────────────────────────── */
.commit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.commit-item:last-child {
  border-bottom: none;
}
.commit-icon {
  width: 48px;
  height: 48px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--green-700);
  flex-shrink: 0;
}
.commit-text h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 4px;
}
.commit-text p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}

/* ─── PRODUCT DETAIL PAGE ─────────────────────────────────────────────────── */
.product-detail-hero {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.product-detail-hero .container {
  position: relative;
  z-index: 2;
}
.product-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 60%
  );
}

.product-visual {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.product-visual-placeholder i {
  font-size: 64px;
  color: var(--gold-600);
}
.product-visual-placeholder span {
  font-size: 18px;
  font-weight: 600;
}

.product-meta-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 10px;
}
.product-meta-title span {
  color: var(--gold-600);
}
.product-meta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.product-feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.feature-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
}
.feature-badge i {
  color: var(--gold-600);
}

.variant-tabs .nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  margin-right: 8px;
  margin-bottom: 8px;
  transition: var(--transition);
}
.variant-tabs .nav-link.active,
.variant-tabs .nav-link:hover {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}

/* ─── FREEZE DRIED COMPARISON ─────────────────────────────────────────────── */
.fdc-section {
  background: var(--cream);
}

.fdc-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* Header row */
.fdc-headers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--green-900);
}
.fdc-hcol {
  padding: 18px 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.fdc-hcol--param {
  color: var(--gold-500);
}
.fdc-hcol--fresh {
  background: #7f1d1d;
  color: #fca5a5;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: center;
}
.fdc-hcol--fd {
  background: var(--green-800);
  color: #86efac;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  justify-content: center;
}

/* Data rows */
.fdc-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.fdc-row:last-of-type {
  border-bottom: none;
}
.fdc-row:hover .fdc-param {
  background: var(--green-100);
}

/* Parameter column */
.fdc-param {
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-right: 1px solid var(--border);
}
.fdc-param-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--green-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--green-700);
}
.fdc-param-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1.3;
  margin-bottom: 3px;
}
.fdc-param-hint {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Value columns */
.fdc-val {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  border-right: 1px solid var(--border);
}
.fdc-val:last-child {
  border-right: none;
}
/* Fresh column — odd rows light rose, even rows deeper rose */
.fdc-val--fresh {
  color: #991b1b;
  background: #fff1f2;
}
.fdc-row:nth-child(even) .fdc-val--fresh {
  color: #7f1d1d;
  background: #ffe4e6;
}
/* FD column — odd rows light mint, even rows deeper mint */
.fdc-val--fd {
  color: #166534;
  background: #f0fdf4;
}
.fdc-row:nth-child(even) .fdc-val--fd {
  color: #14532d;
  background: #dcfce7;
}
/* Parameter column — odd white, even light gold tint */
.fdc-param {
  background: var(--white);
}
.fdc-row:nth-child(even) .fdc-param {
  background: #fdf8ee;
}

/* Check / cross badges */
.fdc-badge {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}
.fdc-badge--bad {
  background: #fee2e2;
  color: #dc2626;
}
.fdc-badge--good {
  background: #dcfce7;
  color: #16a34a;
}

/* Footer winner banner */
.fdc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  flex-wrap: wrap;
}
.fdc-footer-left {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}
.fdc-footer-left i {
  color: var(--gold-500);
  font-size: 16px;
}
.fdc-footer-left strong {
  color: var(--white);
}

/* Mobile: stack columns */
@media (max-width: 767.98px) {
  .fdc-headers {
    grid-template-columns: 1fr 1fr;
  }
  .fdc-hcol--param {
    display: none;
  }
  .fdc-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .fdc-param {
    border-right: none;
    border-bottom: 1px solid var(--border);
    background: var(--green-100);
  }
  .fdc-val {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .fdc-val--fresh {
    background: #fff5f5;
  }
  .fdc-val--fd {
    background: #f0fdf4;
  }
}
.check-icon {
  color: #22c55e;
  font-size: 18px;
}
.cross-icon {
  color: #ef4444;
  font-size: 18px;
}

/* ─── INDUSTRIES TABS ─────────────────────────────────────────────────────── */
.industry-nav .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.industry-nav .nav-link.active,
.industry-nav .nav-link:hover {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}
.industry-nav .nav-link i {
  font-size: 18px;
}

/* ─── QUOTE PAGE ──────────────────────────────────────────────────────────── */
.quote-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.quote-benefit:last-child {
  border-bottom: none;
}
.quote-benefit i {
  font-size: 22px;
  color: var(--gold-600);
}
.quote-benefit span {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.footer-cta-banner {
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold-700);
}
.footer-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgb(0 0 0 / 70%) 0%,
    rgb(0 0 0 / 70%) 60%,
    rgb(0 0 0 / 60%) 100%
  );
  z-index: 0;
}
.footer-cta-banner > * {
  position: relative;
  z-index: 1;
}
/* Decorative glowing circles */
.footer-cta-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.footer-cta-decor-1 {
  width: 420px;
  height: 420px;
  top: -180px;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 70%
  );
}
.footer-cta-decor-2 {
  width: 320px;
  height: 320px;
  bottom: -130px;
  right: -60px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 70%
  );
}
.footer-cta-decor-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 22%;
  transform: translateY(-50%);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 70%
  );
}
.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.footer-cta-title {
  font-size: clamp(26px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}
.footer-cta-title span {
  color: var(--gold-600);
}
.footer-cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255);
  line-height: 1.7;
  margin-bottom: 36px;
}
.footer-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-cta-wa {
  background: #25d366;
  color: var(--white);
  border: 2px solid #25d366;
}
.footer-cta-wa:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--white);
  transform: translateY(-2px);
}
.footer-cta-email {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.footer-cta-email:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-cta-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: rgba(255, 255, 255);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.footer-cta-trust span i {
  color: var(--gold-600);
  font-size: 14px;
}

.footer-main {
  background: var(--green-900);
  padding: 70px 0 50px;
}

.footer-logo {
  height: 80px;
  width: auto;
}
.footer-about {
  font-size: 13.5px;
  color: rgba(255, 255, 255);
  line-height: 1.8;
}
.cert-badge-footer {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-600);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 3px 10px;
  border-radius: 4px;
}

.footer-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a::before {
  content: "›";
  color: var(--gold-700);
  font-size: 14px;
}
.footer-links li a:hover {
  color: var(--gold-600);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-contact-list li:last-child {
  border-bottom: none;
}
.footer-contact-list li i {
  color: var(--gold-600);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-list li span {
  font-size: 13.5px;
  color: rgba(255, 255, 255);
}
.footer-contact-list li a {
  color: rgba(255, 255, 255);
}
.footer-contact-list li a:hover {
  color: var(--gold-600);
}

.export-badge {
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 10px;
  border-radius: 50px;
}

.footer-bottom {
  background: #080f0b;
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255, 255, 255);
}
.footer-bottom em {
  font-style: italic;
  color: var(--gold-700);
  opacity: 0.8;
}

/* ─── WHATSAPP FLOAT ──────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}
.whatsapp-float:hover {
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(-4px);
}
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right-width: 0;
}

/* ─── SCROLL TO TOP ───────────────────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--green-800);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 998;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top-btn:hover {
  background: var(--gold-700);
  transform: translateY(-3px);
}

/* ─── BREADCRUMB ──────────────────────────────────────────────────────────── */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-item a {
  color: var(--gold-600);
  font-size: 13px;
}
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.35);
}

/* ─── UTILITY ─────────────────────────────────────────────────────────────── */
.bg-cream-section {
  background: var(--cream);
}
.bg-green-section {
  background: var(--green-800);
}
.gap-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.alert-success-custom {
  background: #dcfce7;
  border: 1.5px solid #86efac;
  color: #15803d;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
}
.alert-error-custom {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #dc2626;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
}

/* ─── IMAGE PLACEHOLDERS ──────────────────────────────────────────────────── */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.img-placeholder i {
  font-size: 40px;
  color: var(--border);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
/* ── Intermediate laptop breakpoint (992–1199px) ── */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .main-navbar .container {
    height: 66px;
  }
  .navbar-logo {
    height: 46px;
  }
  .brand-text {
    display: none;
  } /* hide text, show only logo */
  .navbar-nav .nav-link {
    padding: 6px 8px !important;
    font-size: 13px;
  }
  .navbar-cta .btn-gold {
    padding: 8px 14px;
    font-size: 12.5px;
  }
  .navbar-cta .btn-whatsapp {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* ── Wide desktop (1200px+) ── */
@media (min-width: 1200px) {
  .navbar-nav .nav-link {
    padding: 6px 12px !important;
  }
}

/* ─── Mobile Sidebar Drawer ──────────────────────────────────────────────── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 18, 0.65);
  z-index: 1099;
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.active {
  display: block;
  opacity: 1;
}
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 310px;
  max-width: 88vw;
  height: 100dvh;
  background: linear-gradient(
    170deg,
    var(--green-900) 0%,
    #0d2818 60%,
    #091a10 100%
  );
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.mobile-sidebar.open {
  transform: translateX(0);
}
/* Subtle pattern overlay */
.mobile-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 90% 10%,
      rgba(201, 168, 76, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 10% 80%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Header */
.msb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  position: relative;
}
.msb-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.msb-logo {
  height: 42px;
  width: auto;
}
.msb-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.msb-brand-name {
  font-family: "Libre Baskerville", serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.msb-brand-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.msb-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.msb-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* Nav list */
.msb-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}
.msb-nav-list {
  list-style: none;
  padding: 0 12px;
  margin: 0;
}
.msb-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.msb-nav-link:hover,
.msb-nav-link.msb-active {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-500);
  padding-left: 18px;
}
.msb-nav-link.msb-active {
  border-left: 3px solid var(--gold-600);
  padding-left: 11px;
}
.msb-nav-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold-600);
  flex-shrink: 0;
}
.msb-nav-link:hover .msb-nav-icon,
.msb-nav-link.msb-active .msb-nav-icon {
  background: rgba(201, 168, 76, 0.2);
}
.msb-chevron {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.4);
}
.msb-accordion-item.open .msb-chevron {
  transform: rotate(180deg);
}

/* Products accordion body */
.msb-accordion-body {
  display: none;
  padding: 8px 0 4px 12px;
  margin: 0 0 4px 46px;
  border-left: 2px solid rgba(201, 168, 76, 0.25);
}
.msb-accordion-item.open .msb-accordion-body {
  display: block;
}
.msb-sub-group {
  margin-bottom: 14px;
}
.msb-sub-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-600);
  padding: 0 0 6px 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.msb-accordion-body a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  padding: 5px 8px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.msb-accordion-body a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  padding-left: 12px;
}
.msb-view-all {
  display: inline-flex !important;
  align-items: center;
  background: rgba(201, 168, 76, 0.18) !important;
  border: 1px solid rgba(201, 168, 76, 0.35) !important;
  color: var(--gold-500) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  border-radius: 6px !important;
  margin-top: 8px;
  width: auto !important;
  letter-spacing: 0.3px;
}

/* Sidebar footer */
.msb-footer {
  padding: 16px 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.msb-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  margin-bottom: 14px;
}
.msb-wa-btn:hover {
  background: #1da851;
  color: var(--white);
}
.msb-contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}
.msb-contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: var(--transition);
}
.msb-contact-info a i {
  color: var(--gold-600);
  font-size: 13px;
}
.msb-contact-info a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.msb-certs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.msb-certs span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-image-grid {
    display: none;
  }
  .mega-menu {
    position: static !important;
    box-shadow: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
  }
  .mega-menu-inner {
    flex-direction: column;
  }
  .mega-menu-sidebar {
    width: 100%;
    padding: 16px 20px;
  }
  .mega-menu-sidebar-heading,
  .mega-menu-sidebar-text,
  .mega-menu-sidebar-certs {
    display: none;
  }
  .mega-menu-columns {
    padding: 16px 12px 0;
  }
  .mega-menu-cols-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .mega-menu-col {
    border-right: none;
    padding: 0 8px 16px;
  }
  .mega-menu-col-icon {
    display: none;
  }
  .mega-menu-footer-left {
    display: none;
  }
  .mega-dropdown {
    position: relative !important;
  }
  .navbar-nav .nav-link {
    padding: 10px 16px !important;
  }
  .navbar-cta {
    padding: 12px 0 8px;
    flex-direction: row;
  }
  .main-navbar .container {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .section {
    padding: 60px 0;
  }
  .export-info-card {
    padding: 28px 24px;
  }
  .form-card {
    padding: 28px 24px;
  }
}

@media (max-width: 767.98px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .stat-number {
    font-size: 28px;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .scroll-top-btn {
    bottom: 84px;
    right: 20px;
  }
  .footer-logo {
    height: 60px;
  }
  .form-card {
    padding: 22px 18px;
  }
}

@media (max-width: 575.98px) {
  .hero-cta-group {
    flex-direction: column;
  }
  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .hero-stat-number {
    font-size: 22px;
  }
}

/* ─── DEHYDRATED PAGE ────────────────────────────────────────────────────── */

/* Sticky tab bar */
.dh-tabs-bar {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.dh-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.dh-tabs::-webkit-scrollbar {
  display: none;
}
.dh-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.dh-tab:hover,
.dh-tab.active {
  color: var(--green-800);
  border-bottom-color: var(--green-700);
}
.dh-tab i {
  font-size: 16px;
}
.dh-tab-cta {
  background: var(--green-800);
  color: var(--white) !important;
  border-bottom-color: transparent !important;
  border-radius: 0;
  padding: 14px 22px;
  margin-left: auto;
}
.dh-tab-cta:hover {
  background: var(--green-700);
  color: var(--white) !important;
}

/* Product sections */
.dh-product-section {
  padding: 80px 0;
  background: var(--cream);
}
.dh-product-section.dh-alt {
  background: var(--white);
}

/* Section header */
.dh-prod-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 44px;
}
.dh-prod-num {
  font-family: "Libre Baskerville", serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -6px;
}
.dh-prod-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--prod-bg);
  color: var(--prod-color);
  border: 1px solid color-mix(in srgb, var(--prod-color) 30%, transparent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.dh-prod-badge i {
  font-size: 14px;
}
.dh-prod-title {
  font-family: "Libre Baskerville", serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--green-900);
  line-height: 1.2;
  margin: 0 0 6px;
}
.dh-prod-title span {
  color: var(--green-700);
}
.dh-prod-tagline {
  font-size: 14px;
  color: #000000;
  margin: 0;
  font-style: italic;
}

/* Visual card */
.dh-visual-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
}
.dh-visual-img {
  /* height: 240px; */
  background-size: cover;
  background-position: center;
}
.dh-visual-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
}
.dh-visual-icon {
  width: 44px;
  height: 44px;
  background: var(--prod-bg);
  color: var(--prod-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.dh-visual-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-800);
}
.dh-visual-origin {
  font-size: 12px;
  color: var(--text-muted);
}

/* Variants */
.dh-variants-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.dh-variants-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.dh-variants-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dh-variant-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--prod-color) 8%, white);
  color: var(--prod-color);
  border: 1px solid color-mix(in srgb, var(--prod-color) 25%, transparent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}
.dh-variant-chip i {
  font-size: 13px;
}

/* Quality badges */
.dh-quality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dh-quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dcfce7;
  color: var(--green-800);
  border: 1px solid rgba(27, 77, 53, 0.2);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}
.dh-quality-badge i {
  color: var(--green-600);
  font-size: 12px;
}

/* Description */
.dh-desc {
  font-size: 15px;
  color: #000000;
  line-height: 1.9;
  margin-bottom: 24px;
}

/* Spec grid */
.dh-spec-grid {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0;
}
.dh-spec-heading {
  background: var(--green-900);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 18px;
}
.dh-spec-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dh-spec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.dh-spec-row:nth-child(even) {
  border-right: none;
}
.dh-spec-row:nth-last-child(-n + 2) {
  border-bottom: none;
}
.dh-spec-icon {
  font-size: 16px;
  flex-shrink: 0;
}
.dh-spec-key {
  font-size: 12px;
  color: #000000;
  min-width: 80px;
}
.dh-spec-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-800);
  margin-left: auto;
  text-align: right;
}

/* Info boxes */
.dh-info-box {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
}
.dh-info-heading {
  background: var(--green-800);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 16px;
}
.dh-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.dh-info-row:last-child {
  border-bottom: none;
}
.dh-info-row span {
  color: #000000;
}
.dh-info-row strong {
  color: var(--green-800);
}
.dh-uses-grid {
  padding: 10px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
}
.dh-use-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-800);
}
.dh-use-item i {
  color: var(--gold-700);
  font-size: 14px;
  flex-shrink: 0;
}

/* CTA row */
.dh-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Why dehydrated */
.dh-why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  height: 100%;
  transition: background 0.2s;
}
.dh-why-card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.dh-why-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.dh-why-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.dh-why-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255);
  line-height: 1.75;
  margin: 0;
}

/* CTA strip */
.dh-cta-strip {
  background: linear-gradient(135deg, #8a6a24 0%, #b8943e 50%, #c9a84c 100%);
  padding: 60px 0;
}
.dh-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.dh-cta-text h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.dh-cta-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin: 0;
}
.dh-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.dh-cta-strip .btn-gold {
  background: var(--white);
  color: #8a6a24;
  border: none;
}
.dh-cta-strip .btn-gold:hover {
  background: var(--cream);
}
.dh-wa-btn {
  background: #25d366;
  color: var(--white);
  border: none;
  font-weight: 600;
}
.dh-wa-btn:hover {
  background: #1ebe5d;
  color: var(--white);
}

@media (max-width: 991px) {
  .dh-prod-num {
    font-size: 48px;
  }
  .dh-prod-title {
    font-size: 26px;
  }
  .dh-spec-rows {
    grid-template-columns: 1fr;
  }
  .dh-spec-row {
    border-right: none !important;
  }
  .dh-spec-row:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
  .dh-spec-row:last-child {
    border-bottom: none !important;
  }
  .dh-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .dh-cta-actions {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .dh-tab {
    padding: 12px 14px;
    font-size: 12px;
  }
  .dh-product-section {
    padding: 52px 0;
  }
  .dh-uses-grid {
    grid-template-columns: 1fr;
  }
}

button.btn.btn-green.active {
  color: #ffffff;
}
