:root {
  --orange: #f28a16;
  --orange-dark: #c96c09;
  --orange-soft: #fff5ea;
  --green: #05afb5;
  --green-dark: #047b80;
  --green-soft: #ceeff0;
  --action: #233d4f;
  --ink: #23313b;
  --muted: #5f6b73;
  --line: #dce8ea;
  --soft: #f7fafb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(35, 61, 79, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: relative;
  z-index: 61;
}

.topbar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.navbar {
  position: relative;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(23, 33, 48, 0.08);
}

.navbar.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-placeholder {
  display: none;
  height: 72px;
}

.navbar-placeholder.is-active {
  display: block;
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 150px;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 48px;
  max-width: 150px;
  object-fit: contain;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 4px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(5, 175, 181, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 90;
  min-width: 210px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(23, 33, 48, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
  border-bottom: 1px solid rgba(4, 123, 128, 0.1);
}

.nav-dropdown-menu a:last-child {
  border-bottom: 0;
}

.nav-dropdown-menu a:hover {
  color: var(--white);
  background: var(--green);
}

.nav-cta,
.btn,
.quote-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
}

.nav-cta,
.btn-primary,
.quote-form button {
  color: var(--white);
  background: var(--action);
  box-shadow: 0 8px 18px rgba(35, 61, 79, 0.22);
}

.nav-cta:hover,
.btn-primary:hover,
.quote-form button:hover {
  background: var(--green);
}

.btn-outline {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--green);
}

.language-switcher {
  position: relative;
  z-index: 80;
  flex: 0 0 auto;
}

.language-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--action);
  font: 800 12px/1 "Montserrat", Arial, sans-serif;
  cursor: pointer;
}

.language-flag {
  font-size: 18px;
  line-height: 1;
}

.language-caret {
  color: var(--green);
  font-size: 12px;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 190px;
  display: none;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(35, 61, 79, 0.15);
}

.language-switcher.is-open .language-menu {
  display: grid;
  gap: 4px;
}

.language-menu button {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 700 13px/1 "Montserrat", Arial, sans-serif;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.is-active {
  background: var(--green-soft);
  color: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 3px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--soft);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 30%, rgba(255,255,255,0.35) 54%, rgba(255,255,255,0.02) 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(560px, 100%);
  min-width: 0;
  padding-bottom: 34px;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--green-dark);
}

.hero p {
  max-width: 520px;
  margin: 0 0 28px;
  font-size: 16px;
  color: #344154;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-stats {
  display: none;
}

.hero-stats div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.86);
  border-left: 4px solid var(--green);
  box-shadow: 0 10px 26px rgba(21, 41, 34, 0.08);
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: var(--green);
}

.hero-stats span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.trust-strip {
  background: var(--green-dark);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.trust-item {
  min-height: 150px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 10px;
  align-items: center;
  padding: 28px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: auto;
  height: auto;
  display: block;
  border: 0;
  border-radius: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  font-weight: 800;
  color: var(--white);
}

.trust-item h3 {
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.25;
}

.trust-item p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 86px 0;
  scroll-margin-top: 130px;
}

.quote-section {
  scroll-margin-top: 130px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translate3d(-46px, 0, 0);
}

.reveal-right {
  transform: translate3d(46px, 0, 0);
}

.reveal-up {
  transform: translate3d(0, 46px, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
  min-width: 0;
}

.section-heading p,
.about-copy > p,
.clients-grid > div > p {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2,
.clients h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  color: var(--ink);
}

.products {
  background: var(--white);
}

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

.product-card {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  border-radius: 4px;
  background: #d9dedb;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 100%;
  min-height: 275px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 42, 25, 0.72), rgba(5, 42, 25, 0.08) 58%);
}

.product-card div {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
}

.product-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 19px;
  line-height: 1.25;
}

.product-card a,
.product-card span {
  color: #ffcf80;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card span {
  display: inline-block;
}

.product-wide {
  grid-column: span 2;
}

.markets {
  background: var(--soft);
  padding-top: 74px;
}

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

.market-heading h2 {
  margin: 0;
  color: #1f2412;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
}

.market-heading p {
  margin: 4px 0 0;
  color: var(--green);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.market-card {
  position: relative;
  min-height: 315px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 34px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 37, 25, 0.7), rgba(21, 37, 25, 0.38)),
    var(--market-image) center / cover;
  isolation: isolate;
}

.market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(5, 175, 181, 0.38), transparent 30%),
    linear-gradient(0deg, rgba(35, 61, 79, 0.48), rgba(255, 255, 255, 0.08));
  z-index: -1;
}

.market-card::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.market-card h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.1;
}

.market-card p {
  max-width: 360px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
}

.market-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  background: var(--action);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.market-card:hover a {
  background: var(--green);
  transform: translateY(-2px);
}

.market-africa {
  --market-image: url("assets/map-africa.webp");
}

.market-southeast {
  --market-image: url("assets/map-southeast-asia.webp");
}

.market-south {
  --market-image: url("assets/map-south-asia.webp");
}

