:root {
  --teal: #075f5c;
  --teal-dark: #034946;
  --teal-soft: #0e6b67;
  --gold: #f4a914;
  --ink: #1f2d2c;
  --muted: #60706e;
  --line: #d6dfdd;
  --surface: #ffffff;
  --soft: #f4f7f6;
  --shadow: 0 18px 45px rgba(10, 34, 32, 0.13);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Avenir Next", "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  transition: background-color 0.4s ease, color 0.4s ease;
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(31, 45, 44, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease;
}





.header-inner {
  width: var(--container);
  max-width: 100%;
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a {
  padding: 12px 0;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

/* --- Nav Dropdown --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.dropdown-arrow {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(38, 52, 50, 0.95);
  border-radius: 10px;
  padding: 4px;
  display: none;
  z-index: 30;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 16px !important;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  border-radius: 7px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.header-tools {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-button,
.lang-toggle {
  min-width: 34px;
  height: 34px;
  border: 0;
  color: #fff;
  background: transparent;
  font-weight: 800;
}

/* --- Inline Search --- */
.search-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.search-inline {
  width: 220px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: #d6d8d6;
  color: #222;
  font-size: 14px;
  outline: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  transform: translateY(-50%);
  translate: 6px 0;
  transition: opacity 0.25s ease, visibility 0.25s ease, translate 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.search-inline::placeholder {
  color: #777;
}

.search-wrapper.open .search-inline {
  width: 220px;
  padding: 9px 16px;
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

@media (min-width: 1024px) {
  .search-wrapper.open .search-inline {
    translate: 0 0;
  }
}

.icon-button {
  border-radius: 50%;
  font-size: 0;
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
}

.icon-button img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.lang-toggle {
  padding: 0 3px;
}

.lang-toggle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}


.lang-wrapper {
  position: relative;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(38, 52, 50, 0.95);
  border-radius: 10px;
  z-index: 200;
  padding: 4px;
  display: none;
}



.lang-wrapper:hover .lang-dropdown {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lang-option {
  display: block;
  padding: 7px 14px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.lang-option:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.lang-option.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

[data-theme="dark"] .lang-dropdown {
  background: rgba(18, 28, 27, 0.7);
  border: none;
}

[data-theme="dark"] .lang-option:hover {
  background: rgba(255,255,255,0.12);
}

[data-theme="dark"] .lang-option.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.tool-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.35);
}

.search-panel {
  position: absolute;
  top: 92px;
  right: calc((100% - var(--container)) / 2);
  display: flex;
  gap: 8px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.search-panel input {
  width: 260px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 6px;
}

.search-panel button {
  width: 48px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--teal);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-position: center top;
  background-size: cover;
}

.hero-home {
  background-image: url("../assets/images/home-hero.jpg");
}

.hero-products {
  background-image: url("../assets/images/products-hero.jpg");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 55px;
  align-items: center;
}

.hero-logo {
  width: 300px;
  height: auto;
}

.hero-copy h1 {
  max-width: 850px;
  margin: 0 0 26px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
}

.hero-copy p {
  max-width: 760px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 44px;
  padding: 0 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

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

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-outline {
  color: var(--teal);
  background: transparent;
  border-color: var(--teal);
}

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

.btn-outline.light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: -1px;
  z-index: 3;
  width: 186px;
  height: 54px;
  background: transparent;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.scroll-cue .scroll-rd {
  position: absolute;
  bottom: 0;
  width: 186px;
  height: 54px;
}

.scroll-cue .scroll-arrow {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 16px;
  margin-bottom: 12px;
  animation: bounceArrow 1.8s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.section {
  padding: 98px 0;
}

.intro-section {
  padding-top: 130px;
  padding-bottom: 40px;
}

.narrow-copy {
  width: 500px;
  margin: 0 auto;
  color: #2f3d3c;
  font-size: 17px;
}

.section-title {
  width: var(--container);
  margin: 0 auto 48px;
  text-align: center;
}

.section-title.wide {
  width: 1240px;
}

.section-title h2 {
  margin: 0;
  color: var(--teal);
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
}

.section-title p {
  margin: 8px 0 0;
  color: var(--teal-soft);
  font-size: 18px;
}

.section-title::after {
  content: "";
  display: block;
  width: 170px;
  height: 2px;
  margin: 13px auto 0;
  background: var(--teal);
}

.sun-mark {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.reason-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 30px;
}

.reason-card,
.solution-card,
.category-card,
.product-card,
.cert-card,
.export-card,
.shipping-card {
  border-radius: var(--radius);
}

.reason-card {
  min-height: 270px;
  padding: 28px 26px 22px;
  color: #fff;
  background: var(--teal);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.circle-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.circle-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.reason-card .circle-icon img {
  filter: brightness(0) invert(1);
}

.reason-card h3,
.solution-card h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 17px;
  line-height: 1.25;
}

.reason-card p,
.solution-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.reason-metric {
  margin-top: 18px;
  color: var(--gold);
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
}

.reason-caption {
  color: rgba(255, 255, 255, 0.88);
}

.image-band {
  height: 496px;
  display: grid;
  place-items: center;
  background-position: center;
  background-size: cover;
}

.facility-band {
  background-image: linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    url("../assets/images/facility-banner.jpg");
}

.facility-band img {
  width: 270px;
  height: auto;
}

.solution-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.solution-card {
  position: relative;
  min-height: 430px;
  padding: 82px 26px 76px;
  color: #fff;
  background: var(--teal);
  overflow: visible;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.solution-card::before {
  content: "";
  position: absolute;
  top: -48px;
  left: 50%;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.solution-icon {
  position: absolute;
  top: -42px;
  left: 50%;
  width: 88px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  z-index: 3;
}

.solution-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-card .strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-weight: 900;
}

.solution-card .btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  white-space: normal;
  line-height: 1.3;
  padding-top: 10px;
  padding-bottom: 10px;
  min-width: auto;
  color: #fff;
  border-color: #fff;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.solution-card .btn:hover {
  background: #f4a914;
  border-color: #f4a914;
  color: #fff;
}

.category-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.category-body {
  padding: 24px 22px 28px;
}

.category-body h3 {
  margin: 0 0 16px;
  color: var(--teal);
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}

.category-body p {
  margin: 0 0 15px;
  min-height: 94px;
  color: #384745;
  font-size: 17px;
}

.category-spec {
  padding: 12px 0;
  margin: 0 0 14px;
  border-top: 1px solid var(--teal);
  border-bottom: 1px solid var(--teal);
  color: var(--teal);
  text-align: center;
  font-weight: 900;
}

.category-body .btn {
  display: flex;
  max-width: 240px;
  margin: 20px auto 0;
}

.process-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

.process-step {
  text-align: center;
}

.process-step .circle-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 16px;
}

.process-step h3 {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 17px;
  font-weight: 900;
}

.process-step p {
  margin: 0;
  color: #4f5b59;
  font-size: 13px;
  line-height: 1.25;
}

.quality-band {
  min-height: 341px;
  padding: 50px 0;
  background-image: linear-gradient(rgba(250, 250, 250, 0.2), rgba(250, 250, 250, 0.2)),
    url("../assets/images/lab-bg.jpg");
  background-position: center;
  background-size: cover;
}

.quality-cards {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
}

.cert-card {
  min-height: 110px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.cert-badge {
  display: grid;
  place-items: center;
  height: 72px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.cert-badge img {
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.cert-card h3 {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 17px;
  font-weight: 900;
}

.cert-card p {
  margin: 0;
  color: #33413f;
}

.export-section {
  padding-bottom: 0;
}

.export-map {
  min-height: 468px;
  padding: 60px 0 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    url("../assets/images/export-bg.jpg");
  background-position: center top;
  background-size: cover;
}

.export-cards {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.export-card {
  min-height: 230px;
  padding: 34px 32px 28px;
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.export-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.export-card h3 {
  margin: 15px 0 12px;
  color: var(--teal);
  font-size: 17px;
  font-weight: 900;
}

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

.export-card strong {
  color: var(--teal);
}

.shipping-grid {
  width: 900px;
  margin: 50px auto -70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.shipping-card {
  min-height: 130px;
  padding: 28px;
  color: #fff;
  background: var(--teal);
  text-align: center;
  transition: transform 0.3s ease;
}

.shipping-card:hover {
  transform: translateY(-4px);
}

.shipping-card h3,
.shipping-card p {
  transition: color 0.3s ease;
}

.shipping-card:hover h3,
.shipping-card:hover p {
  color: #f4a914;
}

.shipping-card .circle-icon img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.shipping-card:hover .circle-icon img {
  filter: brightness(0) saturate(100%) invert(69%) sepia(61%) saturate(1834%) hue-rotate(352deg) brightness(100%) contrast(95%);
}

.shipping-card h3 {
  margin: 8px 0;
  font-size: 17px;
  font-weight: 900;
}

.shipping-card p {
  margin: 0;
}

.contact-section {
  padding: 150px 0 95px;
  background: linear-gradient(#fff 0 38%, var(--teal) 38% 85%, #fff 85% 100%);
}

.contact-heading {
  width: var(--container);
  margin: 0 auto 62px;
  text-align: center;
}

.contact-heading h2 {
  margin: 0;
  color: var(--teal);
  font-size: 34px;
  font-weight: 900;
}

.contact-heading p {
  margin: 6px auto 0;
  max-width: 760px;
  color: var(--teal-soft);
  font-size: 18px;
}

.contact-layout {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 630px;
  gap: 70px;
  align-items: center;
}

.contact-benefits {
  color: #fff;
}

.contact-benefits h3 {
  margin: 0 0 36px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.benefit-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.benefit-item .circle-icon {
  width: 46px;
  height: 46px;
  margin: 0;
}

.benefit-item .circle-icon img {
  filter: brightness(0) invert(1);
}

.benefit-item h4 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 900;
}

.benefit-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.lead-form {
  padding: 34px 34px 26px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #141a19;
  font-weight: 900;
}

.field-label {
  display: block;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field span.required {
  color: #c43428;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"] {
  height: 44px;
  padding: 0 13px;
  border: 1px solid #6f7775;
  border-radius: 8px;
  color: #1d2928;
  font-weight: 500;
}

.check-group {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  border: 0;
}

.check-group legend {
  margin: 0 0 16px;
  font-weight: 900;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.checkbox-grid input {
  width: 16px;
  height: 16px;
}

.form-actions {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-actions .btn {
  width: 100%;
}

.privacy {
  margin: 22px 0 0;
  color: #a6b2b0;
  text-align: center;
  font-size: 13px;
}

.form-status {
  margin-top: 14px;
  color: var(--teal);
  text-align: center;
  font-weight: 800;
}

.product-line {
  padding-top: 70px;
}

.line-hero {
  width: var(--container);
  margin: 0 auto 54px;
  overflow: hidden;
  border-radius: 28px;
  position: relative;
}

.line-hero > img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 230px;
  object-fit: cover;
}

.line-copy {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 44px;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.65));
}

.line-copy h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.line-copy h3 {
  margin: 6px 0 10px;
  font-size: 21px;
  text-transform: uppercase;
}

.line-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
}

.line-copy .btn {
  width: 320px;
  min-height: 40px;
}

.packaging {
  width: 700px;
  margin: 0 auto 44px;
  text-align: center;
}

.packaging h4 {
  margin: 0 0 18px;
  color: var(--teal);
  font-weight: 900;
}

.pack-grid {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.pack-item {
  min-width: 70px;
}

.pack-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
}

.pack-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.line-details {
  width: var(--container);
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 70px;
}

.line-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 36px;
}

.line-feature {
  padding-left: 14px;
  border-left: 2px solid var(--teal);
}

.line-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}

.stat-pill {
  padding: 12px 16px;
  border-radius: 8px;
  color: #1b1600;
  background: linear-gradient(#ffc95d, #f2a80e);
  font-weight: 900;
}

.stat-pill span {
  display: block;
  font-weight: 500;
}

.product-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 34px;
}

.product-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  padding: 0;
  background: #fff;
  border: 2px solid #d6d8d6;
  border-radius: 16px;
  overflow: hidden;
}

.product-img-wrap {
  overflow: hidden;
  border-radius: 14px 0 0 14px;
}

[data-theme="dark"] .product-img-wrap {
  border-radius: 12px;
  margin: 4px;
}

[data-theme="dark"] .product-card img {
  border-radius: 10px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}

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

.product-card > div {
  padding: 20px 24px;
}

.product-card h3 {
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d6d8d6;
  color: var(--teal);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card p {
  margin: 0 0 10px;
  font-size: 14px;
}

.product-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
}

.product-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.product-meta-compact {
  align-items: flex-start;
}

.product-meta-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pack-type-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  min-width: 60px;
}
.pack-type-label {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}
.pack-type-icon {
  color: var(--teal);
}


.product-line .line-cta {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.site-footer {
  color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url("../assets/images/footer-bg.jpg");
  background-position: center;
  background-size: cover;
}

.footer-inner {
  width: var(--container);
  min-height: 405px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 70px;
}

.footer-logo img {
  width: 190px;
  height: auto;
  margin-bottom: 18px;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 42px;
}

.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.socials a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-col h3 {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 900;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.search-hit {
  outline: 3px solid rgba(244, 169, 20, 0.7);
  outline-offset: 8px;
}


/* Contact modal overlay */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.65));
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 40px;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  position: relative;
  width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  padding: 40px 36px 30px;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 0;
  z-index: 5;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
}

.modal-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.modal-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.modal-close:hover::before,
.modal-close:hover::after {
  background: var(--teal);
}

.modal-container .lead-form {
  padding: 0;
  box-shadow: none;
}


.product-shelf {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 0;
  border-top: 1px solid #d6d8d6;
  font-size: 13px;
  color: var(--muted);
}

.product-shelf strong {
  color: var(--teal);
  font-weight: 900;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(7, 95, 92, 0.08);
}

.pack-item .pack-label {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--muted);
}





/* Smooth theme transitions */
.product-card,
.category-card,
.cert-card,
.lead-form,
.modal-container,
.nav-dropdown-menu,
.packaging,
.search-inline,
.stat-pill {
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.section-title h2,
.section-title p,
.section-title::after,
.product-card h3,
.product-shelf strong,
.product-tag,
.btn-outline,
.btn-primary,
.contact-heading h2,
.contact-heading p,
.form-field,
.footer-col a {
  transition: color 0.4s ease, background-color 0.4s ease, border-color 0.4s ease;
}

/* ==========================================================
   DARK THEME
   ========================================================== */
[data-theme="dark"] {
  --ink: #e4ece9;
  --muted: #a0b0ac;
  --line: #2a3a37;
  --surface: #0f1a18;
  --soft: #162220;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

html[data-theme="dark"],
html[data-theme="dark"] body {
  background: #0f1a18 !important;
  color: #e4ece9;
}


[data-theme="dark"] .site-header {
  background: rgba(18, 28, 27, 0.7);
}

html[data-theme="dark"] main,
html[data-theme="dark"] section,
html[data-theme="dark"] .product-line {
  background-color: #0f1a18;
}

/* --- Header in dark mode (only non-hero pages if needed) --- */

/* --- Sections backgrounds --- */
[data-theme="dark"] .intro-section,
[data-theme="dark"] .reason-section,
[data-theme="dark"] .category-section,
[data-theme="dark"] .process-section,
[data-theme="dark"] .quality-section,
[data-theme="dark"] .export-section {
  background-color: #0f1a18;
}

[data-theme="dark"] .solution-section {
  background: #162220;
}

/* --- Section titles --- */
[data-theme="dark"] .section-title h2 {
  color: #4fd1cc;
}

[data-theme="dark"] .section-title p {
  color: #6fc9c5;
}

[data-theme="dark"] .section-title::after {
  background: #4fd1cc;
}

/* --- Intro text --- */
[data-theme="dark"] .intro-text,
[data-theme="dark"] .intro-section p {
  color: #c8ddd9;
}

[data-theme="dark"] .intro-section strong {
  color: #4fd1cc;
}

/* --- Category cards --- */
[data-theme="dark"] .category-card {
  background: #162220;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .category-body h3 {
  color: #4fd1cc;
}

[data-theme="dark"] .category-body p {
  color: #a0b0ac;
}

[data-theme="dark"] .category-spec {
  color: #6fc9c5;
}

/* --- Product cards --- */
[data-theme="dark"] .product-card {
  background: #162220;
  border-color: #2a3a37;
}

[data-theme="dark"] .product-card h3 {
  color: #4fd1cc;
  border-bottom-color: #2a3a37;
}

[data-theme="dark"] .product-card p,
[data-theme="dark"] .product-card li {
  color: #a0b0ac;
}

[data-theme="dark"] .product-shelf {
  border-top-color: #2a3a37;
  color: #8a9a96;
}

[data-theme="dark"] .product-shelf strong {
  color: #4fd1cc;
}

[data-theme="dark"] .product-meta {
  color: #c0d0cc;
}

[data-theme="dark"] .product-tag {
  color: #4fd1cc;
  background: rgba(79, 209, 204, 0.12);
}

/* --- Cert cards --- */
[data-theme="dark"] .cert-card {
  background: #162220;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .cert-card h3 {
  color: #4fd1cc;
}

[data-theme="dark"] .cert-card p {
  color: #a0b0ac;
}

/* --- Process section --- */
[data-theme="dark"] .process-step h3 {
  color: #4fd1cc;
}

[data-theme="dark"] .process-step p {
  color: #a0b0ac;
}

/* --- Buttons --- */
[data-theme="dark"] .btn-primary {
  background: #0a7a76;
  color: #fff;
}

[data-theme="dark"] .btn-primary:hover {
  background: #09908b;
}

[data-theme="dark"] .btn-outline {
  color: #4fd1cc;
  border-color: #4fd1cc;
}

[data-theme="dark"] .btn-outline:hover {
  background: rgba(79, 209, 204, 0.1);
}

/* --- Contact section --- */
[data-theme="dark"] .contact-section {
  background: linear-gradient(#0f1a18 0 38%, var(--teal) 38% 85%, #0f1a18 85% 100%);
}

[data-theme="dark"] .contact-heading h2 {
  color: #4fd1cc;
}

[data-theme="dark"] .contact-heading p {
  color: #6fc9c5;
}

/* --- Form --- */
[data-theme="dark"] .lead-form {
  background: #162220;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .form-field {
  color: #e4ece9;
}

[data-theme="dark"] .form-field input[type="text"],
[data-theme="dark"] .form-field input[type="email"],
[data-theme="dark"] .form-field input[type="tel"] {
  background: #0f1a18;
  border-color: #3a4a47;
  color: #e4ece9;
}

[data-theme="dark"] .form-field input::placeholder {
  color: #6a7a76;
}

[data-theme="dark"] .check-group legend {
  color: #e4ece9;
}

[data-theme="dark"] .checkbox-grid label {
  color: #c0d0cc;
}

[data-theme="dark"] .privacy {
  color: #6a7a76;
}

[data-theme="dark"] .form-status {
  color: #4fd1cc;
}

/* --- Modal --- */
[data-theme="dark"] .modal-overlay {
  background: rgba(0, 0, 0, 0.75);
}

[data-theme="dark"] .modal-container {
  background: #162220;
}

[data-theme="dark"] .modal-container h2 {
  color: #4fd1cc !important;
}

[data-theme="dark"] .modal-container p {
  color: #a0b0ac !important;
}

[data-theme="dark"] .modal-close::before,
[data-theme="dark"] .modal-close::after {
  background: #a0b0ac;
}

[data-theme="dark"] .modal-close:hover::before,
[data-theme="dark"] .modal-close:hover::after {
  background: #4fd1cc;
}

/* --- Footer --- */
[data-theme="dark"] .site-footer {
  background: #0a1210;
}

[data-theme="dark"] .footer-bottom {
  border-top-color: #1a2a27;
  color: #6a7a76;
}

[data-theme="dark"] .footer-col a {
  color: #8a9a96;
}

[data-theme="dark"] .footer-col a:hover {
  color: #4fd1cc;
}

/* --- Export cards (keep light bg, darken text) --- */
[data-theme="dark"] .export-card h3 {
  color: var(--teal);
}

[data-theme="dark"] .export-card p {
  color: #1f2d2c;
}

[data-theme="dark"] .export-card strong {
  color: var(--teal-dark);
}

/* --- Pack labels --- */
[data-theme="dark"] .pack-label {
  color: #8a9a96;
}

/* --- Line hero in dark mode --- */
html[data-theme="dark"] .line-hero {
  border-radius: 28px;
}

[data-theme="dark"] .line-copy {
  background: linear-gradient(90deg, rgba(15, 26, 24, 0.0), rgba(15, 26, 24, 0.8));
}

/* --- Line features & stats --- */
[data-theme="dark"] .line-features {
  color: #c0d0cc;
}

[data-theme="dark"] .line-feature {
  border-left-color: #4fd1cc;
}

[data-theme="dark"] .stat-pill {
  background: #1a2a27;
  color: #c0d0cc;
}

[data-theme="dark"] .stat-pill span {
  color: #4fd1cc;
}

/* --- Packaging section --- */
[data-theme="dark"] .packaging {
  background: #0f1a18;
}

[data-theme="dark"] .packaging h4 {
  color: #c0d0cc;
}

[data-theme="dark"] .pack-item span {
  color: #c0d0cc;
}

/* --- Search --- */
[data-theme="dark"] .search-inline {
  background: #1a2a27;
  color: #e4ece9;
  border: 1px solid #2a3a37;
}

/* --- Nav dropdown in dark mode --- */
[data-theme="dark"] .nav-dropdown-menu {
  background: rgba(22, 34, 32, 0.95);
}

[data-theme="dark"] .nav-dropdown-menu a {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* --- Solution card in dark mode --- */
[data-theme="dark"] .solution-card::before {
  background: #0f1a18;
}

[data-theme="dark"] .solution-card .btn {
  background: var(--teal);
  border-color: #fff;
  color: #fff;
}

[data-theme="dark"] .solution-card .btn:hover {
  background: #f4a914;
  border-color: #f4a914;
  color: #fff;
}

/* --- Scroll cue --- */
[data-theme="dark"] .scroll-cue .scroll-rd {
  filter: brightness(0) saturate(100%) invert(8%) sepia(15%) saturate(800%) hue-rotate(130deg) brightness(1.05);
}

[data-theme="dark"] .scroll-cue .scroll-arrow {
  filter: brightness(0) saturate(100%) invert(75%) sepia(30%) saturate(600%) hue-rotate(130deg) brightness(1.1);
}

/* --- Theme toggle button --- */
.theme-btn {
  min-width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0 3px;
  transition: opacity 0.2s;
}

.theme-btn:hover {
  opacity: 0.7;
}

.theme-icon {
  width: 20px;
  height: 20px;
}

/* ==========================================================
   RESPONSIVE: BURGER BUTTON (hidden on desktop)
   ========================================================== */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 51;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}


/* ==========================================================
   BLOG PAGE
   ========================================================== */

.hero-blog {
  background-image: url("../assets/images/home-hero.jpg");
}
/* Compact hero for blog */
.hero-compact {
  min-height: 50vh;
  max-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-compact .hero-content.two-column {
  align-items: center;
  padding-top: 60px;
}

.hero-compact .scroll-cue {
  display: none;
}

.hero-compact .hero-logo {
  width: 200px;
}

.hero-compact .hero-copy h1 {
  font-size: 28px;
  margin-bottom: 14px;
}

.hero-compact .hero-copy p {
  font-size: 15px;
}



/* Breadcrumb */
.blog-breadcrumb {
  padding: 24px 0;
  background: var(--soft);
  font-size: 14px;
  color: var(--muted);
}

.blog-breadcrumb a {
  color: var(--teal);
  font-weight: 600;
}

.blog-breadcrumb a:hover {
  text-decoration: underline;
}

.bc-sep {
  margin: 0 8px;
  color: var(--muted);
}

.blog-container {
  width: var(--container);
  margin: 0 auto;
}

/* Article */
.blog-article {
  padding: 60px 0 40px;
}

.article-header {
  margin-bottom: 36px;
}

.article-header--split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.article-header--split .article-hero-img {
  flex: 0 0 55%;
  max-width: 55%;
}

.article-header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-date {
  display: block;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.article-hero-img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}

.article-header--split .article-hero-img {
  margin-bottom: 0;
}

.article-hero-img img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
}

.article-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1.25;
  margin: 0;
}

.article-text {
  margin: 24px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

.article-text p {
  margin: 0 0 16px;
}

.article-text ul {
  margin: 8px 0 16px 20px;
  padding: 0;
}

.article-text ul li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* Blog Product Section */
.blog-product-section {
  margin: 48px 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.blog-product-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-product-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}

.blog-product-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 16px;
  overflow: hidden;
}

.blog-product-img img {
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
  border-radius: 12px;
}

.blog-product-pack {
  flex: 0 0 320px;
  text-align: center;
}

.blog-product-pack h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px;
}

.blog-pack-icons {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.blog-pack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.blog-pack-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.blog-pack-item span {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

/* Article contacts */
.article-contacts {
  margin-top: 32px;
  padding: 24px;
  background: var(--soft);
  border-radius: 12px;
}

.article-contacts p {
  margin: 0 0 6px;
}

/* Related articles */
.blog-related {
  background: var(--soft);
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(10, 34, 32, 0.18);
}

.blog-card-img {
  height: 240px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-body h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--teal);
  margin: 0 0 8px;
  line-height: 1.3;
}

.blog-card-date {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.blog-card-body p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.5;
  flex: 1;
}

.blog-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 20px;
  border: 2px solid var(--teal);
  border-radius: 999px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}

.blog-card:hover .blog-card-link {
  background: var(--teal);
  color: #fff;
}

/* Dark theme blog */
[data-theme="dark"] .blog-breadcrumb {
  background: #0e1a18;
  color: #6a7a76;
}

[data-theme="dark"] .blog-breadcrumb a {
  color: #4fd1cc;
}

[data-theme="dark"] .article-title {
  color: #4fd1cc;
}

[data-theme="dark"] .article-text {
  color: #c8ddd9;
}

[data-theme="dark"] .blog-product-title {
  color: #4fd1cc;
}

[data-theme="dark"] .blog-product-img {
  background: transparent;
}

[data-theme="dark"] .article-contacts {
  background: #1a2826;
}

[data-theme="dark"] .blog-related {
  background: #0e1a18;
}

/* Blog listing page */
.blog-listing {
  padding: 80px 0;
}

.blog-card-soon {
  opacity: 0.55;
  pointer-events: none;
  cursor: default;
}

.blog-card-link-soon {
  background: rgba(0, 0, 0, 0.08) !important;
  color: var(--muted) !important;
}

[data-theme="dark"] .blog-card-link-soon {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.35) !important;
}


[data-theme="dark"] .blog-card {
  background: #1a2826;
}

[data-theme="dark"] .blog-card-body h3 {
  color: #4fd1cc;
}

[data-theme="dark"] .blog-card-link {
  color: #4fd1cc;
  border-color: #4fd1cc;
}

[data-theme="dark"] .blog-card:hover .blog-card-link {
  background: #4fd1cc;
  color: #0a1210;
}

/* Blog featured cards row (2 columns) */
.blog-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.blog-featured .blog-card {
  flex-direction: row;
  min-height: 260px;
}

.blog-featured .blog-card-img {
  flex: 0 0 45%;
  height: auto;
  min-height: 260px;
}

.blog-featured .blog-card-body {
  padding: 24px;
}

.blog-featured .blog-card-body h3 {
  font-size: 18px;
}

/* Blog pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.blog-pagination .page-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.blog-pagination .page-dot.active {
  background: var(--teal);
  width: 28px;
  border-radius: 5px;
}

[data-theme="dark"] .blog-pagination .page-dot {
  background: #2a3a38;
}

[data-theme="dark"] .blog-pagination .page-dot.active {
  background: #4fd1cc;
}

/* Blog newsletter */
.blog-newsletter {
  margin-top: 64px;
  padding: 40px;
  background: var(--soft);
  border-radius: 16px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.blog-newsletter-form {
  flex: 0 0 320px;
}

.blog-newsletter-form input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  background: var(--surface);
  color: var(--ink);
  margin-bottom: 12px;
  box-sizing: border-box;
}

.blog-newsletter-form button {
  width: 100%;
  padding: 14px 20px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.blog-newsletter-form button:hover {
  opacity: 0.85;
}

.blog-newsletter-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.blog-newsletter-status {
  min-height: 20px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.blog-newsletter-content {
  flex: 1;
}

.blog-newsletter-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--teal);
  margin: 0 0 8px;
}

.blog-newsletter-content p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

[data-theme="dark"] .blog-newsletter {
  background: #1a2826;
}

[data-theme="dark"] .blog-newsletter-form input {
  background: #0e1a18;
  border-color: #2a3a38;
  color: #c8ddd9;
}

[data-theme="dark"] .blog-newsletter-status {
  color: #8fa8a3;
}

[data-theme="dark"] .blog-newsletter-content h3 {
  color: #4fd1cc;
}

/* Composite product image (full-width, replaces split layout) */
.blog-product-composite {
  margin: 48px 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.blog-product-composite .blog-product-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-product-composite img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  margin: 0 auto 24px;
}

[data-theme="dark"] .blog-product-composite .blog-product-title {
  color: #4fd1cc;
}

/* Cold-pressed oil product card */
.cold-product-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin: 36px 0;
  padding: 24px 0;
}

.cold-product-card.reverse {
  flex-direction: row-reverse;
}

.cold-product-card-img {
  flex: 0 0 220px;
  text-align: center;
}

.cold-product-card-img img {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.cold-product-card-text {
  flex: 1;
}

.cold-product-card-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 10px;
}

.cold-product-card-text p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

[data-theme="dark"] .cold-product-card-text h4 {
  color: #4fd1cc;
}

[data-theme="dark"] .cold-product-card-text p {
  color: #c8ddd9;
}

/* Sizes illustration */
.blog-sizes-img {
  text-align: center;
  margin: 32px 0;
}

.blog-sizes-img img {
  max-width: 460px;
  width: 100%;
  object-fit: contain;
}

/* Article full-width image block */
.article-full-img {
  margin: 32px 0;
  border-radius: 16px;
  overflow: hidden;
}

.article-full-img img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

/* ==========================================================
   TABLET: 768px — 1023px
   ========================================================== */
@media (max-width: 1023px) {
  :root {
    --container: calc(100% - 48px);
  }

  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  body {
    font-size: 17px;
  }

  /* ---- Header ---- */
  .burger-btn {
    display: flex;
  }

  .header-inner {
    padding: 0 24px;
    height: 64px;
    justify-content: space-between;
    gap: 12px;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: rgba(7, 95, 92, 0.67);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 32px 40px;
    gap: 0;
    overflow-y: auto;
  }

  .main-nav.mobile-open {
    display: flex;
  }

  /* When menu is open, header must expand to contain the fixed nav overlay */
  body.menu-open .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    z-index: 40;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .main-nav > a {
    padding: 16px 0;
    font-size: 18px;
  }

  .nav-dropdown {
    position: static;
  }

  .nav-dropdown-toggle {
    display: flex;
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    left: auto;
    min-width: auto;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 8px 20px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    translate: none;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.submenu-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
    padding: 8px 0 8px 20px;
  }

  .nav-dropdown-menu a {
    padding: 10px 0 !important;
    font-size: 16px;
    border-bottom: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }

  .nav-dropdown.submenu-open .nav-dropdown-menu,
  .nav-dropdown.submenu-open:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
  }

  .dropdown-arrow {
    margin-left: auto;
  }

  .nav-dropdown.submenu-open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown:hover .dropdown-arrow {
    transform: none;
  }

  .nav-dropdown.submenu-open:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  .header-tools {
    gap: 12px;
  }

  /* Search */
  .search-wrapper {
    position: static;
  }

  .search-wrapper.open {
    flex: 0 1 auto;
    max-width: 220px;
  }

  .search-inline {
    position: static;
    opacity: 0;
    visibility: hidden;
    width: 0;
    padding: 0;
    translate: none;
    box-shadow: none;
    transition: opacity 0.2s ease, width 0.2s ease;
  }

  .search-wrapper.open .search-inline {
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding: 8px 12px;
    translate: none;
    box-shadow: none;
    background: #d6d8d6;
    color: #222;
    font-size: 14px;
    border-radius: 8px;
    border: none;
  }

  .search-wrapper.open .search-inline::placeholder {
    color: #777;
  }

  [data-theme="dark"] .search-wrapper.open .search-inline {
    background: #2a3836;
    color: #e4ece9;
  }

  [data-theme="dark"] .search-wrapper.open .search-inline::placeholder {
    color: #6a7a76;
  }

  /* ---- Hero ---- */
  .hero-content.two-column {
    gap: 30px;
    padding: 0 36px;
  }

  .hero-logo {
    width: 200px;
  }

  .hero h1,
  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-actions .btn {
    min-width: auto;
    padding: 16px 28px;
    font-size: 19px;
  }

  /* ---- Sections ---- */
  .section {
    padding: 70px 0;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    font-size: 20px;
  }

  .section-title.wide {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Intro */
  .intro-section {
    padding-top: 90px;
  }

  .narrow-copy {
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    font-size: 20px;
  }

  /* ---- Reasons ---- */
  .reason-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 24px;
  }

  .reason-card {
    min-height: 220px;
    padding: 24px 20px 18px;
  }

  .reason-metric {
    font-size: 52px;
  }

  /* ---- Solutions ---- */
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 24px;
    padding: 0 24px;
  }

  .solution-card {
    min-height: 480px;
    padding: 60px 24px 28px;
    display: flex;
    flex-direction: column;
  }

  .solution-card .strong {
    flex-grow: 1;
  }

  .solution-card .btn {
    margin-top: auto;
    align-self: center;
  }

  /* ---- Categories (carousel) ---- */
  .category-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 0 24px;
    scrollbar-width: none;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    min-width: 46%;
    max-width: 46%;
    scroll-snap-align: start;
    flex-shrink: 0;
    box-sizing: border-box;
    border-radius: 12px;
    overflow: hidden;
  }

  /* Carousel nav for tablet */
  .carousel-wrap {
    position: relative;
  }

  .carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 0 0;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--teal);
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
  }

  .carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #a0b5b0;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    border: none;
  }

  .carousel-dot.active {
    background: var(--teal);
    transform: scale(1.3);
  }

  [data-theme="dark"] .carousel-dot {
    background: #4a5f5a;
  }

  [data-theme="dark"] .carousel-dot.active {
    background: var(--gold);
  }

  /* ---- Process ---- */
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 24px;
  }

  .process-step {
    padding: 20px;
    text-align: center;
  }

  /* ---- Facility band ---- */
  .facility-band {
    min-height: 250px;
  }

  .image-band img {
    width: 200px;
  }

  /* ---- Quality badges ---- */
  .quality-cards {
    flex-wrap: wrap;
    gap: 16px;
    padding: 30px 24px;
  }

  /* ---- Export ---- */
  .export-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 24px;
    gap: 20px;
  }

  .export-card {
    width: calc(50% - 10px);
    box-sizing: border-box;
  }

  .shipping-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 24px;
    gap: 20px;
  }

  .shipping-card {
    width: calc(50% - 10px);
    box-sizing: border-box;
  }

  /* ---- Contact ---- */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-heading {
    padding: 0 24px;
  }

  .contact-heading h2 {
    font-size: 34px;
  }

  .contact-benefits {
    display: none;
  }

  .lead-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

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

  /* ---- Footer ---- */
  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px;
    padding: 50px 24px 0;
  }

  .footer-logo {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-logo img {
    width: 140px;
    margin: 0 auto 12px;
  }

  .socials {
    justify-content: center;
    margin-top: 16px;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col a,
  .footer-col span {
    font-size: 14px;
  }

  /* ---- Modal ---- */
  .modal-container {
    width: 90vw;
    max-width: 700px;
  }

  /* ---- Products page ---- */
  .line-hero > img {
    min-height: 250px;
  }

  .line-copy {
    width: 60%;
    padding: 24px 28px;
  }

  .line-copy h2 {
    font-size: 34px;
  }

  .pack-grid {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .line-details {
    padding: 0 24px;
  }

  .line-features {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 24px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 200px;
    border-radius: 14px 14px 0 0;
  }

  .product-card > div {
    padding: 18px 20px;
  }

  .product-img-wrap {
    height: auto;
    overflow: visible;
  }

  .product-img-wrap img {
    object-fit: contain;
    max-height: 300px;
  }

  .line-cta {
    padding: 0 24px;
  }

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


  /* ---- Blog page tablet ---- */
  .blog-container {
    padding: 0 24px;
  }

  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .blog-product-row {
    gap: 24px;
  }

  .blog-product-pack {
    flex: 0 0 200px;
  }

  .article-header--split {
    flex-direction: column;
    gap: 20px;
  }

  .article-header--split .article-hero-img {
    flex: none;
    max-width: 100%;
  }

  .article-hero-img img {
    max-height: 350px;
  }

  .article-title {
    font-size: 28px;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured .blog-card {
    flex-direction: column;
    min-height: auto;
  }

  .blog-featured .blog-card-img {
    flex: none;
    height: 220px;
    min-height: auto;
  }

  .blog-newsletter {
    flex-direction: column;
    padding: 28px;
  }

  .blog-newsletter-form {
    flex: none;
    width: 100%;
  }

  .cold-product-card,
  .cold-product-card.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cold-product-card-img {
    flex: none;
  }

  /* ---- Scroll cue ---- */
  .scroll-cue {
    width: 150px;
    height: 44px;
  }

  .scroll-cue .scroll-rd {
    width: 150px;
    height: 44px;
  }
}

/* ==========================================================
   MOBILE: max 767px
   ========================================================== */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }


  :root {
    --container: calc(100% - 32px);
  }

  .section,
  .intro-section,
  .contact-section,
  .export-section,
  .site-footer,
  .hero {
    overflow-x: hidden;
  }

  body {
    font-size: 14px;
  }

  /* Header */
  .burger-btn {
    display: flex;
  }

  .header-inner {
    padding: 0 16px;
    height: 56px;
    justify-content: space-between;
    gap: 8px;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: rgba(7, 95, 92, 0.67);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 24px 40px;
    gap: 0;
    overflow-y: auto;
  }

  .main-nav.mobile-open {
    display: flex;
  }

  .main-nav > a,
  .main-nav > .nav-dropdown {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .main-nav > a {
    padding: 16px 0;
    font-size: 18px;
  }

  .nav-dropdown {
    position: static;
  }

  .nav-dropdown-toggle {
    display: flex;
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    left: auto;
    min-width: auto;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 8px 20px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    translate: none;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.submenu-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
    padding: 8px 0 8px 20px;
  }

  .nav-dropdown-menu a {
    padding: 10px 0 !important;
    font-size: 16px;
    border-bottom: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }

  .nav-dropdown.submenu-open .nav-dropdown-menu,
  .nav-dropdown.submenu-open:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
  }

  .dropdown-arrow {
    margin-left: auto;
  }

  .nav-dropdown.submenu-open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown:hover .dropdown-arrow {
    transform: none;
  }

  .nav-dropdown.submenu-open:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  .header-tools {
    gap: 10px;
  }

  /* Search */
  .search-wrapper {
    position: static;
  }

  .search-wrapper.open {
    flex: 0 1 auto;
    max-width: 190px;
  }

  .search-inline {
    position: static;
    opacity: 0;
    visibility: hidden;
    width: 0;
    padding: 0;
    translate: none;
    box-shadow: none;
    transition: opacity 0.2s ease, width 0.2s ease;
  }

  .search-wrapper.open .search-inline {
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding: 7px 10px;
    translate: none;
    box-shadow: none;
    background: #d6d8d6;
    color: #222;
    font-size: 13px;
    border-radius: 8px;
    border: none;
  }

  .search-wrapper.open .search-inline::placeholder {
    color: #777;
  }

  [data-theme="dark"] .search-wrapper.open .search-inline {
    background: #2a3836;
    color: #e4ece9;
  }

  [data-theme="dark"] .search-wrapper.open .search-inline::placeholder {
    color: #6a7a76;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
  }

  .two-column {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 20px;
  }

  .hero-content.two-column {
    text-align: left;
    padding: 0 20px;
    gap: 20px;
  }

  .hero-logo-wrap {
    display: flex;
    justify-content: center;
    order: -1;
  }

  .hero-logo {
    width: 140px;
  }

  .hero h1,
  .hero-copy h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  .hero-copy p {
    font-size: 14px;
    text-align: left;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: auto;
    text-align: center;
    padding: 16px 20px;
    font-size: 17px;
    box-sizing: border-box;
  }

  /* Scroll cue */
  .scroll-cue {
    width: 120px;
    height: 38px;
    bottom: -2px;
  }

  .scroll-cue .scroll-rd {
    width: 120px;
    height: 36px;
  }

  .scroll-cue .scroll-arrow {
    width: 22px;
    height: 12px;
  }

  .scroll-cue .scroll-rd {
    bottom: -1px;
  }

  /* Sections */
  .section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 22px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 16px;
  }

  .section-title p {
    font-size: 14px;
    padding: 0 16px;
  }

  .section-title.wide {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .sun-mark {
    width: 28px;
    height: 28px;
  }

  /* Intro */
  .intro-section {
    padding: 40px 0;
  }

  .narrow-copy {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    font-size: 16px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Reasons */
  .reason-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0;
    scrollbar-width: none;
  }

  .reason-grid::-webkit-scrollbar {
    display: none;
  }

  .reason-card {
    min-width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    min-height: auto;
    padding: 24px 20px 20px;
    scroll-snap-align: center;
    flex-shrink: 0;
    margin: 0 8px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .reason-metric {
    font-size: 40px;
    margin-top: 12px;
  }

  .reason-card:hover {
    transform: none;
    box-shadow: none;
  }

  /* Solutions */
  .solution-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 60px 0 0 0;
    scrollbar-width: none;
    clip-path: none;
  }

  .solution-grid::-webkit-scrollbar {
    display: none;
  }

  .solution-card {
    min-width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    min-height: 320px;
    padding: 50px 20px 24px;
    scroll-snap-align: center;
    flex-shrink: 0;
    margin: 0 8px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .solution-card:hover {
    transform: none;
    box-shadow: none;
  }

  .solution-card .strong {
    flex-grow: 1;
  }

  .solution-card .btn {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: auto;
    align-self: center;
  }

  /* Facility band */
  .facility-band,
  .image-band {
    min-height: 180px;
    overflow: hidden;
  }

  .image-band img {
    width: 150px;
  }

  /* Categories */
  .category-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 32px;
    scrollbar-width: none;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    min-width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    scroll-snap-align: center;
    flex-shrink: 0;
    margin: 0;
    box-sizing: border-box;
    border-radius: 12px;
    overflow: hidden;
  }

  /* Process */
  .process-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;
    text-align: left;
    padding: 18px 18px 20px;
    border-radius: 14px;
    box-sizing: border-box;
  }

  .process-step:nth-child(1) {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  }
  .process-step:nth-child(2) {
    background: linear-gradient(135deg, #e0f2f1 0%, #e8f6f3 100%);
  }
  .process-step:nth-child(3) {
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f4fd 100%);
  }
  .process-step:nth-child(4) {
    background: linear-gradient(135deg, #fff8e1 0%, #fff9e8 100%);
  }
  .process-step:nth-child(5) {
    background: linear-gradient(135deg, #fce4ec 0%, #fef0f3 100%);
  }
  .process-step:nth-child(6) {
    background: linear-gradient(135deg, #ede7f6 0%, #f3eefb 100%);
  }

  [data-theme="dark"] .process-step:nth-child(1) {
    background: linear-gradient(135deg, #1b3a1e 0%, #1e3520 100%);
  }
  [data-theme="dark"] .process-step:nth-child(2) {
    background: linear-gradient(135deg, #163230 0%, #1a3634 100%);
  }
  [data-theme="dark"] .process-step:nth-child(3) {
    background: linear-gradient(135deg, #182c3a 0%, #1c3040 100%);
  }
  [data-theme="dark"] .process-step:nth-child(4) {
    background: linear-gradient(135deg, #332c14 0%, #3a3218 100%);
  }
  [data-theme="dark"] .process-step:nth-child(5) {
    background: linear-gradient(135deg, #331a22 0%, #3a1e28 100%);
  }
  [data-theme="dark"] .process-step:nth-child(6) {
    background: linear-gradient(135deg, #261e38 0%, #2c2240 100%);
  }

  .process-step .circle-icon {
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .process-step h3 {
    margin: 0;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: end;
  }

  .process-step p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Quality */
  .quality-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    gap: 0;
    padding: 24px 0;
    scrollbar-width: none;
  }

  .quality-cards::-webkit-scrollbar {
    display: none;
  }

  .cert-card {
    min-width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    padding: 16px;
    scroll-snap-align: center;
    flex-shrink: 0;
    margin: 0 8px;
    box-sizing: border-box;
  }

  /* Export */
  .export-section {
    padding: 50px 0;
  }

  .export-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0;
    scrollbar-width: none;
  }

  .export-cards::-webkit-scrollbar {
    display: none;
  }

  .export-card {
    min-width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    min-height: auto;
    padding: 24px 20px;
    scroll-snap-align: center;
    flex-shrink: 0;
    margin: 0 8px;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .export-card:hover {
    transform: none;
    box-shadow: none;
  }

  .shipping-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 30px auto -40px;
    padding: 0 16px;
    gap: 12px;
  }

  .shipping-card {
    min-height: auto;
    padding: 20px;
  }

  /* Contact */
  .contact-section {
    padding: 60px 0;
    background: var(--teal);
  }

  [data-theme="dark"] .contact-section {
    background: var(--teal-dark);
  }

  .contact-heading {
    margin-bottom: 32px;
    padding: 0 16px;
  }

  .contact-heading h2 {
    font-size: 24px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .contact-benefits {
    display: none;
  }

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

  .lead-form {
    padding: 20px 16px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

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

  .form-field input,
  .form-field select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .lead-form .btn {
    width: 100%;
    box-sizing: border-box;
  }

  .form-privacy {
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 8px;
  }

  /* Modal */
  .modal-container {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    overflow-y: auto;
  }

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

  .modal-close {
    width: 44px;
    height: 44px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 20px 0;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo img {
    width: 140px;
    margin: 0 auto;
  }

  .socials {
    justify-content: center;
  }

  .footer-col h3 {
    font-size: 16px;
  }

  .footer-col a,
  .footer-col span {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 20px 16px;
  }

  /* ---- Products page mobile ---- */

  /* Product line hero */
  .line-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    overflow: visible;
  }

  .line-hero > img {
    min-height: 220px;
    object-fit: cover;
    object-position: left center;
    border-radius: 0;
  }

  .line-copy {
    width: 100%;
    padding: 20px 16px;
    position: relative;
    box-sizing: border-box;
    background: none;
    color: #2f3d3c;
  }

  .line-copy h2 {
    font-size: 22px;
    color: #2f3d3c;
    text-shadow: none;
  }

  .line-copy h3 {
    font-size: 13px;
    color: var(--teal);
    text-shadow: none;
  }

  .line-copy p {
    font-size: 14px;
    color: #4f5b59;
    text-shadow: none;
  }

  .line-copy .btn {
    min-width: auto;
    width: 100%;
    text-align: center;
    color: var(--teal);
    border-color: var(--teal);
  }

  [data-theme="dark"] .line-copy {
    background: none;
    color: #c8ddd9;
  }

  [data-theme="dark"] .line-copy h2 {
    color: #e4ece9;
  }

  [data-theme="dark"] .line-copy h3 {
    color: #4fd1cc;
  }

  [data-theme="dark"] .line-copy p {
    color: #a0b5b0;
  }

  [data-theme="dark"] .line-copy .btn {
    color: #4fd1cc;
    border-color: #4fd1cc;
  }

  /* Packaging */
  .packaging {
    padding: 20px 16px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .packaging h4 {
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .pack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
    padding-bottom: 8px;
    justify-content: center;
    max-width: 100%;
  }

  .pack-item {
    flex-shrink: 0;
    min-width: 56px;
    text-align: center;
  }

  .pack-icon {
    width: 42px;
    height: 42px;
  }

  /* Line details */
  .line-details {
    padding: 0 16px;
    gap: 16px;
  }

  .line-features {
    grid-template-columns: 1fr;
  }

  .line-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .stat-card {
    padding: 12px 16px;
  }

  /* Product cards */
  .product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 16px;
    scrollbar-width: none;
  }

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

  .product-card {
    grid-template-columns: 1fr;
    min-width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .product-img-wrap {
    border-radius: 0;
    height: auto;
    overflow: visible;
  }

  .product-img-wrap img,
  .product-card img {
    height: auto;
    max-height: 300px;
    object-fit: contain;
    object-position: center center;
  }

  .product-card img {
    height: 260px;
    border-radius: 0;
  }

  .product-card > div {
    padding: 16px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .product-meta {
    font-size: 12px;
  }



  .volume-tags {
    gap: 6px;
  }

  .volume-tag {
    padding: 4px 10px;
    font-size: 12px;
  }

  .line-cta {
    padding: 0 16px;
  }

  .line-cta .btn {
    width: 100%;
  }

  /* Disable hover effects on touch */
  .reason-card:hover,
  .solution-card:hover,
  .export-card:hover,
  .shipping-card:hover {
    transform: none;
    box-shadow: none;
  }

  /* Carousel navigation */
  .carousel-wrap {
    position: relative;
  }

  .carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 0 0;
  }

  .carousel-arrow {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--teal);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
  }

  .carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #a0b5b0;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    border: none;
  }

  .carousel-dot.active {
    background: var(--teal);
    transform: scale(1.3);
  }

  /* Footer column order on mobile */
  .footer-inner {
    display: flex;
    flex-direction: column;
  }

  .footer-col-products { order: 1; }
  .footer-col-company { order: 2; }
  .footer-col-contacts { order: 3; }
  .footer-col-address { order: 4; }
  .footer-col-partner { order: 5; }

  [data-theme="dark"] .carousel-dot {
    background: #4a5f5a;
  }


  /* ---- Blog page mobile ---- */
  .blog-container {
    padding: 0 16px;
  }

  .blog-breadcrumb {
    padding: 16px 0;
    font-size: 13px;
  }

  .blog-article {
    padding: 30px 0 20px;
  }

  .article-header--split {
    flex-direction: column;
    gap: 12px;
  }

  .article-header--split .article-hero-img {
    flex: none;
    max-width: 100%;
  }

  .article-hero-img img {
    max-height: 220px;
  }

  .article-title {
    font-size: 22px;
  }

  .article-text {
    font-size: 15px;
  }

  .blog-product-row {
    flex-direction: column;
    gap: 20px;
  }

  .blog-product-img {
    min-height: 180px;
  }

  .blog-product-pack {
    flex: none;
    width: 100%;
  }

  .blog-pack-item img {
    width: 44px;
    height: 44px;
  }

  .blog-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card-img {
    height: 180px;
  }

  .blog-featured {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .blog-featured .blog-card {
    flex-direction: column;
    min-height: auto;
  }

  .blog-featured .blog-card-img {
    flex: none;
    height: 180px;
    min-height: auto;
  }

  .blog-newsletter {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    margin-top: 40px;
  }

  .blog-newsletter-form {
    flex: none;
    width: 100%;
  }

  .blog-product-composite img {
    max-height: 220px;
  }

  .cold-product-card,
  .cold-product-card.reverse {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cold-product-card-img {
    flex: none;
    width: 160px;
  }

  .blog-sizes-img img {
    max-width: 300px;
  }

  [data-theme="dark"] .carousel-dot.active {
    background: var(--gold);
  }
}

/* ==========================================================
   LANDSCAPE PHONE: short viewport + narrow
   ========================================================== */
@media (max-width: 1023px) and (orientation: landscape) and (max-height: 500px) {
  /* Fix 1: Hero — don't force full height in landscape */
  .hero {
    min-height: auto;
    height: auto;
    padding: 80px 0 40px;
  }

  .hero-compact {
    min-height: auto;
    padding: 60px 0 30px;
  }

  /* Fix 2: Burger menu — reduce top padding */
  .main-nav {
    padding-top: 56px;
  }

  /* Hero content */
  .hero-logo {
    width: 100px;
  }

  .hero h1,
  .hero-copy h1 {
    font-size: 22px;
  }

  .hero-copy p {
    font-size: 13px;
  }

  .hero-actions .btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  /* Scroll cue */
  .scroll-cue {
    display: none;
  }

  /* Sections */
  .section {
    padding: 40px 0;
  }

  /* Facility band */
  .facility-band,
  .image-band {
    min-height: 140px;
  }
}

/* ==========================================================
   TOUCH DEVICES: pointer coarse — fix hover dropdowns
   ========================================================== */
@media (pointer: coarse) {
  /* Fix 5+6: Disable hover-based dropdowns on touch */
  .lang-wrapper:hover .lang-dropdown {
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }
}

/* ==========================================================
   BLOG LISTING — tablet + mobile padding
   ========================================================== */
@media (max-width: 1023px) {
  .blog-listing {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .blog-listing {
    padding: 30px 0;
  }
}

/* Touch-open fallback for lang dropdown */
.lang-dropdown.touch-open {
  display: flex !important;
  flex-direction: column;
  gap: 2px;
}

/* Nav dropdown touch fallback for wide touch screens (iPad Pro etc) */
@media (pointer: coarse) and (min-width: 1024px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.submenu-open .nav-dropdown-menu {
    display: block;
  }
}

/* Scroll-to-top button */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 15;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--teal-dark);
}

[data-theme="dark"] .scroll-top {
  background: #4fd1cc;
  color: #0f1a18;
}

[data-theme="dark"] .scroll-top:hover {
  background: #3bbfba;
}

@media (max-width: 767px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
