﻿:root {
  --ink: #17302f;
  --muted: #5d7270;
  --line: #d6e6e3;
  --paper: #fffdf7;
  --soft: #e8fbf8;
  --mint: #00b8c7;
  --mint-dark: #008f9c;
  --sun: #ffc93c;
  --coral: #ff7b54;
  --forest: #164643;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 143, 156, 0.16);
}

/* 2026-07-05 frontend fixes */
.showcase-banner {
  position: relative;
}

.showcase-banner .carousel-track,
.showcase-banner .carousel-slide img {
  height: 460px;
  min-height: 460px;
}

.showcase-banner .carousel-slide::after {
  background: linear-gradient(90deg, rgba(17, 48, 46, 0.22), rgba(17, 48, 46, 0.04));
}

.hero {
  min-height: 760px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 201, 60, 0.34), transparent 26%),
    linear-gradient(115deg, #f8fffd 0%, #e1fbf7 48%, #fff5cc 100%);
}

.hero-media {
  display: none;
}

.hero-copy {
  width: min(1040px, calc(100% - 36px));
}

.hero-stats {
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  max-width: 980px;
}

.hero-stats div {
  min-height: 126px;
}

.equipment-section {
  background:
    linear-gradient(180deg, rgba(0, 184, 199, 0.94), rgba(0, 143, 156, 0.88)),
    url("equipment.png") center/cover no-repeat;
}

.equipment-section .section-heading,
.equipment-section .section-heading p,
.equipment-section .eyebrow,
.equipment-section h2 {
  color: #fff;
}

.equipment-filter {
  display: none !important;
}

.equipment-product-card {
  grid-template-rows: auto minmax(220px, 1fr) auto auto;
  gap: 12px;
}

.equipment-product-card .product-category {
  justify-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 184, 199, 0.12);
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
}

.equipment-product-card h3 {
  margin: 8px 0 0;
  text-align: center;
}

.equipment-product-card p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 680px;
}

.contact-info ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.contact-info li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 184, 199, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-info strong {
  color: var(--mint-dark);
}

.friend-links {
  margin-top: 18px;
}

.friend-links p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 8px;
}

.copyright {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.news-page .news-list.expanded {
  grid-template-columns: 1fr;
}

.news-page .news-list.expanded article {
  min-height: auto;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sitemap-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.sitemap-grid h2 {
  font-size: 24px;
}

.sitemap-grid a {
  color: var(--mint-dark);
  font-weight: 800;
}

@media (min-width: 721px) and (max-width: 1180px) {
  .showcase-banner .carousel-track,
  .showcase-banner .carousel-slide img {
    height: 360px;
    min-height: 360px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .showcase-banner .carousel-track,
  .showcase-banner .carousel-slide img {
    height: 240px;
    min-height: 240px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 46px;
  }

  .hero-stats,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .contact-info li {
    grid-template-columns: 1fr;
  }
}

/* Last overrides for current upload package. */
.header-actions {
  align-items: center !important;
}

.lang-toggle,
.header-actions .button.compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-height: 46px;
  line-height: 1;
}

.lang-toggle {
  min-width: 62px;
  padding: 0 16px;
}

.news-page .news-list.expanded {
  grid-template-columns: 1fr;
  gap: 14px;
}

.news-page .news-list.expanded article {
  min-height: 150px;
  padding: 18px 24px;
}

.news-page .news-list.expanded time {
  margin-bottom: 10px;
}

.news-page .news-list.expanded h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.12;
}

.news-page .news-list.expanded p {
  margin-bottom: 14px;
}

.pagination,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.pagination a.active,
.pagination a:hover {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--white);
}

.button.disabled {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}

.sitemap-page .sitemap-grid article {
  max-height: 520px;
  overflow: auto;
}

.sitemap-page .sitemap-grid p {
  margin-bottom: 12px;
}

.sitemap-more {
  position: sticky;
  bottom: 0;
  padding-top: 12px;
  background: var(--white);
}

.equipment-filter {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 32px;
}

.equipment-filter button {
  min-width: 168px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.equipment-filter button.active,
.equipment-filter button:hover {
  border-color: #fff;
  background: rgba(0, 122, 162, 0.82);
}

@media (max-width: 720px) {
  .lang-toggle,
  .header-actions .button.compact {
    height: 40px;
    min-height: 40px;
  }

  .news-page .news-list.expanded article {
    padding: 16px;
  }

  .pagination,
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Equipment category tabs: only two categories, no "all" tab. */
.equipment-filter {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 32px;
}

.equipment-filter button {
  min-width: 168px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.equipment-filter button.active,
.equipment-filter button:hover {
  border-color: #fff;
  background: rgba(0, 122, 162, 0.82);
}

/* Final batch fixes: compact news, pagination, sitemap scale, header alignment. */
.header-actions {
  align-items: center !important;
}

.lang-toggle,
.header-actions .button.compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-height: 46px;
  line-height: 1;
}

.lang-toggle {
  min-width: 62px;
  padding: 0 16px;
}

.news-page .news-list.expanded {
  gap: 14px;
}

.news-page .news-list.expanded article {
  min-height: 150px;
  padding: 18px 24px;
}

.news-page .news-list.expanded time {
  margin-bottom: 10px;
}

.news-page .news-list.expanded h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.12;
}

.news-page .news-list.expanded p {
  margin-bottom: 14px;
}

.pagination,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.pagination a.active,
.pagination a:hover {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--white);
}

.button.disabled {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}

.sitemap-page .sitemap-grid article {
  max-height: 520px;
  overflow: auto;
}

.sitemap-page .sitemap-grid p {
  margin-bottom: 12px;
}

.sitemap-more {
  position: sticky;
  bottom: 0;
  padding-top: 12px;
  background: var(--white);
}