.about {
  background: var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.about-media {
  position: relative;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-media::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 58%;
  height: 46%;
  background: var(--green);
  z-index: -1;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-copy h2 {
  margin-bottom: 26px;
}

.feature-list {
  display: grid;
  gap: 17px;
}

.feature-list div {
  padding: 20px 22px;
  background: var(--white);
  border-left: 4px solid var(--green);
  box-shadow: 0 10px 30px rgba(16, 35, 27, 0.08);
}

.feature-list h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
}

.process {
  background: var(--white);
}

.advantage-section {
  background: var(--white);
}

.advantage-heading {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.advantage-heading h2 {
  color: var(--green-dark);
}

.advantage-heading p {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.advantage-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(35, 61, 79, 0.08);
}

.advantage-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.advantage-title span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  border-radius: 3px;
  font-size: 13px;
  line-height: 1;
}

.advantage-card h3 {
  margin: 0;
  color: var(--green);
  font-size: 20px;
  line-height: 1.2;
}

.advantage-card > p {
  min-height: 72px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.36;
}

.advantage-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.advantage-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.advantage-card li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.advantage-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.advantage-card a {
  align-self: center;
  margin-top: auto;
  min-height: 42px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.advantage-card a:hover {
  background: var(--action);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  box-shadow: 0 14px 32px rgba(21, 45, 38, 0.07);
}

.process-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: #eef7f1;
  color: var(--green);
  font-weight: 800;
  border-radius: 50%;
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.28;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.clients {
  background: var(--white);
  color: var(--ink);
}

.clients-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 28px;
  align-items: stretch;
}

.clients h2 {
  color: var(--green-dark);
}

.testimonial {
  padding: 28px;
  background: var(--soft);
  border: 1px solid rgba(22, 58, 42, 0.1);
  box-shadow: 0 14px 32px rgba(24, 45, 38, 0.08);
}

.testimonial img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

.testimonial blockquote {
  margin: 0 0 18px;
  color: var(--muted);
}

.testimonial strong {
  color: var(--action);
}

.quote-section {
  padding: 88px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(206, 239, 240, 0.84), rgba(247, 250, 251, 0.78)),
    url("assets/bg2.webp") center / cover;
  color: var(--ink);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 54px;
  align-items: center;
}

.quote-copy h2 {
  color: var(--green-dark);
  margin-bottom: 18px;
}

.quote-copy p {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.quote-copy ul {
  margin: 0;
  padding-left: 18px;
  color: var(--green-dark);
  font-weight: 600;
}

.quote-form {
  display: grid;
  gap: 13px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #d8dee5;
  border-radius: 2px;
  font: 500 14px/1.4 "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: #fbfcfd;
}

.quote-form textarea {
  min-height: 112px;
  padding-top: 13px;
  resize: vertical;
}

.quote-form button {
  width: 100%;
  border: 0;
}

.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-mark {
  width: 42px;
  height: 42px;
  font-size: 15px;
}

.footer p {
  margin: 0;
  font-size: 13px;
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
  font-size: 13px;
  font-weight: 800;
}

.whatsapp-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-toggle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.34);
  cursor: pointer;
}

.whatsapp-toggle svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.whatsapp-panel {
  width: min(310px, calc(100vw - 36px));
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(35, 61, 79, 0.18);
}

.whatsapp-panel[hidden] {
  display: none;
}

.whatsapp-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 15px;
}

.whatsapp-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.whatsapp-panel a + a {
  margin-top: 8px;
}

.whatsapp-panel a:hover {
  background: rgba(37, 211, 102, 0.13);
  color: var(--green-dark);
  transform: translateY(-1px);
}

.whatsapp-panel span,
.whatsapp-panel small {
  display: block;
}

.whatsapp-panel span {
  font-weight: 800;
}

.whatsapp-panel small {
  margin-top: 3px;
  color: var(--muted);
}

.category-hero {
  padding: 74px 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.78)),
    url("assets/hero.jpg") center / cover;
}

.category-hero h1 {
  margin: 0 0 12px;
  max-width: 780px;
  color: var(--green-dark);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.category-hero p {
  margin: 0;
  max-width: 610px;
  color: var(--ink);
  font-size: 17px;
}

.catalog-section {
  padding: 70px 0 92px;
  background: var(--white);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 104px;
  padding: 24px;
  background: var(--green-soft);
  border-left: 5px solid var(--green);
}

.catalog-sidebar h2 {
  margin: 0 0 18px;
  font-size: 20px;
  color: var(--action);
}

.catalog-sidebar a {
  display: block;
  padding: 11px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(4, 123, 128, 0.16);
}

.catalog-sidebar a:hover {
  color: var(--green);
}

.catalog-main {
  min-width: 0;
}

.catalog-search {
  display: block;
  margin-bottom: 24px;
}

.catalog-search span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 2px solid var(--line);
  border-radius: 4px;
  font: 600 15px/1.4 "Montserrat", Arial, sans-serif;
  outline: none;
}

.catalog-search input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(5, 175, 181, 0.12);
}

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

.catalog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 14px 32px rgba(21, 45, 38, 0.08);
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.catalog-card div {
  padding: 22px 22px 24px;
}

