:root {
  --ink: #14213d;
  --muted: #667085;
  --brand: #0c5d56;
  --brand2: #0a4540;
  --accent: #d9aa55;
  --bg: #f6f8f8;
  --line: #e4e7ec;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(20, 33, 61, .10)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto
}

.topbar {
  background: #0b2e2b;
  color: #dce9e7;
  font-size: 12px
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  gap: 20px
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  z-index: 30;
  border-bottom: 1px solid rgba(228, 231, 236, .7)
}

.nav-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 28px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -1px
}

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.05
}

.brand small {
  display: block;
  letter-spacing: 4px;
  font-size: 9px;
  color: var(--muted);
  margin-top: 3px
}

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

.main-nav a {
  font-size: 14px;
  font-weight: 600
}

.main-nav a:hover {
  color: var(--brand)
}

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

.translate-box {
  max-width: 150px
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  padding: 13px 20px;
  border-radius: 12px;
  font: 600 14px Poppins;
  cursor: pointer;
  transition: .2s
}

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

.btn-sm {
  padding: 9px 14px;
  font-size: 12px
}

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

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

.hero {
  background: linear-gradient(180deg, #eff6f4 0, #fff 100%);
  position: relative;
  overflow: hidden
}

.slide {
  display: none;
  padding: 72px 0 58px
}

.slide.active {
  display: block
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 70px
}

.hero h1,
.hero h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin: 12px 0 20px
}

.hero h2 {
  font-size: clamp(38px, 4.6vw, 60px)
}

.hero p {
  font-size: 18px;
  color: #465467;
  max-width: 650px
}

.hero img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
  background: #fff
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px
}

.hero-actions.center {
  justify-content: center
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand)
}

.eyebrow.light {
  color: #bfe0db
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #bfd2cf
}

.slider-dots .active {
  width: 24px;
  border-radius: 10px;
  background: var(--brand)
}

.section {
  padding: 88px 0
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px
}

.section-heading h2,
.page-hero h1,
.two-col h2,
.cta h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin: 10px 0
}

.section-heading p,
.page-hero p {
  color: var(--muted)
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.collection-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: .25s
}

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

.collection-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #f2f4f7
}

.collection-card>div {
  padding: 18px
}

.collection-card h3,
.collection-card h2 {
  margin: 0 0 6px;
  font-size: 18px
}

.collection-card span,
.collection-card p {
  font-size: 12px;
  color: var(--muted)
}

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

.collection-card.static {
  display: grid;
  grid-template-columns: 220px 1fr
}

.collection-card.static img {
  height: 100%;
  aspect-ratio: auto
}

.collection-card.static h2 {
  font-size: 24px
}

.dark-section {
  background: #102c2a;
  color: #fff
}

.feature-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center
}

.feature-grid h2 {
  font-size: 44px;
  line-height: 1.15
}

.feature-grid p {
  color: #c8d6d4
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.feature-list div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04)
}

.feature-list strong {
  display: block;
  font-size: 26px
}

.feature-list span {
  color: #c8d6d4;
  font-size: 13px
}

.cta {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--bg)
}

.cta h2 {
  font-size: 34px
}

.page-hero {
  padding: 76px 0;
  background: linear-gradient(135deg, #eef5f4, #fafcfb);
  border-bottom: 1px solid var(--line)
}

.page-hero .container {
  max-width: 900px;
  margin-left: max(20px, calc((100vw - 1180px)/2))
}

.page-hero.compact {
  padding: 58px 0
}

.two-col {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px
}

.two-col p {
  color: #536273
}

.info-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0
}

.check-list li {
  padding: 8px 0 8px 28px;
  position: relative
}

.check-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 800
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.filter-chip,
.sub-filter {
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 13px;
  border-radius: 999px;
  font: 500 12px Poppins;
  cursor: pointer
}

.filter-chip.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand)
}

.product-layout {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 28px
}

.category-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  height: max-content;
  position: sticky;
  top: 100px
}

.category-panel h3 {
  margin-top: 0
}

.category-panel details {
  border-top: 1px solid var(--line);
  padding: 10px 0
}

.category-panel summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 13px
}

.category-panel details div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 10px
}

.sub-filter {
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 10px
}

.product-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px
}