@media (max-width: 720px) {
  .lang-toggle,
  .header-actions .button.compact {
    height: 40px;
    min-height: 40px;
  }

  .news-page .news-list.expanded article {
    padding: 16px;
  }

  .pagination,
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (min-width: 1041px) {
  .site-header {
    justify-content: flex-start;
  }

  .brand {
    flex: 0 0 300px;
    min-width: 300px;
  }

  .nav {
    justify-content: flex-start;
  }

  .header-actions {
    margin-left: auto;
  }
}

.equipment-filter {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 32px;
}

.equipment-filter button {
  min-width: 168px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.equipment-filter button.active,
.equipment-filter button:hover {
  border-color: #fff;
  background: rgba(0, 122, 162, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", "Microsoft YaHei UI", "PingFang SC", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(214, 230, 227, 0.9);
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 214px;
}

.brand-logo {
  width: min(210px, 46vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 28px);
  color: #365552;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover {
  color: var(--mint-dark);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-form {
  margin: 0;
}

.lang-select {
  height: 40px;
  min-width: 112px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 0 28px 0 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.language-switch span {
  font-size: 22px;
  line-height: 1;
}

.lang-toggle,
.icon-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.lang-toggle {
  min-width: 50px;
  height: 40px;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--mint);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), #12cfd5);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(0, 184, 199, 0.2);
}

.button:hover {
  background: linear-gradient(135deg, var(--mint-dark), #0bbec5);
}

.button.ghost {
  border-color: rgba(0, 184, 199, 0.28);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  box-shadow: none;
}

.button.compact {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #dff9f5;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 201, 60, 0.45), transparent 28%),
    linear-gradient(90deg, rgba(255, 253, 247, 0.96) 0%, rgba(255, 253, 247, 0.72) 42%, rgba(255, 253, 247, 0.06) 78%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  width: min(740px, calc(100% - 36px));
  margin: 0 0 clamp(30px, 7vw, 82px) clamp(18px, 5vw, 76px);
  padding-top: 78px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 28px;
  color: #365552;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(0, 143, 156, 0.1);
}

.hero-stats dt {
  color: var(--mint-dark);
  font-size: 24px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.philosophy {
  background: var(--paper);
}

.philosophy-grid,
.step-grid,
.news-list,
.managed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.philosophy-grid article,
.step-grid article,
.news-list article,
.news-card,
.managed-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.philosophy-grid article,
.managed-grid article,
.news-list article,
.news-card {
  box-shadow: 0 14px 36px rgba(0, 143, 156, 0.08);
}

.philosophy-grid p,
.step-grid p,
.news-list p,
.equipment-copy p,
.case-copy p,
.contact-copy p,
.managed-grid p {
  color: var(--muted);
}

.showcase {
  background: linear-gradient(180deg, #eafffb 0%, #fffdf7 100%);
}

.showcase-banner {
  padding: 0;
  background: var(--forest);
}

.showcase-banner .carousel {
  border-radius: 0;
  box-shadow: none;
}

.showcase-banner .carousel-track {
  min-height: clamp(420px, 54vw, 660px);
}

.showcase-banner .carousel-slide img {
  height: clamp(420px, 54vw, 660px);
}

.showcase-banner + .hero {
  min-height: 720px;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.carousel-track {
  position: relative;
  min-height: 500px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.carousel-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 48, 46, 0.78), rgba(17, 48, 46, 0.18));
}

.carousel-caption {
  position: absolute;
  left: clamp(22px, 5vw, 66px);
  bottom: clamp(24px, 5vw, 66px);
  z-index: 2;
  max-width: 620px;
  color: var(--white);
}

.carousel-caption span {
  color: var(--sun);
  font-weight: 900;
}

.carousel-caption h3 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 56px);
}

.carousel-caption p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.carousel-controls {
  position: absolute;
  left: clamp(22px, 5vw, 66px);
  right: clamp(22px, 5vw, 66px);
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 30px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--sun);
}

.equipment-showcase {
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 78px);
  padding-bottom: clamp(54px, 7vw, 92px);
  background:
    linear-gradient(rgba(40, 159, 207, 0.86), rgba(22, 137, 187, 0.92)),
    url("hero-laundry.png") center / cover;
  color: var(--white);
}

.equipment-heading {
  max-width: 980px;
  margin: 0 auto 22px;
  text-align: center;
}

.equipment-heading .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.equipment-heading h2 {
  margin-bottom: 8px;
  color: var(--white);
}

.equipment-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.equipment-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 32px;
}

.equipment-filter button {
  min-width: 118px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.equipment-filter button.active,
.equipment-filter button:hover {
  border-color: rgba(255, 255, 255, 0.96);
  background: rgba(0, 122, 162, 0.82);
}

.equipment-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.equipment-product-card {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  min-height: 360px;
  padding: clamp(20px, 2.4vw, 34px) clamp(18px, 2vw, 28px) 26px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.equipment-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(8, 79, 105, 0.24);
}

.product-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.equipment-product-card img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.equipment-product-card strong {
  display: block;
  padding-top: 18px;
  font-size: 18px;
  font-weight: 500;
}

.cases img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #365552;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.franchise {
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 201, 60, 0.22), transparent 28%),
    var(--forest);
  color: var(--white);
}

.franchise .eyebrow {
  color: var(--sun);
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.step-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--sun);
  font-size: 15px;
  font-weight: 900;
}

.step-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.cases {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(32px, 6vw, 86px);
  background: #fff6df;
}

.case-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-cards span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--mint-dark);
  font-weight: 900;
}

.news {
  background: var(--paper);
}

.news-list article,
.news-card {
  min-height: 245px;
}

.news-card {
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 143, 156, 0.14);
}