.catalog-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.22;
  transition: color 0.2s ease, transform 0.2s ease, font-size 0.2s ease;
  transform-origin: left center;
}

.catalog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog-card:hover h3,
.catalog-card.is-hovered h3 {
  color: var(--green);
  font-size: 24px;
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-link-card {
  color: inherit;
}

.summer-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.75)),
    url("assets/used-summer-clothes.webp") center / cover;
}

.summer-section {
  padding: 64px 0 90px;
  background: var(--white);
}

.summer-layout {
  display: block;
}

.summer-sidebar {
  top: 104px;
}

.summer-main {
  min-width: 0;
}

.summer-toolbar {
  position: sticky;
  top: 108px;
  z-index: 40;
  margin: 0 0 30px;
  padding: 18px 0 16px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(4, 123, 128, 0.12);
  backdrop-filter: blur(10px);
}

.summer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.summer-tabs button {
  min-height: 40px;
  padding: 0 18px;
  border: 2px solid var(--green);
  background: var(--white);
  color: var(--green-dark);
  border-radius: 3px;
  font: 800 13px/1 "Montserrat", Arial, sans-serif;
  cursor: pointer;
}

.summer-tabs button.is-active,
.summer-tabs button:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.summer-gallery {
  display: grid;
  gap: 46px;
}

.summer-group {
  scroll-margin-top: 120px;
}

.summer-group h2 {
  margin: 0 0 20px;
  padding-left: 14px;
  color: var(--action);
  font-size: 30px;
  line-height: 1.15;
  border-left: 5px solid var(--green);
}

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

.summer-product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(21, 45, 38, 0.08);
}

.summer-product-image {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.summer-product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f6f6f6;
  transition: transform 0.22s ease;
}

.summer-product-card:hover .summer-product-image img,
.summer-product-card.is-hovered .summer-product-image img {
  transform: scale(1.025);
}

.summer-product-info {
  position: relative;
  min-height: 112px;
  padding: 16px 14px 18px;
}

.summer-product-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  transition: color 0.2s ease, font-size 0.2s ease;
}

.summer-product-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.summer-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.summer-product-card strong {
  display: inline-flex;
  min-width: 46px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  background: var(--green);
  border-radius: 999px;
}

.summer-product-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  background: var(--green-soft);
  border: 1px solid rgba(0, 164, 174, 0.25);
  border-radius: 999px;
}

.summer-product-card:hover h3,
.summer-product-card.is-hovered h3 {
  color: var(--green);
  font-size: 20px;
}

.summer-empty {
  padding: 28px;
  color: var(--muted);
  background: var(--green-soft);
  border-left: 5px solid var(--green);
}

.summer-modal-open {
  overflow: hidden;
}

.summer-product-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.summer-product-modal.is-open {
  display: flex;
}

.summer-product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 31, 42, 0.72);
}

.summer-product-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 94vw);
  max-height: 90vh;
  overflow: auto;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.summer-product-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--action);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.summer-product-modal-panel img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #f4f6f6;
}

.summer-product-modal-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding: 18px 22px 22px;
}

.summer-product-modal-caption h2 {
  margin: 0;
  color: var(--action);
  font-size: 24px;
}

.summer-product-modal-caption p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.summer-product-modal-caption strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
}

.info-hero {
  padding: 84px 0 72px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(206, 239, 240, 0.84)),
    var(--soft);
}

.info-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: 54px;
  align-items: center;
}

.info-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--green-dark);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
}

.info-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
}

.info-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(4, 123, 128, 0.16);
  box-shadow: 0 18px 46px rgba(35, 61, 79, 0.16);
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.info-section {
  padding: 72px 0 90px;
  background: var(--white);
}

.info-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.info-facts div {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 22px;
  background: var(--green-dark);
  border-left: 5px solid var(--green);
}

.info-facts strong {
  color: var(--white);
  font-size: 19px;
  line-height: 1.25;
}

.info-facts .info-fact-detail {
  display: block;
  min-height: 150px;
  padding: 24px;
}

.info-fact-image {
  display: block;
  width: calc(100% + 48px);
  max-width: calc(100% + 48px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: -24px -24px 20px;
}

.info-fact-detail span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
}

.info-fact-detail p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.info-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 34px;
}

.info-split article,
.info-card-grid article,
.info-process {
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(35, 61, 79, 0.07);
}

.info-split article {
  padding: 30px;
}

.info-split h2,
.info-process h2 {
  margin: 0 0 14px;
  color: var(--action);
  font-size: 28px;
  line-height: 1.18;
}

.info-split p,
.info-card-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.info-block-heading {
  max-width: 860px;
  margin: 0 auto 24px;
  color: var(--action);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  text-align: center;
}

.info-card-grid article {
  padding: 24px;
  background: var(--white);
}

.info-card-image {
  width: calc(100% + 48px);
  max-width: calc(100% + 48px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: -24px -24px 18px;
  display: block;
}

.info-card-grid h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.25;
}

.info-process {
  padding: 32px;
  background: linear-gradient(180deg, var(--green-soft), var(--white));
}