.product-tools input {
  width: min(520px, 100%);
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: 400 13px Poppins
}

.product-tools span {
  font-size: 12px;
  color: var(--muted)
}

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

.product-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff
}

.product-card[hidden] {
  display: none
}

.product-image {
  background: #f7f8fa;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  padding: 10px
}

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

.product-body {
  padding: 16px
}

.product-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand);
  font-weight: 700
}

.product-body h3 {
  font-size: 16px;
  line-height: 1.35;
  margin: 6px 0
}

.code {
  font: 600 11px Poppins;
  color: #7b8794
}

.tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  margin: 15px 0 10px
}

.tab-btn {
  border: 0;
  background: none;
  padding: 7px 0;
  margin-right: 12px;
  font: 600 11px Poppins;
  color: var(--muted);
  cursor: pointer
}

.tab-btn.active {
  color: var(--brand);
  border-bottom: 2px solid var(--brand)
}

.tab-panel {
  display: none;
  font-size: 11px;
  color: #5b6573;
  min-height: 74px
}

.tab-panel.active {
  display: block
}

.tab-panel ul {
  padding-left: 18px;
  margin: 0
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px
}

.text-link {
  color: var(--brand);
  font-weight: 600;
  font-size: 11px
}

.sync-note {
  margin-top: 28px;
  padding: 16px;
  border-radius: 12px;
  background: #fff8e9;
  border: 1px solid #f0d29e;
  font-size: 12px
}

.contact-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 32px
}

.contact-info {
  display: grid;
  gap: 14px
}

.contact-info .info-card {
  padding: 20px
}

.contact-info h3 {
  margin-top: 0
}

.contact-info p {
  color: var(--muted);
  font-size: 13px
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow)
}

.form-card h2 {
  margin: 6px 0 20px
}

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

.form-grid label {
  font-size: 11px;
  font-weight: 600
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: 400 13px Poppins;
  outline: none
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(12, 93, 86, .08)
}

.full {
  grid-column: 1/-1
}

.alert {
  background: #fff0f0;
  border: 1px solid #ffcaca;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 12px
}

.thankyou {
  text-align: center;
  min-height: 60vh;
  display: grid;
  place-items: center
}

.thankyou .container {
  max-width: 700px
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f5f1;
  color: var(--brand);
  font-size: 32px;
  margin: 0 auto 18px
}

.footer {
  background: #0d1e1d;
  color: #d7e0df;
  padding: 60px 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .6fr .9fr;
  gap: 50px
}

.footer h3 {
  font-size: 14px;
  color: #fff
}

.footer a,
.footer p {
  display: block;
  color: #aebcba;
  font-size: 12px;
  margin: 6px 0
}

.footer-brand strong {
  color: #fff
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 30px;
  padding-top: 20px;
  color: #81908e;
  font-size: 11px
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none
}

.modal.show {
  display: block
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 15, .62);
  backdrop-filter: blur(4px)
}

.modal-panel {
  position: relative;
  background: #fff;
  width: min(720px, calc(100% - 28px));
  max-height: 90vh;
  overflow: auto;
  margin: 5vh auto;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .25)
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: #f2f4f7;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px
}

.modal-panel h2 {
  margin: 6px 0
}

.modal-panel>p {
  color: var(--muted);
  font-size: 13px
}

.modal-open {
  overflow: hidden
}

@media(max-width:980px) {
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow)
  }

  .main-nav.open {
    display: flex
  }

  .nav-toggle {
    display: block
  }

  .actions .translate-box {
    display: none
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px
  }

  .hero-grid img {
    max-width: 600px
  }

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

  .feature-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .product-layout {
    grid-template-columns: 1fr
  }

  .category-panel {
    position: static
  }

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

