/* =========================================================
   COMINTERN — Tropical Commerce Luxe
   ---------------------------------------------------------
   Design logic:
   1) Cream base = aligns with the light background of the supplied logo.
   2) Mango gold + leaf green + mangosteen wine = palette extracted from brand art.
   3) Large radius, glass highlights and floating overlap = "premium app" interaction language.
   4) Asymmetry is deliberate: it makes a fruit wholesaler feel editorial rather than template-driven.
   ========================================================= */

:root {
  --cream: #fff9ee;
  --cream-2: #f6ecd9;
  --paper: rgba(255, 255, 255, 0.76);
  --ink: #123d22;
  --green: #176b34;
  --green-2: #7fb323;
  --lime: #b7d948;
  --mango: #ffb20f;
  --orange: #f36b21;
  --red: #d82f31;
  --wine: #6f3157;
  --muted: #6e746f;
  --line: rgba(18, 61, 34, 0.12);
  --shadow: 0 24px 70px rgba(64, 72, 44, 0.16);
  --shadow-soft: 0 16px 40px rgba(57, 68, 44, 0.10);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 9%, rgba(255, 178, 15, 0.14), transparent 32rem),
    radial-gradient(circle at 90% 24%, rgba(127, 179, 35, 0.13), transparent 28rem),
    var(--cream);
  color: var(--ink);
  font-family:
    Inter, "Noto Sans Thai", "Tahoma", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  overflow-x: hidden;
}

button,
a,
input {
  font: inherit;
}

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

button {
  border: 0;
}

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

::selection {
  background: rgba(255, 178, 15, 0.35);
  color: var(--ink);
}

.ambient {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -2;
  opacity: 0.33;
}

.ambient--a {
  top: 12vh;
  left: -12rem;
  background: rgba(255, 178, 15, 0.34);
}

.ambient--b {
  right: -13rem;
  bottom: 14vh;
  background: rgba(36, 131, 65, 0.24);
}

.section-pad {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding-block: 88px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 80;
  padding: 0 18px;
}

.nav-shell {
  width: min(1100px, 100%);
  margin: 14px auto 0;
  min-height: 72px;
  padding: 10px 12px 10px 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 252, 245, 0.72);
  backdrop-filter: blur(22px) saturate(150%);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(49, 67, 45, 0.10);
}

.brand-mini {
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(18, 61, 34, 0.07);
}

.brand-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.28);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--mango));
  transition: right 0.25s ease;
}

.nav-links a:hover::after {
  right: 0;
}

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-inline: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lang-btn {
  padding: 5px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.lang-btn.is-active {
  color: var(--green);
}

.cart-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(23, 107, 52, 0.2);
}

.cart-chip strong {
  min-width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mango);
  color: var(--ink);
  font-size: 12px;
}

.hero {
  min-height: 850px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 54px;
  padding-top: 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--mango));
}

.eyebrow--light {
  color: #e3f2d8;
}

.eyebrow--light::before {
  background: linear-gradient(90deg, #dff0cf, var(--mango));
}

.hero h1,
.section-heading h2,
.trade-copy h2,
.about-copy h2,
.contact-card h2,
.sheet-head h2 {
  margin: 18px 0 0;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(54px, 7vw, 94px);
  max-width: 680px;
}

.hero h1 em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  background: linear-gradient(100deg, var(--orange), var(--mango));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 640px;
  margin: 26px 0 0;
  color: #576158;
  font-size: 19px;
  line-height: 1.75;
}

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

.btn {
  min-height: 52px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

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

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0e5426);
  box-shadow: 0 14px 26px rgba(23, 107, 52, 0.2);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
}

.btn--cream {
  color: var(--ink);
  background: var(--cream);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.hero-meta div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
}

.hero-meta b,
.hero-meta span {
  display: block;
}

.hero-meta span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.hero-wordmark {
  position: absolute;
  inset: 7% -10% auto auto;
  font-size: clamp(58px, 8vw, 110px);
  font-weight: 1000;
  letter-spacing: -0.07em;
  color: rgba(23, 107, 52, 0.06);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  user-select: none;
}

.logo-stage {
  position: relative;
  width: min(580px, 94%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 42% 58% 56% 44% / 52% 38% 62% 48%;
  background:
    radial-gradient(circle at 40% 30%, rgba(255,255,255,.92), rgba(255,249,238,.78) 52%, rgba(255,178,15,.12)),
    linear-gradient(140deg, rgba(127,179,35,.14), rgba(255,178,15,.10));
  box-shadow: var(--shadow);
  animation: floatBlob 8s ease-in-out infinite;
}

.logo-stage::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  border: 1px solid rgba(23, 107, 52, 0.11);
  border-radius: 50%;
}

.logo-stage img {
  width: 82%;
  border-radius: 28px;
  filter: saturate(1.02) contrast(1.02);
  mix-blend-mode: multiply;
}

.floating-tag {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
}

.floating-tag span,
.floating-tag b {
  display: block;
}

.floating-tag span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.floating-tag b {
  margin-top: 4px;
  font-size: 18px;
}