.info-process > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.info-process article {
  min-height: 122px;
  padding: 22px;
  background: var(--white);
  border-left: 4px solid var(--green);
}

.info-process span {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.info-process strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
}

.info-process .info-image-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.info-image-step {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 0;
  box-shadow: 0 12px 28px rgba(35, 61, 79, 0.07);
}

.info-image-step img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.35s ease;
  transform-origin: center;
}

.info-image-step:hover img {
  transform: scale(1.045);
}

.info-image-step div {
  padding: 34px 28px 38px;
}

.info-image-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
}

.info-image-step h3 {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 24px;
  line-height: 1.2;
}

.info-image-step p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
}

.info-wholesale-types {
  margin-top: 40px;
}

.info-wholesale-types h2 {
  max-width: 880px;
  margin: 0 auto 24px;
  color: var(--action);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  text-align: center;
}

.info-wholesale-types > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.info-wholesale-card {
  grid-column: span 2;
  display: block;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(35, 61, 79, 0.07);
  color: inherit;
  text-decoration: none;
}

.info-wholesale-card:nth-last-child(2):nth-child(3n + 1) {
  grid-column: 2 / span 2;
}

.info-wholesale-card:nth-last-child(1):nth-child(3n + 2) {
  grid-column: 4 / span 2;
}

.info-wholesale-types img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.info-wholesale-card:hover img {
  transform: scale(1.045);
}

.info-wholesale-types h3 {
  margin: 18px 20px 8px;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.25;
}

.info-wholesale-types p {
  margin: 0 20px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.packing-hero img {
  object-fit: contain;
  background: var(--white);
}

.packing-section {
  padding: 72px 0 90px;
  background: var(--white);
}

.packing-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 44px;
}

.packing-type-grid article,
.packing-color-grid article,
.packing-bale-detail {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(35, 61, 79, 0.07);
}

.packing-type-grid article {
  overflow: hidden;
  text-align: center;
}

.packing-type-grid img {
  width: 100%;
  aspect-ratio: 9 / 7;
  object-fit: contain;
  background: var(--white);
}

.packing-type-grid h3 {
  margin: 18px 20px 10px;
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1.2;
}

.packing-type-grid p {
  margin: 0 22px 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.packing-bale-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 44px;
  padding: 34px;
  background: linear-gradient(180deg, var(--green-soft), var(--white));
}

.packing-bale-detail > img {
  width: 100%;
  aspect-ratio: 9 / 7;
  object-fit: contain;
  background: var(--white);
}

.packing-bale-detail h2 {
  margin: 0 0 16px;
  color: var(--action);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.packing-bale-detail > div > p {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.78;
}

.packing-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.packing-spec-grid article {
  padding: 20px;
  background: var(--white);
  border-left: 4px solid var(--green);
}

.packing-spec-grid h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 20px;
  line-height: 1.2;
}

.packing-spec-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.packing-color-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.packing-color-grid article {
  overflow: hidden;
  text-align: center;
}

.packing-color-grid img {
  width: 100%;
  aspect-ratio: 9 / 7;
  object-fit: contain;
  background: var(--white);
}

.packing-color-grid strong {
  display: block;
  margin: 0;
  padding: 18px;
  background: var(--soft);
  color: var(--action);
  font-size: 18px;
}

.packing-info-section,
.packing-custom-section {
  margin-top: 56px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(35, 61, 79, 0.07);
}

.packing-info-section h2,
.packing-custom-section h2 {
  margin: 0 0 16px;
  color: var(--action);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  text-align: center;
}

.packing-info-section > p,
.packing-custom-section > p {
  max-width: 1050px;
  margin: 0 auto 28px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}

.packing-feature-grid {
  margin-bottom: 28px;
}

.packing-example-grid,
.packing-custom-section > div {
  display: grid;
  gap: 22px;
}

.packing-example-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.packing-custom-section > div {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.packing-example-grid article,
.packing-custom-section article {
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  text-align: center;
}

.packing-example-grid img,
.packing-custom-section img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--white);
}

.packing-example-grid strong {
  display: block;
  padding: 18px;
  color: var(--action);
  font-size: 18px;
}

.packing-custom-section h3 {
  margin: 18px 18px 10px;
  color: var(--green);
  font-size: 18px;
  line-height: 1.25;
}

.packing-custom-section article p {
  margin: 0 18px 22px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.shipping-hero img {
  object-fit: cover;
  object-position: center;
  background: var(--white);
}

.shipping-section {
  padding: 72px 0 90px;
  background: var(--white);
}

.shipping-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 58px;
}

.shipping-mode-grid article {
  padding: 30px;
  background: linear-gradient(180deg, var(--green-soft), var(--white));
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  box-shadow: 0 12px 28px rgba(35, 61, 79, 0.07);
}

.shipping-mode-grid h3 {
  margin: 0 0 12px;
  color: var(--action);
  font-size: 26px;
  line-height: 1.2;
}

.shipping-mode-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
}

.shipping-container-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.shipping-container-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(35, 61, 79, 0.07);
}

.shipping-container-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--white);
}