.news-list time,
.news-card time {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--coral);
  font-weight: 900;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--mint-dark);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.9fr);
  gap: clamp(32px, 7vw, 96px);
  background: var(--soft);
}

.contact-copy {
  max-width: 620px;
}

.consult-form,
.admin-panel {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.consult-form label,
.admin-panel label {
  display: grid;
  gap: 8px;
  color: #365552;
  font-size: 14px;
  font-weight: 800;
}

.consult-form input,
.consult-form textarea,
.admin-panel input,
.admin-panel textarea {
  width: 100%;
  border: 1px solid #c8dfdc;
  border-radius: 8px;
  background: #fbfffe;
  color: var(--ink);
  font: inherit;
}

.consult-form input,
.admin-panel input {
  height: 48px;
  padding: 0 14px;
}

.consult-form textarea,
.admin-panel textarea {
  resize: vertical;
  padding: 12px 14px;
}

.consult-form input:focus,
.consult-form textarea:focus,
.admin-panel input:focus,
.admin-panel textarea:focus {
  outline: 2px solid rgba(0, 184, 199, 0.24);
  border-color: var(--mint);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 5vw, 76px);
  background: #102d2b;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer a {
  color: var(--sun);
  font-weight: 800;
}

.admin-body {
  background: #f3fffd;
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 70px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.admin-top p {
  margin-bottom: 0;
  color: var(--muted);
}

.admin-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 20px;
}

.admin-tabs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.admin-tabs button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  padding: 0 16px;
}

.admin-tabs a {
  display: flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  padding: 0 16px;
}

.admin-tabs button.active,
.admin-tabs a.active {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--white);
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: grid;
}

.admin-item {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafffe;
}

.admin-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-check {
  display: flex !important;
  align-items: center;
  grid-template-columns: auto 1fr;
}

.admin-check input {
  width: auto;
  height: auto;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-message {
  color: var(--mint-dark);
  font-weight: 800;
}

.admin-image-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6fffd;
}

.admin-image-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.detail-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(72px, 10vw, 128px);
}

.detail-shell h1 {
  max-width: 860px;
  font-size: clamp(34px, 5vw, 64px);
}

.detail-summary {
  max-width: 780px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.detail-image {
  width: min(680px, 100%);
  max-height: 520px;
  margin: 0 0 34px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.detail-body {
  max-width: 820px;
  margin-bottom: 34px;
  color: #365552;
  font-size: 18px;
}

.detail-body p {
  margin-bottom: 18px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .brand {
    flex: 1;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }

  .cases,
  .contact,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .equipment-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-grid,
  .philosophy-grid,
  .news-list,
  .managed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .equipment-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-track,
  .carousel-slide img {
    min-height: 460px;
    height: 460px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: auto;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(176px, 52vw);
  }

  .header-actions .button.compact:last-child {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .showcase-banner .carousel-track,
  .showcase-banner .carousel-slide img {
    min-height: 360px;
    height: 360px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.86) 52%, rgba(255, 253, 247, 0.2) 100%),
      radial-gradient(circle at 82% 12%, rgba(255, 201, 60, 0.34), transparent 32%);
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin: 0 16px 26px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-stats,
  .philosophy-grid,
  .step-grid,
  .news-list,
  .managed-grid,
  .case-cards,
  .admin-grid-two,
  .admin-tabs {
    grid-template-columns: 1fr;
  }

  .equipment-product-grid {
    grid-template-columns: 1fr;
  }

  .equipment-product-card {
    min-height: 320px;
  }

  .carousel-track,
  .carousel-slide img {
    min-height: 240px;
    height: 240px;
  }

  .carousel-controls {
    justify-content: flex-start;
  }

  .philosophy-grid article,
  .step-grid article,
  .news-list article,
  .managed-grid article {
    min-height: auto;
    padding: 24px;
  }

  .consult-form,
  .admin-panel {
    padding: 20px;
  }

  .admin-top,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Final overrides for the online fix package. Keep this block at the end. */
.showcase-banner {
  position: relative;
}

.showcase-banner .carousel-track,
.showcase-banner .carousel-slide img {
  height: 460px;
  min-height: 460px;
}

.showcase-banner .carousel-slide::after {
  background: linear-gradient(90deg, rgba(17, 48, 46, 0.22), rgba(17, 48, 46, 0.04));
}

.hero {
  min-height: 760px;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 201, 60, 0.34), transparent 26%),
    linear-gradient(115deg, #f8fffd 0%, #e1fbf7 48%, #fff5cc 100%);
}

.hero-media {
  display: none;
}

.hero-copy {
  width: min(1040px, calc(100% - 36px));
}

.hero-stats {
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  max-width: 980px;
}

.hero-stats div {
  min-height: 126px;
}

.equipment-section {
  background:
    linear-gradient(180deg, rgba(0, 184, 199, 0.94), rgba(0, 143, 156, 0.88)),
    url("equipment.png") center/cover no-repeat;
}

.equipment-section .section-heading,
.equipment-section .section-heading p,
.equipment-section .eyebrow,
.equipment-section h2 {
  color: #fff;
}

.equipment-filter {
  display: none !important;
}

.equipment-product-card {
  grid-template-rows: auto minmax(220px, 1fr) auto auto;
  gap: 12px;
}

.equipment-product-card .product-category {
  justify-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 184, 199, 0.12);
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
}

.equipment-product-card h3 {
  margin: 8px 0 0;
  text-align: center;
}

.equipment-product-card p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 680px;
}

.contact-info ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.contact-info li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 184, 199, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-info strong {
  color: var(--mint-dark);
}

.friend-links {
  margin-top: 18px;
}

.friend-links p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 8px;
}