.floating-tag--top {
  right: 1%;
  top: 15%;
}

.floating-tag--bottom {
  left: 1%;
  bottom: 15%;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: 44px;
  margin-bottom: 34px;
}

.section-heading h2,
.trade-copy h2,
.about-copy h2,
.contact-card h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 16px;
}

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255,255,255,.92), rgba(255,255,255,.56));
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}

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

.product-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 5;
}

.product-card:nth-child(2),
.product-card:nth-child(3) {
  grid-column: span 5;
  grid-row: span 2.5;
}

.product-card:nth-child(4),
.product-card:nth-child(5),
.product-card:nth-child(6) {
  grid-column: span 4;
  grid-row: span 4;
}

.fruit-orb {
  position: absolute;
  right: -6%;
  top: -8%;
  width: 55%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: clamp(76px, 10vw, 160px);
  filter: drop-shadow(0 18px 20px rgba(31, 52, 26, .13));
  transform: rotate(4deg);
}

.product-card:nth-child(1) .fruit-orb {
  width: 47%;
  right: 5%;
  top: 9%;
}

.product-card:nth-child(2) .fruit-orb,
.product-card:nth-child(3) .fruit-orb {
  width: 42%;
  font-size: 82px;
}

.product-kicker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 249, 238, 0.82);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-info {
  position: relative;
  z-index: 2;
  max-width: 68%;
}

.product-info h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.product-info p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-bottom {
  margin-top: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  display: block;
  font-size: 28px;
  font-weight: 1000;
}

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

.add-btn {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.add-btn:hover {
  transform: scale(1.08);
  background: var(--green);
}

.trade-panel {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 50px;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(255,178,15,.18), transparent 24rem),
    linear-gradient(135deg, #0d4224 0%, #123d22 55%, #082e19 100%);
  box-shadow: 0 32px 80px rgba(10, 47, 27, .2);
}

.trade-panel::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -70px;
  bottom: -100px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 48% 52% 45% 55%;
}

.trade-copy {
  position: relative;
  z-index: 2;
}

.trade-copy p {
  max-width: 580px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

.trade-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trade-flow article {
  min-height: 170px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}

.trade-flow article:nth-child(2),
.trade-flow article:nth-child(4) {
  transform: translateY(28px);
}

.trade-flow span {
  color: var(--mango);
  font-size: 12px;
  font-weight: 900;
}

.trade-flow b {
  font-size: 28px;
}

.trade-flow small {
  color: rgba(255,255,255,.65);
}

.about-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
  align-items: stretch;
}

.about-logo,
.about-copy {
  border-radius: var(--radius-xl);
}

.about-logo {
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.9), rgba(255,178,15,.10)),
    var(--cream-2);
  box-shadow: var(--shadow-soft);
}

.about-logo img {
  width: 78%;
  mix-blend-mode: multiply;
}

.about-copy {
  padding: 48px;
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
}

.about-copy p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.8;
}

.company-facts {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.company-facts div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,249,238,.75);
  border: 1px solid var(--line);
}

.company-facts span,
.company-facts b {
  display: block;
}

.company-facts span {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.contact-island {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 52px;
  background: rgba(255,255,255,.82);
}

.contact-list {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.contact-list a {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
}

.map-card {
  position: relative;
  overflow: hidden;
  padding: 52px;
  display: flex;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(rgba(9,46,25,.12), rgba(9,46,25,.45)),
    radial-gradient(circle at 65% 30%, rgba(255,178,15,.24), transparent 16rem),
    linear-gradient(145deg, #1f7a3d, #0e4c28);
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.13);
}

.map-card::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
}

.map-card::after {
  width: 260px;
  height: 260px;
  top: -42px;
  right: -38px;
}

.map-orbit {
  position: absolute;
  inset: 14% 8% auto auto;
  width: 56%;
  aspect-ratio: 1;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.map-pin {
  position: absolute;
  top: 28%;
  right: 33%;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--mango);
  color: var(--red);
  font-size: 18px;
  box-shadow: 0 18px 35px rgba(0,0,0,.22);
}

.map-pin::first-letter {
  transform: rotate(45deg);
}

.map-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.map-copy > span {
  color: #d9e9d7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.map-copy h3 {
  margin: 12px 0 20px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
}

.map-link {
  display: inline-flex;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 900;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 120px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 70px;
  border-radius: 18px;
  background: #fff;
}

.footer-brand span {
  font-weight: 900;
}

.footer-meta {
  display: grid;
  gap: 4px;
  justify-items: end;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.cart-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 70;
  width: min(500px, calc(100% - 28px));
  padding: 12px 12px 12px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  background: rgba(18, 61, 34, 0.94);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(18,61,34,.28);
  cursor: pointer;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}

.cart-dock.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cart-dock span {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.cart-dock b {
  color: var(--mango);
  font-size: 20px;
}

.cart-dock small {
  color: rgba(255,255,255,.65);
}

.cart-dock > strong {
  justify-self: center;
  font-size: 18px;
}

.cart-dock em {
  padding: 10px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.sheet-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 28, 15, .42);
  backdrop-filter: blur(5px);
}

.cart-sheet {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 100;
  width: min(760px, calc(100% - 24px));
  max-height: min(88vh, 900px);
  padding: 10px 24px 24px;
  overflow: auto;
  border-radius: 34px 34px 0 0;
  background: #fffdf8;
  box-shadow: 0 -30px 80px rgba(14,54,30,.24);
  transform: translate(-50%, 110%);
  transition: transform .36s cubic-bezier(.2,.8,.2,1);
}

.cart-sheet.is-open {
  transform: translate(-50%, 0);
}

.sheet-handle {
  width: 60px;
  height: 5px;
  margin: 2px auto 20px;
  border-radius: 999px;
  background: #d7d8d2;
}

.sheet-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.sheet-head h2 {
  font-size: 36px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
}

.cart-items {
  display: grid;
  gap: 10px;
}

.empty-state {
  padding: 42px 18px;
  text-align: center;
  color: var(--muted);
  border-radius: 24px;
  background: var(--cream);
}

.cart-row {
  display: grid;
  grid-template-columns: 58px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.cart-thumb {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--cream);
  font-size: 32px;
}

.cart-name b,
.cart-name span {
  display: block;
}

.cart-name span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty-control button,
.qty-control span {
  height: 34px;
  display: grid;
  place-items: center;
  background: transparent;
}

.qty-control button {
  cursor: pointer;
}

.remove-btn {
  background: transparent;
  color: var(--red);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.cart-summary {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.cart-summary strong {
  font-size: 34px;
}

.checkout-btn {
  width: 100%;
  margin-top: 14px;
  min-height: 58px;
  padding: 12px 16px 12px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0d4d27);
  cursor: pointer;
  font-weight: 900;
}

.checkout-btn:disabled {
  cursor: not-allowed;
  opacity: .45;
}

.checkout-btn b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mango);
  color: var(--ink);
}