.shipping-container-card > div {
  padding: 28px;
  background: var(--soft);
}

.shipping-container-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.shipping-container-title h3 {
  margin: 0;
  color: var(--action);
  font-size: 36px;
  line-height: 1;
}

.shipping-container-title span {
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}

.shipping-load-list {
  display: grid;
  gap: 10px;
}

.shipping-load-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  background: var(--white);
  border: 1px solid var(--line);
}

.shipping-load-list span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.shipping-load-list strong {
  color: var(--action);
  font-size: 16px;
  text-align: right;
  white-space: nowrap;
}

.shipping-note {
  max-width: 980px;
  margin: 28px auto 0;
  padding: 18px 22px;
  background: var(--green-soft);
  border-left: 5px solid var(--green);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

.shipping-lcl-section {
  margin-top: 72px;
  text-align: center;
}

.shipping-lcl-section > h2,
.shipping-support-heading h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
}

.shipping-lcl-section > p {
  max-width: 1120px;
  margin: 0 auto 46px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.72;
}

.shipping-lcl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.shipping-lcl-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(35, 61, 79, 0.08);
}

.shipping-lcl-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.shipping-lcl-grid article > div {
  padding: 24px 24px 30px;
}

.shipping-lcl-grid h3 {
  margin: 0 0 16px;
  color: var(--action);
  font-size: 26px;
  line-height: 1.2;
}

.shipping-lcl-grid p {
  min-height: 92px;
  margin: 0 auto 24px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.62;
}

.shipping-lcl-grid a,
.shipping-support-heading a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--action);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.shipping-lcl-grid a:hover,
.shipping-support-heading a:hover {
  background: var(--green);
}

.shipping-support-section {
  margin-top: 84px;
}

.shipping-support-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 58px;
}

.shipping-support-heading > div {
  max-width: 850px;
}

.shipping-support-heading p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.72;
}

.shipping-support-heading a {
  flex: 0 0 auto;
  margin-top: 12px;
  background: #eef7dc;
  color: var(--green);
}

.shipping-support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
  text-align: center;
}

.shipping-support-grid img {
  width: min(210px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 4px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(35, 61, 79, 0.08);
}

.shipping-support-grid h3 {
  max-width: 260px;
  margin: 22px auto 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.16;
}

.quality-page {
  padding: 72px 0 96px;
  background: var(--white);
}

.quality-heading {
  max-width: 1180px;
  margin: 0 auto 48px;
  text-align: center;
}

.quality-heading h1 {
  margin: 0 0 18px;
  color: var(--action);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
}

.quality-heading p {
  max-width: 1120px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.72;
}

.quality-heading .btn {
  margin-top: 28px;
}

.quality-standard-block {
  margin-top: 58px;
}

.quality-standard-block:first-of-type {
  margin-top: 0;
}

.quality-banner {
  position: relative;
  min-height: 270px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.quality-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 25, 0.44);
}

.quality-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-banner h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 28px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
  text-align: center;
}

.quality-intro {
  max-width: 1040px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.72;
}

.quality-points {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 22px 0 42px;
  padding: 0;
  list-style: none;
}

.quality-points li {
  position: relative;
  min-height: 28px;
  padding-left: 28px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

.quality-points li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--action);
  border-radius: 50%;
}

.quality-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.quality-gallery article {
  overflow: hidden;
  background: #f4f5f3;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(35, 61, 79, 0.07);
}

.quality-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--white);
}

.quality-gallery strong {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--ink);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  text-align: center;
}

.article-hero {
  padding: 88px 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(206, 239, 240, 0.82)),
    url("assets/hero.jpg") center / cover;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  align-items: center;
}

.article-hero p:first-child {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 780px;
  margin: 0 0 22px;
  color: var(--green-dark);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.06;
}

.article-lead {
  max-width: 660px;
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 17px;
}

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

.article-hero-card {
  display: grid;
  gap: 14px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(4, 123, 128, 0.16);
  box-shadow: var(--shadow);
}

.article-hero-card strong {
  color: var(--action);
  font-size: 20px;
}