.copyright {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.news-page .news-list.expanded {
  grid-template-columns: 1fr;
}

.news-page .news-list.expanded article {
  min-height: auto;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sitemap-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.sitemap-grid h2 {
  font-size: 24px;
}

.sitemap-grid a {
  color: var(--mint-dark);
  font-weight: 800;
}

@media (min-width: 721px) and (max-width: 1180px) {
  .showcase-banner .carousel-track,
  .showcase-banner .carousel-slide img {
    height: 360px;
    min-height: 360px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .showcase-banner .carousel-track,
  .showcase-banner .carousel-slide img {
    height: 240px;
    min-height: 240px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 46px;
  }

  .hero-stats,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .contact-info li {
    grid-template-columns: 1fr;
  }
}

/* Absolute last overrides for current upload package. */
.header-actions {
  align-items: center !important;
}

.lang-toggle,
.header-actions .button.compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-height: 46px;
  line-height: 1;
}

.lang-toggle {
  min-width: 62px;
  padding: 0 16px;
}

.news-page .news-list.expanded {
  grid-template-columns: 1fr;
  gap: 14px;
}

.news-page .news-list.expanded article {
  min-height: 150px;
  padding: 18px 24px;
}

.news-page .news-list.expanded time {
  margin-bottom: 10px;
}

.news-page .news-list.expanded h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.12;
}

.news-page .news-list.expanded p {
  margin-bottom: 14px;
}

.pagination,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.pagination a.active,
.pagination a:hover {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--white);
}

.button.disabled {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}

.sitemap-page .sitemap-grid article {
  max-height: 520px;
  overflow: auto;
}

.sitemap-page .sitemap-grid p {
  margin-bottom: 12px;
}

.sitemap-more {
  position: sticky;
  bottom: 0;
  padding-top: 12px;
  background: var(--white);
}

.equipment-filter {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 32px;
}

.equipment-filter button {
  min-width: 168px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.equipment-filter button.active,
.equipment-filter button:hover {
  border-color: #fff;
  background: rgba(0, 122, 162, 0.82);
}

@media (max-width: 720px) {
  .lang-toggle,
  .header-actions .button.compact {
    height: 40px;
    min-height: 40px;
  }

  .news-page .news-list.expanded article {
    padding: 16px;
  }

  .pagination,
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Desktop nav position adjustment. */
@media (min-width: 1041px) {
  .brand {
    flex-basis: 360px;
    min-width: 360px;
  }
}

/* Final layout refinements for admin, SEO content and product display. */
.section {
  padding-top: clamp(46px, 5vw, 80px);
  padding-bottom: clamp(46px, 5vw, 80px);
}

.showcase-banner .carousel-track,
.showcase-banner .carousel-slide img {
  height: 520px !important;
  min-height: 520px !important;
}

.showcase-banner .carousel-slide img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.equipment-section {
  background: linear-gradient(180deg, #12b9c3 0%, #0ea4ad 100%) !important;
}

.equipment-product-grid {
  justify-items: center;
}

.equipment-product-card {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  min-height: 360px !important;
  padding: 28px 24px !important;
  text-align: center !important;
}

.equipment-product-card .product-category,
.equipment-product-card p {
  display: none !important;
}

.equipment-product-card img {
  display: block;
  width: auto;
  max-width: 86%;
  max-height: 260px;
  margin: 0 auto 22px !important;
  object-fit: contain;
}

.equipment-product-card h3 {
  margin: 0 auto !important;
  text-align: center !important;
}

.philosophy-grid article,
.step-grid article {
  min-height: 158px !important;
  padding: 26px !important;
}

.news-list {
  gap: 16px !important;
}

.news-list article,
.news-page .news-list.expanded article {
  min-height: 138px !important;
  padding: 20px 24px !important;
}

.news-list time {
  margin-bottom: 8px !important;
}

.news-list h3,
.news-list h2 {
  margin-bottom: 8px !important;
  line-height: 1.18 !important;
}

.news-list p {
  margin-bottom: 10px !important;
}

.form-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
}

.form-message {
  margin: 0 0 16px;
  font-weight: 800;
}

.form-message.success {
  color: #058d92;
}

.form-message.error {
  color: #c73a3a;
}

.friend-links {
  margin-top: 16px;
  font-size: 14px;
}

.friend-links strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.friend-links a {
  margin-right: 14px;
  font-size: 14px;
}

.detail-body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
}

.admin-form {
  gap: 14px !important;
}

.admin-form textarea {
  min-height: 86px;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 0;
}

.editor-toolbar button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.rich-editor {
  min-height: 220px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  line-height: 1.75;
  outline: none;
}

.rich-editor:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(17, 190, 199, 0.12);
}

.rich-editor img {
  max-width: 100%;
  height: auto;
}

.rich-editor img.editor-image-selected {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

.editor-hidden {
  display: none;
}

.admin-list.compact-list,
.admin-list {
  gap: 10px !important;
}

.admin-item {
  padding: 14px 16px !important;
}

.admin-list .admin-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 16px !important;
}

.admin-item .admin-meta,
.admin-item .admin-actions {
  grid-column: 2 !important;
  justify-content: flex-end !important;
}

.admin-item .admin-meta {
  grid-row: 1 !important;
  align-self: end !important;
}

.admin-item .admin-actions {
  grid-row: 2 !important;
  align-self: start !important;
}

.admin-item h3,
.admin-item p {
  grid-column: 1 !important;
}

.admin-item h3 {
  margin: 0 !important;
  font-size: 20px !important;
  line-height: 1.25 !important;
}

.admin-item p {
  margin: 4px 0 !important;
  line-height: 1.5 !important;
}

.admin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.admin-table th {
  background: rgba(17, 190, 199, 0.08);
  font-weight: 900;
}