@media(max-width:640px) {
  .container {
    width: min(100% - 28px, 1180px)
  }

  .topbar-inner span:last-child {
    display: none
  }

  .nav-wrap {
    height: 70px
  }

  .actions .btn {
    display: none
  }

  .slide {
    padding: 52px 0
  }

  .hero h1,
  .hero h2 {
    letter-spacing: -1.5px
  }

  .hero p {
    font-size: 15px
  }

  .section {
    padding: 62px 0
  }

  .collection-grid,
  .collection-grid.large,
  .product-grid,
  .feature-list {
    grid-template-columns: 1fr
  }

  .collection-card.static {
    grid-template-columns: 1fr
  }

  .collection-card.static img {
    height: auto
  }

  .feature-grid {
    gap: 38px
  }

  .feature-grid h2 {
    font-size: 34px
  }

  .cta {
    padding: 26px;
    align-items: flex-start;
    flex-direction: column
  }

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

  .full {
    grid-column: 1
  }

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

  .product-tools {
    align-items: flex-start;
    flex-direction: column
  }

  .modal-panel {
    padding: 24px
  }

  .page-hero {
    padding: 50px 0
  }
}

/* ===== Global language switcher ===== */
.google-translate-engine {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important
}

.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon {
  display: none !important
}

body {
  top: 0 !important
}

.skiptranslate iframe {
  visibility: hidden !important
}

.language-switcher {
  position: relative;
  z-index: 45
}

.language-button {
  height: 40px;
  min-width: 142px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font: 600 11px Poppins;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s
}

.language-button:hover,
.language-switcher.open .language-button {
  border-color: rgba(12, 93, 86, .45);
  box-shadow: 0 8px 24px rgba(12, 93, 86, .10)
}

.language-button .globe-icon {
  width: 17px;
  height: 17px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.7
}

.language-button .chevron-icon {
  width: 15px;
  height: 15px;
  margin-left: auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .2s
}

.language-switcher.open .chevron-icon {
  transform: rotate(180deg)
}

.language-current {
  max-width: 78px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 230px;
  max-height: 360px;
  overflow: auto;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(20, 33, 61, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-7px) scale(.98);
  transform-origin: top right;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  scrollbar-width: thin
}

.language-switcher.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1)
}

.language-menu-title {
  padding: 8px 10px 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px
}

.language-menu button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 9px 10px;
  border-radius: 9px;
  font: 500 12px Poppins;
  color: #344054;
  cursor: pointer;
  transition: .15s
}

.language-menu button:hover,
.language-menu button.active {
  background: #eef7f5;
  color: var(--brand)
}

/* ===== Mobile off-canvas navigation ===== */
.mobile-nav-head,
.mobile-nav-actions {
  display: none
}

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

.nav-overlay {
  display: none
}

.nav-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: .2s
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  display: block;
  transition: .25s
}

.nav-close {
  border: 0;
  background: #f3f6f6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink)
}

.nav-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 9px
}

.mobile-nav-brand strong {
  display: block;
  font-size: 13px;
  line-height: 1.05
}

.mobile-nav-brand small {
  display: block;
  letter-spacing: 3px;
  font-size: 8px;
  color: var(--muted);
  margin-top: 3px
}

.mobile-nav-brand .brand-mark {
  width: 39px;
  height: 39px;
  border-radius: 11px;
  font-size: 13px
}