.article-hero-card span {
  padding: 12px 14px;
  background: var(--green-soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.article-section {
  padding: 76px 0 90px;
  background: var(--soft);
}

.article-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 132px;
  padding: 24px;
  background: var(--white);
  border-left: 5px solid var(--green);
  box-shadow: 0 12px 28px rgba(35, 61, 79, 0.08);
}

.article-toc h2 {
  margin: 0 0 14px;
  color: var(--action);
  font-size: 20px;
}

.article-toc a {
  display: block;
  padding: 10px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(4, 123, 128, 0.12);
}

.article-toc a:hover {
  color: var(--green);
}

.article-content {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.article-block {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(35, 61, 79, 0.07);
  scroll-margin-top: 150px;
}

.article-block h2 {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.16;
}

.article-block h3 {
  margin: 0 0 8px;
  color: var(--action);
  font-size: 18px;
}

.article-block p {
  margin: 0 0 16px;
  color: var(--muted);
}

.article-block p:last-child {
  margin-bottom: 0;
}

.article-stats,
.market-detail-grid,
.article-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.article-stats div,
.market-detail-grid div {
  padding: 20px;
  background: var(--green-soft);
  border-left: 4px solid var(--green);
}

.article-stats strong {
  display: block;
  color: var(--green-dark);
  font-size: 30px;
  line-height: 1;
}

.article-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.key-country-block {
  border-top: 5px solid var(--green);
}

.key-country-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.key-country-grid > div {
  padding: 28px;
  background: linear-gradient(180deg, var(--green-soft), var(--white));
  border: 1px solid rgba(4, 123, 128, 0.18);
}

.key-country-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  background: var(--action);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.key-country-grid h3 {
  font-size: 22px;
  line-height: 1.22;
}

.article-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-product-grid a {
  display: block;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
}

.article-product-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-product-grid h3,
.article-product-grid p {
  padding: 0 16px;
}

.article-product-grid h3 {
  margin-top: 16px;
}

.article-product-grid p {
  margin-bottom: 18px;
  font-size: 14px;
}

.order-step-block {
  position: relative;
  padding-top: 58px;
}

.order-step-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(5, 175, 181, 0.14);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.order-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.order-category-grid a {
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(35, 61, 79, 0.06);
}

.order-category-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.order-category-grid strong {
  display: block;
  padding: 15px;
  color: var(--action);
  font-size: 14px;
}

.order-accordion {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.order-accordion details {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(35, 61, 79, 0.05);
}

.order-accordion summary {
  position: relative;
  padding: 17px 50px 17px 18px;
  color: var(--action);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.order-accordion summary::-webkit-details-marker {
  display: none;
}

.order-accordion summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}

.order-accordion details[open] summary::after {
  content: "-";
}

.order-accordion p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.order-table-wrap {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid var(--line);
}

.order-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
}

.order-table th,
.order-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  vertical-align: top;
}

.order-table th {
  background: var(--green-soft);
  color: var(--action);
  font-size: 13px;
  text-transform: uppercase;
}

.order-table tr:last-child td {
  border-bottom: 0;
}

.compact-order-table {
  min-width: 760px;
}

.compact-order-table th,
.compact-order-table td {
  padding: 9px 11px;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.compact-order-table th {
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0;
}

.compact-order-table th:first-child,
.compact-order-table td:first-child,
.compact-order-table th:nth-child(2),
.compact-order-table td:nth-child(2),
.compact-order-table .package-type {
  text-align: left;
}

.compact-order-table .package-type {
  width: 132px;
  color: var(--action);
  font-weight: 700;
  vertical-align: top;
  white-space: normal;
}

.grade-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
  overflow: hidden;
}

.grade-pair-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.grade-pair-head,
.grade-row > div {
  padding: 24px;
}

.grade-pair-head {
  color: var(--white);
  overflow: hidden;
}

.grade-pair-head img {
  width: min(360px, 100%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 20px;
}

.grade-pair-head img.order-grade-image {
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--white);
  padding: 8px;
}

.grade-pair-head strong {
  display: inline-flex;
  min-width: 150px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--action);
  font-size: 19px;
  font-weight: 800;
}

.grade-a-head,
.grade-row > div:first-child {
  background: linear-gradient(180deg, #05afb5, #047b80);
}

.grade-b-head,
.grade-row > div:last-child {
  background: linear-gradient(180deg, #233d4f, #172d3d);
}

.grade-row {
  display: contents;
}

.grade-row > div {
  position: relative;
  min-height: 94px;
  padding-left: 56px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.grade-row > div::before {
  content: "›";
  position: absolute;
  left: 24px;
  top: 26px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.grade-row b {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.2;
}

.grade-row span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.35;
}

.grade-panel {
  padding: 34px;
  color: var(--white);
}

.grade-panel img {
  width: min(360px, 100%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.25);
}

.grade-a {
  background: linear-gradient(180deg, #05afb5, #047b80);
}

.grade-b {
  background: linear-gradient(180deg, #233d4f, #172d3d);
}

.grade-panel strong {
  display: inline-flex;
  min-width: 150px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--white);
  color: var(--action);
  font-size: 20px;
  font-weight: 800;
}

.grade-panel ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.grade-panel li {
  position: relative;
  padding-left: 28px;
}

.grade-panel li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.grade-panel b {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.2;
}

.grade-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.35;
}

.order-photo-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 360px;
  background: var(--green-dark);
  color: var(--white);
  overflow: hidden;
}

.order-photo-step > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.order-photo-step > img.order-zoom-image {
  object-fit: contain;
  background: var(--white);
  padding: 10px;
}

.order-photo-step > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 64px;
}

.order-photo-step span,
.order-visual-heading span {
  color: var(--green-soft);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.order-photo-step h2,
.order-visual-heading h2 {
  margin: 8px 0 22px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.order-photo-step p {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.order-photo-step a {
  width: fit-content;
  min-height: 42px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 800;
}

.order-visual-section {
  padding: 68px 48px;
  background: var(--white);
  border: 1px solid var(--line);
}

.order-visual-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.order-visual-heading span {
  color: var(--green);
}

.order-visual-heading h2 {
  color: var(--action);
}

.order-visual-heading p {
  margin: 0;
  color: var(--muted);
}

.order-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.order-visual-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  margin: 0 auto;
}

.order-visual-grid article {
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(35, 61, 79, 0.07);
}

.order-visual-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.order-visual-grid img.order-zoom-image {
  object-fit: contain;
  background: var(--white);
  padding: 8px;
}

.order-zoom-image {
  cursor: zoom-in;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.grade-pair-head:hover .order-zoom-image,
.order-photo-step:hover > .order-zoom-image,
.order-visual-grid article:hover .order-zoom-image {
  transform: scale(1.045);
}

.order-visual-grid strong {
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 0 12px;
  background: var(--green);
  color: var(--white);
  text-align: center;
  font-size: 14px;
}

.order-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.order-lightbox.is-open {
  display: flex;
}

.order-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 31, 42, 0.78);
}

.order-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 94vw);
  max-height: 92vh;
  overflow: auto;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(18, 31, 42, 0.28);
}