@media (max-width: 720px) {
  .showcase-banner .carousel-track,
  .showcase-banner .carousel-slide img {
    height: 300px !important;
    min-height: 300px !important;
  }

  .equipment-product-card {
    min-height: 300px !important;
    padding: 22px 18px !important;
  }

  .equipment-product-card img {
    max-height: 210px;
  }

  .friend-links {
    display: none !important;
  }

  .admin-list .admin-item {
    grid-template-columns: 1fr !important;
  }

  .admin-item .admin-meta,
  .admin-item .admin-actions,
  .admin-item h3,
  .admin-item p {
    grid-column: 1 !important;
    grid-row: auto !important;
    justify-content: flex-start !important;
  }
}

/* Final corrections requested after live review. */
@media (min-width: 1024px) {
  .equipment-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }
}

.equipment-product-card {
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  width: 100% !important;
  background: #f7fbfb !important;
}

.equipment-product-card[hidden] {
  display: none !important;
}

.equipment-product-card img {
  max-height: 68% !important;
  max-width: 82% !important;
  margin-bottom: 18px !important;
}

.equipment-product-card h3 {
  font-size: clamp(20px, 1.5vw, 26px) !important;
  line-height: 1.2 !important;
}

.friend-links,
.friend-links strong,
.friend-links a {
  color: rgba(255, 255, 255, 0.72) !important;
}

.friend-links {
  font-size: 12px !important;
  line-height: 1.8 !important;
}

.friend-links strong {
  font-size: 13px !important;
}

.friend-links a {
  font-size: 12px !important;
  font-weight: 600 !important;
}

.form-message.success {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(17, 190, 199, 0.34);
  border-radius: 8px;
  background: rgba(17, 190, 199, 0.1);
}

/* Home section order: equipment before brand philosophy. */
main {
  display: flex;
  flex-direction: column;
}

.showcase-banner { order: 1; }
.hero { order: 2; }
.equipment-section { order: 3; }
.philosophy { order: 4; }
.franchise { order: 5; }
.cases { order: 6; }
.news-section { order: 7; }
.contact { order: 8; }