@media(max-width:980px) {
  .nav-wrap {
    gap: 14px
  }

  .brand {
    margin-right: auto
  }

  .actions {
    margin-left: auto
  }

  .actions>.btn {
    display: none
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 61
  }

  .main-nav {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(390px, 88vw);
    height: 100dvh;
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: -24px 0 70px rgba(20, 33, 61, .20);
    z-index: 70;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .42s cubic-bezier(.22, .8, .26, 1), visibility .42s;
    overflow-y: auto;
    overscroll-behavior: contain
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    z-index: 2
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 18px 8px
  }

  .main-nav .nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #273548;
    opacity: 0;
    transform: translateX(26px);
    transition: background .2s, color .2s, opacity .35s ease, transform .35s ease
  }

  .main-nav .nav-links a:after {
    content: '›';
    position: absolute;
    right: 14px;
    font-size: 22px;
    font-weight: 400;
    color: #98a2b3
  }

  .main-nav .nav-links a:hover {
    background: #f0f7f5;
    color: var(--brand)
  }

  .main-nav.open .nav-links a {
    opacity: 1;
    transform: translateX(0)
  }

  .main-nav.open .nav-links a:nth-child(1) {
    transition-delay: .08s
  }

  .main-nav.open .nav-links a:nth-child(2) {
    transition-delay: .12s
  }

  .main-nav.open .nav-links a:nth-child(3) {
    transition-delay: .16s
  }

  .main-nav.open .nav-links a:nth-child(4) {
    transition-delay: .20s
  }

  .main-nav.open .nav-links a:nth-child(5) {
    transition-delay: .24s
  }

  .mobile-nav-actions {
    display: grid;
    gap: 14px;
    padding: 18px;
    margin-top: auto;
    border-top: 1px solid var(--line);
    background: #fafcfc
  }

  .mobile-nav-actions .btn {
    width: 100%
  }

  .mobile-contact-shortcut {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
    color: var(--muted)
  }

  .mobile-contact-shortcut a {
    font-weight: 700;
    color: var(--brand)
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(7, 20, 19, .56);
    backdrop-filter: blur(3px);
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s
  }

  .nav-overlay.show {
    opacity: 1;
    visibility: visible
  }

  body.nav-open {
    overflow: hidden
  }

  .actions .language-switcher {
    display: block
  }

  .language-button {
    min-width: 44px;
    width: 44px;
    padding: 0;
    justify-content: center
  }

  .actions .language-current,
  .actions .chevron-icon {
    display: none
  }

  .actions .language-menu {
    right: 0
  }

  .mobile-language-slot .language-switcher {
    width: 100%
  }

  .mobile-language-slot .language-button {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 0 13px
  }

  .mobile-language-slot .language-current,
  .mobile-language-slot .chevron-icon {
    display: block
  }

  .mobile-language-slot .language-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease, margin .3s ease
  }

  .mobile-language-slot .language-switcher.open .language-menu {
    max-height: 330px;
    padding: 8px;
    margin-top: 7px;
    border: 1px solid var(--line)
  }
}

@media(max-width:640px) {
  .site-header .brand strong {
    font-size: 14px
  }

  .site-header .brand small {
    letter-spacing: 3px
  }

  .site-header .brand-mark {
    width: 40px;
    height: 40px
  }

  .nav-wrap {
    height: 68px
  }

  .actions {
    gap: 8px
  }

  .language-button {
    height: 42px
  }

  .nav-toggle {
    width: 42px;
    height: 42px
  }

  .main-nav {
    width: min(360px, 91vw)
  }
}

/* MaxFresh Shop Button */
.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    background: #111827;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.shop-btn:hover {
    background: #e31e24;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* mobile shop btn */
.mobile-shop-btn {
    width: 100%;
    margin-top: 15px;
    padding: 14px 20px;
}

/* =========================================
   FIX MOBILE HORIZONTAL SCROLLING
========================================= */

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

/* Prevent sections from becoming wider than viewport */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

/* Important for flex/grid children */
.container,
.row,
.grid,
.product-grid,
.collection-grid,
.hero-inner,
.header-inner,
.nav-inner,
.footer-inner {
    min-width: 0;
    max-width: 100%;
}

/* Prevent long text/content from forcing page width */
.product-card,
.collection-card,
.hero-content,
.footer-col,
.form-group {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Mobile drawer must stay inside screen */
@media (max-width: 991px) {

    .mobile-nav,
    .mobile-menu,
    .nav-drawer,
    .mobile-drawer {
        width: min(88vw, 360px);
        max-width: 100%;
        right: 0;
        left: auto;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .product-grid,
    .collection-grid {
        width: 100%;
        max-width: 100%;
    }
}
/* Bulk order enhanced dropdowns + phone validation */
.form-grid select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: 400 13px Poppins, sans-serif;
  color: inherit;
  outline: none;
}

.form-grid select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(12, 93, 86, .08);
}

.form-grid input[readonly] {
  background: #f7f8f8;
  color: #5f666a;
  cursor: not-allowed;
}

.form-grid .iti {
  width: 100%;
  margin-top: 6px;
}

.form-grid .iti input {
  margin-top: 0;
}

.field-hint,
.field-error {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  line-height: 1.45;
}

.field-hint {
  color: var(--muted);
  font-weight: 400;
}

.field-error {
  color: #b42318;
  font-weight: 600;
}

.form-grid input.is-invalid {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, .08);
}

@media (max-width: 640px) {
  .form-card {
    padding: 22px 16px;
  }

  .form-grid select,
  .form-grid input,
  .form-grid textarea {
    font-size: 16px;
  }
}