.order-lightbox-panel img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: var(--white);
}

.order-lightbox-caption {
  padding: 14px 18px 18px;
  color: var(--action);
  font-weight: 800;
}

.order-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--action);
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
}

body.order-lightbox-open {
  overflow: hidden;
}

@media (max-width: 1020px) {
  .topbar-inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .nav-inner {
    min-height: 72px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .language-button {
    min-width: 112px;
    justify-content: center;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

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

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

  .market-card {
    min-height: 285px;
  }

  .process-grid,
  .advantage-grid,
  .trust-grid,
  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:last-child {
    grid-column: span 2;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .about-grid,
  .quote-grid,
  .catalog-layout,
  .summer-layout,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    gap: 32px;
  }

  .catalog-sidebar {
    position: static;
  }

  .article-toc {
    position: static;
  }

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

  .info-wholesale-card,
  .info-wholesale-card:nth-last-child(2):nth-child(3n + 1),
  .info-wholesale-card:nth-last-child(1):nth-child(3n + 2) {
    grid-column: auto;
  }

  .info-hero-grid,
  .info-split {
    grid-template-columns: 1fr;
  }

  .info-card-grid,
  .info-process > div,
  .info-wholesale-types > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .key-country-grid {
    grid-template-columns: 1fr;
  }

  .grade-compare-grid {
    grid-template-columns: 1fr;
  }

  .grade-pair-compare,
  .order-photo-step,
  .order-visual-grid,
  .order-visual-grid-three {
    grid-template-columns: 1fr;
  }

  .order-photo-step > div,
  .order-visual-section {
    padding: 34px 22px;
  }

  .packing-bale-detail {
    grid-template-columns: 1fr;
  }

  .packing-type-grid,
  .packing-color-grid,
  .packing-example-grid,
  .packing-custom-section > div,
  .packing-spec-grid,
  .shipping-mode-grid,
  .shipping-container-grid,
  .shipping-lcl-grid,
  .shipping-support-grid,
  .quality-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shipping-support-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100vw - 28px);
  }

  .topbar-inner span:not(:first-child) {
    display: none;
  }

  .brand {
    min-width: auto;
    font-size: 15px;
  }

  .brand-logo {
    width: auto;
    height: 42px;
    max-width: 132px;
  }

  .hero,
  .hero-inner {
    min-height: 590px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 54%, rgba(255,255,255,0.34) 100%);
  }

  .hero p {
    max-width: calc(100vw - 42px);
    font-size: 13px;
  }

  .hero h1 {
    width: calc(100vw - 28px);
    font-size: 26px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-copy,
  .section-heading,
  .trust-item > div,
  .product-card div {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy {
    width: min(320px, calc(100vw - 28px));
  }

  .section-heading {
    width: min(330px, calc(100vw - 28px));
  }

  .trust-item > div {
    width: min(260px, calc(100vw - 120px));
  }

  .category-hero h1,
  .category-hero p {
    max-width: calc(100vw - 32px);
  }

  .category-hero h1 {
    font-size: 31px;
  }

  .category-hero p {
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .section-heading p {
    font-size: 12px;
    line-height: 1.35;
  }

  .section-heading h2,
  .market-heading h2,
  .market-heading p,
  .about-copy h2,
  .clients h2,
  .quote-copy h2 {
    font-size: 24px;
    overflow-wrap: break-word;
  }

  .trust-item h3 {
    font-size: 17px;
  }

  .trust-item p {
    font-size: 12px;
  }

  .trust-item p,
  .process-card p,
  .quote-copy p {
    overflow-wrap: anywhere;
  }

  .hero-stats,
  .product-grid,
  .market-grid,
  .catalog-grid,
  .summer-product-grid,
  .info-facts,
  .info-card-grid,
  .info-process > div,
  .info-wholesale-types > div,
  .article-stats,
  .market-detail-grid,
  .key-country-grid,
  .article-product-grid,
  .order-category-grid,
  .process-grid,
  .advantage-grid,
  .trust-grid,
  .clients-grid,
  .packing-type-grid,
  .packing-color-grid,
  .packing-example-grid,
  .packing-custom-section > div,
  .packing-spec-grid,
  .shipping-mode-grid,
  .shipping-container-grid,
  .shipping-lcl-grid,
  .shipping-support-grid,
  .quality-gallery {
    grid-template-columns: 1fr;
  }

  .shipping-lcl-section {
    margin-top: 54px;
  }

  .shipping-lcl-section > h2,
  .shipping-support-heading h2 {
    font-size: 28px;
  }

  .shipping-lcl-section > p,
  .shipping-support-heading p {
    font-size: 14px;
  }

  .shipping-lcl-grid p {
    min-height: 0;
  }

  .shipping-support-section {
    margin-top: 62px;
  }

  .shipping-support-heading {
    gap: 18px;
    margin-bottom: 36px;
  }

  .shipping-support-grid {
    gap: 30px;
  }

  .shipping-support-grid img {
    width: min(190px, 72vw);
  }

  .quality-page {
    padding: 48px 0 72px;
  }

  .quality-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .quality-heading h1 {
    font-size: 31px;
  }

  .quality-heading p,
  .quality-intro,
  .quality-points li {
    font-size: 14px;
  }

  .quality-banner {
    min-height: 210px;
  }

  .shipping-container-card > div,
  .shipping-mode-grid article {
    padding: 22px;
  }

  .shipping-container-title,
  .shipping-load-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .shipping-load-list strong {
    text-align: left;
    white-space: normal;
  }

  .product-wide,
  .trust-item:last-child {
    grid-column: auto;
  }

  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:last-child {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .section,
  .quote-section,
  .article-section,
  .article-hero {
    padding: 62px 0;
  }

  .article-block,
  .article-hero-card {
    padding: 24px 18px;
  }

  .product-card,
  .product-card img {
    min-height: 240px;
  }

  .market-heading {
    margin-bottom: 28px;
  }

  .market-card {
    min-height: 260px;
    padding: 28px 20px;
  }

  .market-card h3 {
    font-size: 25px;
  }

  .market-card p {
    font-size: 13px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-contact-section {
  background: linear-gradient(135deg, rgba(5, 175, 181, 0.1), #fff);
  border-top: 1px solid var(--line);
  padding: 74px 0;
}

.site-contact-grid {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
}

.site-contact-copy p {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}

.site-contact-copy h2 {
  color: var(--ink);
  font-size: 42px;
  line-height: 1.06;
  margin: 0 0 14px;
}

.site-contact-copy span {
  color: var(--muted);
  display: block;
  font-weight: 600;
  line-height: 1.7;
  max-width: 520px;
}

.site-contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 26px;
}

.site-contact-form label,
.site-contact-form fieldset {
  margin: 0;
}

.site-contact-form label {
  color: var(--ink);
  display: grid;
  font-weight: 700;
  gap: 7px;
}

.site-contact-form label span,
.site-contact-form legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.site-contact-form input,
.site-contact-form select,
.site-contact-form textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
  width: 100%;
}

.site-contact-form input:focus,
.site-contact-form select:focus,
.site-contact-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(5, 175, 181, 0.16);
}

.site-contact-form fieldset {
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  grid-column: span 2;
  padding: 12px 14px;
}

.site-contact-form fieldset label {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 8px;
}

.site-contact-message {
  grid-column: span 2;
}

.site-contact-form button {
  justify-self: start;
}

.site-contact-status {
  align-self: center;
  color: var(--green-dark);
  font-weight: 800;
  margin: 0;
}

.footer-address-inner {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-address-inner p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.footer-address-inner strong {
  color: #fff;
}

.admin-page {
  background: var(--soft);
  min-height: 100vh;
}

.admin-shell {
  margin: 0 auto;
  padding: 42px 0;
  width: min(1100px, calc(100% - 40px));
}

.admin-login,
.admin-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.admin-login {
  display: grid;
  gap: 14px;
  margin: 80px auto;
  max-width: 420px;
}

.admin-login h1,
.admin-panel h1 {
  color: var(--ink);
  margin: 0;
}

.admin-login p,
.admin-panel p {
  color: var(--muted);
  margin: 4px 0 0;
}

.admin-login label {
  color: var(--ink);
  display: grid;
  font-weight: 800;
  gap: 7px;
}

.admin-login input {
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  padding: 12px;
}

.admin-toolbar {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: auto;
}

.admin-table {
  border-collapse: collapse;
  min-width: 900px;
  width: 100%;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: var(--green-soft);
  color: var(--ink);
}

.admin-empty {
  color: var(--muted);
  padding: 30px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-actions button,
.admin-login button {
  background: var(--action);
  border: 0;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 11px 16px;
}

.admin-actions button:nth-child(2) {
  background: var(--green-dark);
}

@media (max-width: 760px) {
  .site-contact-grid {
    grid-template-columns: 1fr;
  }

  .site-contact-copy h2 {
    font-size: 32px;
  }

  .site-contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .site-contact-form fieldset,
  .site-contact-message {
    grid-column: span 1;
  }

  .site-contact-section {
    padding: 52px 0;
  }

  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}