.checkout-note {
  margin: 9px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@keyframes floatBlob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .hero,
  .trade-panel,
  .about-shell,
  .contact-island {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 0;
    min-height: 520px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4),
  .product-card:nth-child(5),
  .product-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .trade-flow article:nth-child(2),
  .trade-flow article:nth-child(4) {
    transform: none;
  }

  .about-logo {
    min-height: 340px;
  }
}

@media (max-width: 680px) {
  .section-pad {
    width: min(100% - 24px, var(--max));
    padding-block: 58px;
  }

  .site-header {
    top: 8px;
    padding-inline: 10px;
  }

  .nav-shell {
    min-height: 62px;
    padding: 7px;
  }

  .brand-mini {
    width: 46px;
    height: 46px;
  }

  .lang-switch {
    font-size: 12px;
  }

  .cart-chip span {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 400px;
  }

  .floating-tag {
    transform: scale(.88);
  }

  .hero-meta,
  .company-facts,
  .trade-flow,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card:nth-child(n) {
    min-height: 330px;
  }

  .product-info {
    max-width: 76%;
  }

  .trade-panel,
  .about-copy,
  .contact-card,
  .map-card {
    padding: 30px 22px;
  }

  .trade-panel {
    border-radius: 30px;
  }

  .map-card {
    min-height: 460px;
  }

  .site-footer {
    width: calc(100% - 24px);
    margin-bottom: 100px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-items: start;
  }

  .cart-row {
    grid-template-columns: 52px 1fr;
  }

  .qty-control,
  .remove-btn {
    grid-column: 2;
  }

  .cart-dock {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }

  .cart-dock em {
    padding-inline: 12px;
  }
}

/* Local fruit catalogue integration */
.catalog-note {
  margin: -10px 0 26px;
  padding: 14px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  border: 1px solid rgba(23, 107, 52, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 12px;
}

.catalog-note strong {
  color: var(--green);
  font-size: 14px;
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows: auto;
}

.product-card,
.product-card:nth-child(n) {
  grid-column: auto;
  grid-row: auto;
  min-height: 410px;
  padding: 18px;
}

.fruit-orb,
.product-card:nth-child(n) .fruit-orb {
  position: relative;
  inset: auto;
  width: 100%;
  height: 205px;
  aspect-ratio: auto;
  margin: 12px 0 16px;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  filter: none;
  transform: none;
}

.fruit-orb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform .28s ease;
}

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

.product-info {
  max-width: none;
}

.product-info h3 {
  min-height: 2.8em;
  font-size: 20px;
  line-height: 1.38;
}

.price-detail {
  min-height: 22px;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 11px;
}

.price-detail del {
  color: var(--muted);
}

.price-detail span {
  color: var(--red);
  font-weight: 900;
}

.cart-thumb {
  overflow: hidden;
  background: #fff;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 680px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card,
  .product-card:nth-child(n) {
    min-height: 350px;
    padding: 12px;
  }

  .fruit-orb,
  .product-card:nth-child(n) .fruit-orb {
    height: 145px;
    border-radius: 18px;
  }

  .product-info h3 {
    min-height: 3.9em;
    font-size: 15px;
  }

  .product-price {
    font-size: 21px;
  }
}