/* 20260706 stable source fixes: keep Chinese/English and PC/mobile consistent. */
.nav a {
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.hero-actions {
  display: none !important;
}

.equipment-filter {
  display: none !important;
}

.equipment-section .section-heading {
  margin-bottom: 18px !important;
}

.equipment-section .section-heading p:not(.eyebrow) {
  max-width: 1080px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.equipment-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.equipment-product-card,
.equipment-product-card[hidden] {
  display: flex !important;
}

.equipment-product-card {
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  padding: 18px 18px 24px !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.equipment-product-card img {
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: 90% !important;
  max-height: calc(100% - 58px) !important;
  object-fit: contain !important;
  margin: 0 auto 12px !important;
}

.equipment-product-card h3 {
  flex: 0 0 auto !important;
  width: 100% !important;
  margin: 0 !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  line-height: 1.22 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-align: center !important;
}

.hero-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.hero-stats div {
  min-height: 118px !important;
}

.news-list h2,
.news-list h3,
.news-list h3 a,
.news-page .news-list.expanded h2,
.news-page .news-list.expanded h2 a {
  font-size: clamp(22px, 2.1vw, 30px) !important;
  line-height: 1.22 !important;
}

.detail-article > h1 {
  font-size: clamp(34px, 4vw, 48px) !important;
  line-height: 1.16 !important;
}

.contact-info ul {
  gap: 10px !important;
}

.contact-info li {
  display: grid !important;
  grid-template-columns: 94px minmax(0, 1fr) !important;
  align-items: center !important;
  min-height: 54px !important;
  padding: 12px 16px !important;
}

.contact-info li strong,
.contact-info li span {
  line-height: 1.3 !important;
}

@media (max-width: 720px) {
  .site-header {
    gap: 10px !important;
    padding-bottom: 8px !important;
  }

  .nav {
    gap: 14px !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
  }

  .nav a {
    font-size: 14px !important;
  }

  .lang-select {
    min-width: 86px !important;
    max-width: 118px !important;
    height: 38px !important;
    padding-left: 12px !important;
    font-size: 13px !important;
  }

  .hero,
  .philosophy {
    margin-bottom: 0 !important;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .hero-stats div {
    min-height: 98px !important;
    padding: 16px 12px !important;
  }

  .hero-stats dt {
    font-size: 24px !important;
  }

  .hero-stats dd {
    font-size: 13px !important;
  }

  .equipment-section {
    padding-top: 28px !important;
  }

  .equipment-section .section-heading {
    margin-bottom: 12px !important;
  }

  .equipment-section .section-heading h2 {
    margin-bottom: 10px !important;
  }

  .equipment-section .section-heading p:not(.eyebrow) {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .equipment-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .equipment-product-card {
    min-height: 0 !important;
    padding: 12px 10px 14px !important;
  }

  .equipment-product-card img {
    max-width: 92% !important;
    max-height: calc(100% - 48px) !important;
    margin-bottom: 8px !important;
  }

  .equipment-product-card h3 {
    font-size: 16px !important;
    line-height: 1.2 !important;
  }

  .news-list h2,
  .news-list h3,
  .news-list h3 a,
  .news-page .news-list.expanded h2,
  .news-page .news-list.expanded h2 a {
    font-size: 20px !important;
    line-height: 1.26 !important;
  }

  .news-section .news-list article:nth-child(n+7) {
    display: none !important;
  }

  .news-section .news-list article p {
    display: none !important;
  }

  .detail-article > h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }

  .contact-info li {
    grid-template-columns: 64px minmax(0, 1fr) !important;
    gap: 10px !important;
    min-height: 44px !important;
    padding: 10px 12px !important;
  }

  .contact-info li strong,
  .contact-info li span {
    font-size: 15px !important;
  }
}

/* 20260706 form placeholder labels */
.consult-form label {
  gap: 0 !important;
}

.consult-form label > span {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: #173633 !important;
  opacity: 1 !important;
  font-weight: 800 !important;
}

/* 20260709 admin/news/multilingual refinements */
.detail-body h2,
.detail-body h3,
.detail-body h4 {
  margin: 24px 0 10px !important;
  font-size: clamp(22px, 2vw, 28px) !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
}

@media (max-width: 720px) {
  .detail-body h2,
  .detail-body h3,
  .detail-body h4 {
    font-size: 20px !important;
    line-height: 1.35 !important;
  }
}


/* 20260721 SEO URL + store cases + admin polish */
.header-actions { gap: 16px !important; }
.language-switch span { margin-left: 8px; }
.hero.hero-with-cases {
  display: grid !important;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr) !important;
  align-items: center !important;
  gap: clamp(24px, 4vw, 56px) !important;
  padding: clamp(58px, 7vw, 96px) clamp(20px, 5vw, 96px) !important;
  overflow: hidden !important;
}
.hero.hero-with-cases .hero-copy { max-width: 760px !important; }
.hero.hero-with-cases h1 { overflow-wrap: anywhere; }
.hero.hero-with-cases .hero-text { max-width: 720px; line-height: 1.75; }
.hero-stats-six { grid-template-columns: repeat(3,minmax(0,1fr)) !important; gap: 16px !important; }
.hero-stats-six div { min-height: 122px !important; padding: 22px 20px !important; border-radius: 8px !important; }
.store-case-panel { width: 100%; min-width: 0; }
.store-case-carousel {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(0,153,164,.24);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0,113,112,.12);
}
.store-case-slide { display: none; }
.store-case-slide.active { display: block; }
.store-case-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 6px;
  background: #f7ffff;
}
.case-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #0d3937;
  font-size: 34px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  cursor: pointer;
}
.case-arrow-prev { left: 28px; }
.case-arrow-next { right: 28px; }
.store-case-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.store-case-dots button {
  width: 30px;
  height: 8px;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.78);
  cursor: pointer;
}
.store-case-dots button.active { background: #ffc928; }
.cases { display: none !important; }
@media (max-width: 900px) {
  .hero.hero-with-cases { grid-template-columns: 1fr !important; padding: 28px 18px 44px !important; gap: 22px !important; }
  .hero-stats-six { grid-template-columns: repeat(2,minmax(0,1fr)) !important; gap: 12px !important; }
  .hero-stats-six div { min-height: 100px !important; padding: 18px 14px !important; }
  .store-case-carousel { padding: 10px; }
  .store-case-slide img { aspect-ratio: 16 / 10; object-fit: contain; }
  .case-arrow { width: 38px; height: 38px; font-size: 28px; }
  .case-arrow-prev { left: 16px; }
  .case-arrow-next { right: 16px; }
  .store-case-dots { bottom: 18px; }
}
@media (max-width: 520px) {
  .hero-stats-six div dt { font-size: 22px !important; }
  .hero-stats-six div dd { font-size: 13px !important; line-height: 1.45 !important; }
}
.admin-tabs .admin-tab-row { display: flex; align-items: center; gap: 8px; }
.admin-tabs .admin-tab-row > a:first-child { flex: 1; }
.admin-tabs .admin-tab-row.active > a:first-child { background: #13bdc3; color: #fff; }
.admin-add-link { flex: 0 0 auto !important; width: auto !important; padding: 8px 10px !important; border-radius: 999px !important; font-size: 13px !important; background: #e7fbfb !important; color: #008c93 !important; border: 1px solid #b8eeee !important; }
.admin-list-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.seo-lang-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin: 16px 0 24px; }
.seo-lang-card { border: 1px solid #cbeeee; border-radius: 8px; padding: 16px; background: #fbffff; }
.seo-lang-card legend { padding: 0 8px; font-weight: 800; color: #008f96; }
@media (max-width: 760px) { .seo-lang-grid { grid-template-columns: 1fr; } }


/* 20260721 stable homepage preview + language/news route fix */
.header-actions { gap: 22px !important; }
.language-switch {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 118px !important;
  height: 48px !important;
  padding: 0 22px !important;
  border: 1px solid #bfe8e8 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #123c3a !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}
.language-switch span { margin-left: 8px !important; font-size: 20px !important; line-height: 1 !important; }
@media (min-width: 1180px) {
  .hero.hero-with-cases {
    grid-template-columns: minmax(610px, .96fr) minmax(610px, 1.04fr) !important;
    gap: clamp(36px, 4.4vw, 72px) !important;
    padding: clamp(62px, 6.6vw, 88px) clamp(42px, 5vw, 100px) !important;
    align-items: center !important;
    overflow: hidden !important;
  }
  .hero.hero-with-cases .hero-copy { max-width: 760px !important; }
  .hero.hero-with-cases h1 {
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
    font-size: clamp(58px, 5vw, 80px) !important;
    line-height: 1.05 !important;
    margin: 18px 0 24px !important;
  }
  .hero.hero-with-cases .hero-text {
    max-width: 720px !important;
    font-size: clamp(20px, 1.45vw, 27px) !important;
    line-height: 1.58 !important;
  }
  .hero-stats-six {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    max-width: 720px !important;
  }
  .hero-stats-six div { min-height: 112px !important; padding: 20px 22px !important; border-radius: 8px !important; }
  .hero-stats-six div dt { font-size: clamp(24px, 1.65vw, 32px) !important; line-height: 1.12 !important; white-space: normal !important; word-break: keep-all !important; }
  .hero-stats-six div dd { font-size: 15px !important; line-height: 1.45 !important; }
  .store-case-panel { align-self: center !important; }
  .store-case-carousel { padding: 28px !important; border-radius: 8px !important; background: #fff !important; }
  .store-case-slide img { aspect-ratio: 16 / 9 !important; object-fit: contain !important; background: #f8ffff !important; border-radius: 6px !important; }
  .store-case-dots { bottom: 34px !important; }
  .case-arrow-prev { left: 38px !important; }
  .case-arrow-next { right: 38px !important; }
}
@media (min-width: 901px) and (max-width: 1179px) {
  .hero.hero-with-cases { grid-template-columns: 1fr !important; padding: 48px 28px 60px !important; }
  .hero.hero-with-cases h1 { white-space: normal !important; word-break: keep-all !important; font-size: clamp(48px, 7vw, 68px) !important; }
  .hero-stats-six { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; max-width: none !important; }
  .store-case-carousel { max-width: 820px !important; margin: 0 auto !important; }
}
@media (max-width: 900px) {
  .hero.hero-with-cases { grid-template-columns: 1fr !important; padding: 28px 18px 44px !important; gap: 22px !important; }
  .hero.hero-with-cases h1 { white-space: normal !important; word-break: keep-all !important; overflow-wrap: normal !important; }
  .hero-stats-six { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }
  .hero-stats-six div { min-height: 100px !important; padding: 18px 14px !important; }
  .store-case-carousel { padding: 10px !important; }
  .store-case-slide img { aspect-ratio: 16 / 10 !important; object-fit: contain !important; }
}

/* 20260721 final admin/home hotfix */
.language-menu {
  position: relative !important;
  z-index: 80 !important;
  flex: 0 0 auto !important;
}

.language-menu-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-width: 142px !important;
  height: 48px !important;
  padding: 0 22px !important;
  border: 1px solid #bfe8e8 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #123c3a !important;
  font: inherit !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

.language-menu-button span {
  font-size: 18px !important;
  line-height: 1 !important;
}

.language-menu-list {
  position: absolute !important;
  right: 0 !important;
  top: calc(100% + 8px) !important;
  display: none !important;
  min-width: 168px !important;
  padding: 8px !important;
  border: 1px solid #bfe8e8 !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 18px 44px rgba(0, 70, 70, .18) !important;
}

.language-menu.open .language-menu-list {
  display: grid !important;
}

.language-menu-list a {
  display: block !important;
  padding: 10px 12px !important;
  border-radius: 6px !important;
  color: #173633 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.language-menu-list a:hover,
.language-menu-list a.active {
  background: #e7fbfb !important;
  color: #008c93 !important;
}

@media (min-width: 1180px) {
  .hero.hero-with-cases {
    padding-top: clamp(31px, 3.3vw, 44px) !important;
    padding-bottom: clamp(31px, 3.3vw, 44px) !important;
  }
}

@media (min-width: 901px) and (max-width: 1179px) {
  .hero.hero-with-cases {
    padding-top: 24px !important;
    padding-bottom: 30px !important;
  }
}

@media (max-width: 900px) {
  .hero.hero-with-cases {
    padding-top: 18px !important;
    padding-bottom: 24px !important;
  }
  .language-menu-button {
    min-width: 118px !important;
    height: 44px !important;
    padding: 0 16px !important;
  }
  .language-menu-list {
    min-width: 138px !important;
  }
}

/* 20260721 adminfix2: one-tap language menu, tighter home hero spacing */
.language-menu-button {
  min-width: 158px !important;
}

@media (min-width: 1180px) {
  .hero.hero-with-cases {
    padding-top: clamp(16px, 1.7vw, 24px) !important;
    padding-bottom: clamp(16px, 1.7vw, 24px) !important;
  }
  .hero.hero-with-cases h1 {
    font-size: clamp(58px, 5.8vw, 92px) !important;
    line-height: 1.08 !important;
  }
}

@media (min-width: 901px) and (max-width: 1179px) {
  .hero.hero-with-cases {
    padding-top: 12px !important;
    padding-bottom: 16px !important;
  }
  .hero.hero-with-cases h1 {
    font-size: clamp(42px, 6vw, 64px) !important;
  }
}

@media (max-width: 900px) {
  .hero.hero-with-cases {
    padding-top: 10px !important;
    padding-bottom: 14px !important;
  }
  .hero.hero-with-cases h1 {
    font-size: clamp(36px, 12vw, 56px) !important;
  }
}

html[lang="th"] .hero-case-frame,
html[lang="en"] .hero-case-frame {
  margin-top: 22px !important;
}

/* 20260721 adminfix2 visual correction after live check */
@media (min-width: 901px) {
  .hero.hero-with-cases {
    align-items: center !important;
  }
  .hero.hero-with-cases .hero-copy {
    min-width: 0 !important;
  }
  .hero.hero-with-cases h1 {
    font-size: clamp(48px, 4.8vw, 78px) !important;
    line-height: 1.08 !important;
    max-width: 760px !important;
  }
  .hero-case-frame {
    margin-top: 26px !important;
  }
}

@media (min-width: 1180px) {
  html[lang="en"] .hero.hero-with-cases h1,
  html[lang="th"] .hero.hero-with-cases h1,
  html[lang="ms"] .hero.hero-with-cases h1,
  html[lang="vi"] .hero.hero-with-cases h1,
  html[lang="id"] .hero.hero-with-cases h1,
  html[lang="es"] .hero.hero-with-cases h1 {
    font-size: clamp(44px, 4.2vw, 70px) !important;
  }
  html[lang="th"] .hero-case-frame,
  html[lang="ms"] .hero-case-frame,
  html[lang="vi"] .hero-case-frame,
  html[lang="id"] .hero-case-frame,
  html[lang="es"] .hero-case-frame {
    margin-top: 74px !important;
  }
}

/* 20260721 adminfix3: final live-safe homepage and language-menu overrides */
.language-menu-button {
  min-width: 158px !important;
  justify-content: center !important;
  gap: 0 !important;
}
.language-menu-button span {
  display: none !important;
}

.case-arrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  padding: 0 !important;
  text-align: center !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

@media (min-width: 1180px) {
  .hero.hero-with-cases {
    grid-template-columns: minmax(0, .92fr) minmax(560px, 1.08fr) !important;
    gap: clamp(34px, 4vw, 70px) !important;
    padding-top: clamp(44px, 4.6vw, 72px) !important;
    padding-bottom: clamp(42px, 4.4vw, 68px) !important;
    align-items: center !important;
  }
  .hero.hero-with-cases .hero-copy {
    max-width: 760px !important;
    min-width: 0 !important;
  }
  .hero.hero-with-cases h1 {
    font-size: clamp(48px, 4.4vw, 72px) !important;
    line-height: 1.06 !important;
    max-width: 760px !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
  }
  .hero.hero-with-cases .hero-text {
    max-width: 690px !important;
    white-space: normal !important;
  }
  .hero-stats-six {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
  .hero-stats-six div {
    min-height: 116px !important;
    padding: 22px 22px !important;
  }
  .store-case-panel {
    align-self: center !important;
    margin-top: 22px !important;
  }
  .store-case-carousel {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 28px !important;
    border-radius: 8px !important;
  }
  .store-case-slide img {
    aspect-ratio: 16 / 9 !important;
    object-fit: contain !important;
  }
  .store-case-dots {
    bottom: 38px !important;
  }
  html[lang="en"] .hero.hero-with-cases h1,
  html[lang="th"] .hero.hero-with-cases h1,
  html[lang="ms"] .hero.hero-with-cases h1,
  html[lang="vi"] .hero.hero-with-cases h1,
  html[lang="id"] .hero.hero-with-cases h1,
  html[lang="es"] .hero.hero-with-cases h1 {
    font-size: clamp(42px, 3.9vw, 62px) !important;
    line-height: 1.08 !important;
  }
  html[lang="th"] .store-case-panel,
  html[lang="ms"] .store-case-panel,
  html[lang="vi"] .store-case-panel,
  html[lang="id"] .store-case-panel,
  html[lang="es"] .store-case-panel {
    margin-top: 72px !important;
  }
}

@media (min-width: 901px) and (max-width: 1179px) {
  .hero.hero-with-cases {
    padding-top: 34px !important;
    padding-bottom: 38px !important;
  }
  .hero.hero-with-cases h1 {
    font-size: clamp(40px, 5vw, 60px) !important;
    line-height: 1.08 !important;
  }
  .store-case-panel {
    margin-top: 18px !important;
  }
}

@media (max-width: 900px) {
  .hero.hero-with-cases {
    padding-top: 20px !important;
    padding-bottom: 28px !important;
  }
  .hero.hero-with-cases h1 {
    font-size: clamp(34px, 10vw, 50px) !important;
    line-height: 1.08 !important;
  }
}

/* 20260721 adminfix4: compact franchise process cards on mobile */
@media (max-width: 720px) {
  .franchise .step-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  .franchise .step-grid article {
    min-height: 0 !important;
    padding: 16px 12px !important;
    border-radius: 8px !important;
  }
  .franchise .step-grid span {
    margin-bottom: 10px !important;
    font-size: 20px !important;
    line-height: 1.1 !important;
  }
  .franchise .step-grid h3 {
    margin-bottom: 6px !important;
    font-size: 19px !important;
    line-height: 1.2 !important;
  }
  .franchise .step-grid p {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
}
/* Admin font-size refinement 20260722 */
.admin-body {
  font-size: 16px;
}

.admin-shell {
  max-width: 1280px;
}

.admin-top h1 {
  font-size: clamp(42px, 5vw, 64px) !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  margin: 8px 0 12px !important;
}

.admin-top p {
  font-size: 17px !important;
  line-height: 1.7 !important;
}

.admin-layout {
  gap: 28px !important;
}

.admin-tabs {
  gap: 12px !important;
}

.admin-tabs > a,
.admin-tab-row > a {
  font-size: 20px !important;
  line-height: 1.25 !important;
  min-height: 52px !important;
  padding: 14px 20px !important;
}

.admin-tab-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.admin-add-link {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  padding: 0 !important;
  font-size: 16px !important;
  line-height: 52px !important;
}

.admin-panel h2 {
  font-size: clamp(32px, 3.2vw, 46px) !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
  margin: 0 0 22px !important;
}

.admin-list {
  gap: 12px !important;
}

.admin-item {
  padding: 18px 22px !important;
  gap: 14px !important;
}

.admin-item h3 {
  font-size: 22px !important;
  line-height: 1.35 !important;
  margin: 0 0 10px !important;
}

.admin-item h3 a {
  font-size: inherit !important;
  line-height: inherit !important;
}

.admin-item p {
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.admin-meta {
  font-size: 14px !important;
}

.admin-actions .button,
.admin-item .button,
.admin-form .button,
.button.ghost {
  font-size: 15px !important;
}

.admin-actions .button,
.admin-item .button {
  padding: 9px 16px !important;
  min-height: 42px !important;
}

.admin-form label,
.admin-check,
.admin-table {
  font-size: 16px !important;
}

.editor-toolbar .button {
  font-size: 15px !important;
}

.seo-lang-card legend {
  font-size: 18px !important;
}

@media (max-width: 900px) {
  .admin-top h1 {
    font-size: 38px !important;
  }

  .admin-panel h2 {
    font-size: 30px !important;
  }

  .admin-tabs > a,
  .admin-tab-row > a {
    font-size: 18px !important;
  }

  .admin-add-link {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    line-height: 48px !important;
    font-size: 15px !important;
  }

  .admin-item h3 {
    font-size: 20px !important;
  }
}
