:root {
  --ink: #29251f;
  --muted: #6c655b;
  --brand: #c95335;
  --brand-dark: #a6412a;
  --cream: #fbf8f2;
  --soft: #f5efe5;
  --line: #e7dfd3;
  --green: #1f7a49;
  --white: #fff;
  --shadow: 0 14px 35px rgba(48, 38, 25, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px 6vw;
  background: rgba(251, 248, 242, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: Sora, Arial, sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: .02em;
  direction: ltr;
}
.brand b { white-space: nowrap; }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand span { color: var(--brand); }
.desktop-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 32px); }
.desktop-nav a { font-size: 14px; font-weight: 600; white-space: nowrap; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--brand); }
.header-tools { display: flex; align-items: center; gap: 12px; }
#languageSwitcher {
  width: 72px;
  padding: 8px 6px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-weight: 700;
  font-size: 12px;
  direction: ltr;
}
.quote-link, .button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}
.quote-link, .button-primary { color: var(--white); background: var(--brand); }
.quote-link:hover, .button-primary:hover { background: var(--brand-dark); }
.button-secondary { background: var(--white); border-color: #d7cdbf; }
.button-secondary:hover { border-color: var(--brand); color: var(--brand); }
.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 76px 0 auto;
  z-index: 99;
  padding: 8px 6vw 16px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 26px rgba(0,0,0,.08);
}
.mobile-nav.open { display: grid; }
.mobile-nav a { padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 650; }

.page-hero { padding: clamp(54px, 8vw, 92px) 6vw 46px; text-align: center; }
.page-hero .eyebrow, .section-heading .eyebrow {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.page-hero h1 {
  max-width: 920px;
  margin: 0 auto 18px;
  font-family: Sora, Arial, sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -.02em;
}
.page-hero p { max-width: 760px; margin: 0 auto; color: var(--muted); font-size: clamp(16px, 2vw, 18px); }
.collection-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.collection-links a { padding: 9px 16px; color: var(--brand-dark); background: var(--white); border: 1px solid #dfc8bd; border-radius: 999px; font-size: 14px; font-weight: 700; }
.collection-links a:hover { color: var(--white); background: var(--brand); border-color: var(--brand); }
.breadcrumb { max-width: 1400px; margin: 0 auto; padding: 22px 6vw 0; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--brand); }

.section { padding: 58px 6vw; background: var(--white); }
.section.alt { background: var(--soft); }
.container { width: 100%; max-width: 1400px; margin: 0 auto; }
.container.narrow { max-width: 1050px; }
.section-heading { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.section-heading h2 { margin: 0 0 12px; font: 800 clamp(25px, 3.4vw, 36px)/1.2 Sora, Arial, sans-serif; }
.section-heading p { margin: 0; color: var(--muted); }
.two-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 6vw, 74px); align-items: center; }
.content-copy h2 { margin: 0 0 18px; font: 800 clamp(26px, 4vw, 38px)/1.18 Sora, Arial, sans-serif; }
.content-copy p { color: var(--muted); }
.feature-list { display: grid; gap: 15px; margin-top: 24px; }
.feature-item { display: grid; grid-template-columns: 10px 1fr; gap: 13px; }
.feature-item::before { content: ""; width: 8px; height: 8px; margin-top: 9px; border-radius: 50%; background: var(--brand); }
.feature-item strong { display: block; }
.feature-item span { color: var(--muted); font-size: 14px; }

.hero-photo, .gallery img, .activity-card img, .certificate-card img {
  display: block;
  width: 100%;
  background: #f2eee7;
}
.hero-photo { max-height: 520px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.contact-city-photo { height: auto; max-height: none; aspect-ratio: 900 / 500; object-fit: contain; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 16px; cursor: zoom-in; }
.gallery-title { margin: 42px 0 20px; font: 750 22px Sora, Arial, sans-serif; }

.about-gallery-tabs { display: flex; justify-content: center; gap: 10px; margin: 0 0 32px; flex-wrap: wrap; }
.about-gallery-tab {
  min-height: 43px;
  padding: 10px 26px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid #cfc2b3;
  border-radius: 999px;
  font: 650 14px Inter, Arial, sans-serif;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}
.about-gallery-tab.active { color: var(--white); background: var(--brand); border-color: var(--brand); }
.about-gallery-tab:focus-visible { outline: 3px solid rgba(204, 77, 48, .25); outline-offset: 3px; }
.about-gallery-panel[hidden] { display: none; }
.about-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.about-gallery-grid img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #ebe5dc;
  border-radius: 18px;
  cursor: zoom-in;
}
.founder-story { padding: clamp(28px, 4vw, 52px); background: #f2eee7; border-radius: 24px; }
.founder-story-photo { display: block; width: 100%; aspect-ratio: 1100 / 505; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow); cursor: zoom-in; }
.founder-speech { margin-top: 36px; color: #342f29; font-size: 16px; line-height: 1.8; }
.founder-accent { width: 44px; height: 3px; margin-bottom: 18px; background: var(--brand); }
.founder-speech h3 { margin: 0 0 20px; font: 750 26px Sora, Arial, sans-serif; }
.founder-speech p { margin: 0 0 16px; }
.founder-signature { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid #d7cdc0; }
.founder-signature span { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 40px; color: var(--white); background: var(--brand); border-radius: 50%; font: 750 16px Sora, Arial, sans-serif; }
.founder-signature strong { font: 700 15px Sora, Arial, sans-serif; }
.founder-values { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 28px; }

.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.info-card, .certificate-card, .activity-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(48,38,25,.05);
}
.info-card { padding: 28px 24px; }
.info-card .tag { margin-bottom: 8px; color: var(--brand); font: 800 22px Sora, Arial, sans-serif; }
.info-card h2, .info-card h3 { margin: 0 0 9px; font: 750 17px Sora, Arial, sans-serif; }
.info-card p { margin: 0; color: var(--muted); font-size: 14px; }
.steps { counter-reset: process; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.step { position: relative; padding: 24px 18px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.step::before { counter-increment: process; content: counter(process); display: grid; place-items: center; width: 36px; height: 36px; margin-bottom: 14px; color: var(--white); background: var(--brand); border-radius: 50%; font-weight: 800; }
.step h3 { margin: 0 0 8px; font-size: 15px; }
.step p { margin: 0; color: var(--muted); font-size: 13px; }

.responsive-table { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 650px; }
th, td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
th { background: var(--soft); font-size: 13px; }
td { font-size: 14px; }
tr:last-child td { border-bottom: 0; }

.pricing-plan-box { padding: 52px 48px; background: #f7f4ef; border-radius: 24px; }
.pricing-plan-heading { margin-bottom: 40px; }
.pricing-table-wrap { border: 0; border-radius: 12px; }
.pricing-table { min-width: 680px; }
.pricing-table th { padding: 16px 20px; color: var(--white); background: var(--brand); text-align: center; font-weight: 700; }
.pricing-table th:first-child { text-align: left; border-radius: 12px 0 0; }
.pricing-table th:last-child { border-radius: 0 12px 0 0; }
.pricing-table td { padding: 18px 20px; text-align: center; background: var(--white); }
.pricing-table tbody tr:nth-child(even) td { background: #fcfbf9; }
.pricing-table td:first-child { text-align: left; }
.pricing-table td small { display: block; margin-top: 3px; color: var(--muted); font-size: 12.5px; }
.pricing-table td > strong { font-weight: 700; }
.lead-time-badge { display: inline-block; padding: 4px 12px; color: #4c443a; background: #eee7dd; border-radius: 999px; font-size: 13px; font-weight: 700; white-space: nowrap; }
.lead-time-badge.urgent { color: #8b2f21; background: #f9e2dc; }
.price-high { color: var(--brand); }
.price-low { color: #277349; }
.pricing-table .ready-stock-row td { color: #235f42; background: #eaf6ee; }
.lead-time-badge.stock { color: #175a39; background: #cdebd7; }
.pricing-note { margin: 20px 0 0; color: var(--muted); text-align: center; font-size: 13px; line-height: 1.6; }
html[dir="rtl"] .pricing-table th:first-child, html[dir="rtl"] .pricing-table td:first-child { text-align: right; }
html[dir="rtl"] .pricing-table th:first-child { border-radius: 0 12px 0 0; }
html[dir="rtl"] .pricing-table th:last-child { border-radius: 12px 0 0; }

.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px; }
.filter-button {
  padding: 10px 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d4c9bb;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.filter-button.active { color: var(--white); background: var(--brand); border-color: var(--brand); }
.product-search { max-width: 560px; margin: 0 auto 34px; }
.product-search label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 750; }
.product-search input {
  width: 100%;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d4c9bb;
  border-radius: 11px;
}
.search-status { min-height: 20px; margin-top: 6px; color: var(--muted); font-size: 13px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.prod-card {
  content-visibility: auto;
  contain-intrinsic-size: 470px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.prod-card > img { display: block; width: 100%; height: clamp(200px, 28vw, 360px); object-fit: contain; background: #f2f0ec; cursor: zoom-in; }
.collection-product-link { display: block; height: 100%; }
.collection-product-link > img { display: block; width: 100%; height: clamp(200px, 28vw, 360px); object-fit: contain; background: #f2f0ec; }
.collection-product-link:hover .product-model { color: var(--brand); }
.collection-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 38px; }
.product-body { padding: 18px; }
.product-model { margin-bottom: 8px; font: 750 16px Sora, Arial, sans-serif; }
.product-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 10px; color: var(--muted); font-size: 13px; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.product-actions button, .inquiry-add-btn {
  min-height: 42px;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d9cdbd;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 750;
  cursor: pointer;
}
.inquiry-add-btn { width: 100%; margin-top: 9px; color: var(--brand-dark); border-color: #e8a18f; }
.inquiry-add-btn.selected { color: #176039; background: #def5e5; border-color: #a5d9b6; }

.certificate-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.certificate-card img { height: 320px; object-fit: contain; }
.certificate-copy, .activity-copy { padding: 18px; }
.certificate-copy h2, .certificate-copy h3, .activity-copy h2, .activity-copy h3 { margin: 0 0 6px; font: 750 16px Sora, Arial, sans-serif; }
.certificate-copy p, .activity-copy p { margin: 0; color: var(--muted); font-size: 13.5px; }
.activity-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.activity-card img { height: 350px; object-fit: cover; cursor: zoom-in; }
.canton-fair-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.canton-fair-card {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(48,38,25,.05);
}
.canton-fair-photo {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  background: #f2eee7;
}
.canton-fair-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}
.canton-fair-card figcaption { padding: 15px 18px 17px; color: var(--text); font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 46px; align-items: start; }
.contact-list { display: grid; gap: 18px; }
.contact-item span { display: block; color: var(--brand); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.map { width: 100%; height: 410px; border: 1px solid var(--line); border-radius: 18px; }
.cta {
  margin-top: 54px;
  padding: clamp(30px, 5vw, 54px);
  text-align: center;
  background: linear-gradient(135deg, #fff7ee, #fae8df);
  border: 1px solid #efd3c5;
  border-radius: 24px;
}
.cta h2 { margin: 0 0 10px; font: 800 clamp(22px, 3vw, 30px) Sora, Arial, sans-serif; }
.cta p { max-width: 650px; margin: 0 auto 24px; color: var(--muted); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.context-link {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.context-link:hover { color: var(--brand); }
.zhili-section-label {
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.zhili-collection-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.zhili-image-card, .zhili-wide-photo {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.zhili-image-card img, .zhili-wide-photo img {
  display: block;
  width: 100%;
  height: auto;
  background: #f2eee7;
  cursor: zoom-in;
}
.zhili-image-card:not(.zhili-landscape) img { max-height: 540px; object-fit: contain; }
.zhili-image-card figcaption, .zhili-wide-photo figcaption {
  padding: 13px 16px;
  color: var(--muted);
  font-size: 13px;
}
.zhili-collection-copy h3 { margin: 0 0 16px; font: 800 clamp(23px, 3vw, 32px)/1.2 Sora, Arial, sans-serif; }
.zhili-collection-copy p { color: var(--muted); }
.zhili-collection-copy .button-primary { margin-top: 10px; }
.zhili-section-note { max-width: 820px; margin: 28px auto 0; color: var(--muted); text-align: center; }
.zhili-wide-photo { max-width: 920px; margin: 36px auto 0; }
.zhili-wide-photo img { aspect-ratio: 3 / 2; object-fit: cover; }
.zhili-faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.zhili-faq-item { padding: 24px; background: var(--soft); border: 1px solid var(--line); border-radius: 16px; }
.zhili-faq-item h3 { margin: 0 0 9px; font: 750 16px/1.4 Sora, Arial, sans-serif; }
.zhili-faq-item p { margin: 0; color: var(--muted); font-size: 14px; }

.site-footer { padding: 42px 6vw; color: #d8d1c7; background: #262b33; }
.footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.site-footer strong { display: block; margin-bottom: 8px; color: var(--white); font-family: Sora, Arial, sans-serif; }
.site-footer a { color: #f0e8dc; }
.site-footer p { margin: 0; font-size: 13px; }
.copyright { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); text-align: center; font-size: 12px; }

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37,211,102,.38);
  font-weight: 900;
}

.image-viewer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 28px;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 13, .91);
}
.image-viewer.open { display: flex; }
.image-viewer img { max-width: min(1100px, 94vw); max-height: 90vh; object-fit: contain; }
.image-viewer button { position: absolute; top: 16px; right: 18px; width: 46px; height: 46px; color: var(--white); background: rgba(255,255,255,.14); border: 0; border-radius: 50%; font-size: 28px; cursor: pointer; }

#inquiryFloat {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 125;
  min-height: 46px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--brand);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 800;
  cursor: pointer;
}
#inquiryFloat.visible { display: block; }
#inquiryOverlay { display: none; position: fixed; inset: 0; z-index: 1300; padding: 18px; background: rgba(26,22,17,.58); overflow-y: auto; }
#inquiryOverlay.open { display: block; }
.inquiry-panel { width: min(900px, 100%); margin: 0 auto; background: var(--cream); border-radius: 22px; overflow: hidden; }
.inquiry-head, .inquiry-foot { padding: 22px 28px; background: var(--white); border-bottom: 1px solid var(--line); }
.inquiry-head { display: flex; justify-content: space-between; gap: 20px; }
.inquiry-head h2 { margin: 0; font: 800 26px Sora, Arial, sans-serif; }
.inquiry-head p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }
#inquiryClose { width: 42px; height: 42px; border: 0; border-radius: 50%; font-size: 24px; cursor: pointer; }
.inquiry-details { padding: 22px 28px; border-bottom: 1px solid var(--line); }
.inquiry-details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.inquiry-detail-field label, .inquiry-field label { display: block; margin-bottom: 5px; font-size: 12px; font-weight: 750; }
.inquiry-detail-field input, .inquiry-detail-field select, .inquiry-field input { width: 100%; min-height: 42px; padding: 9px 12px; border: 1px solid #d5ccbf; border-radius: 9px; background: var(--white); }
.inquiry-bulk { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; margin-top: 15px; }
#inquiryApplyQuantity { min-height: 42px; padding: 8px 20px; color: var(--white); background: var(--ink); border: 0; border-radius: 9px; font-weight: 750; }
#inquiryTotals { margin-top: 14px; padding: 10px 13px; color: #225c3c; background: #daf2df; border-radius: 9px; font-size: 13px; font-weight: 750; }
#inquiryItems { display: grid; gap: 11px; padding: 22px 28px; max-height: 42vh; overflow-y: auto; }
.inquiry-item { display: grid; grid-template-columns: 1.1fr .65fr 1.2fr auto; gap: 12px; align-items: end; padding: 16px; background: var(--white); border: 1px solid var(--line); border-radius: 13px; }
.inquiry-model { align-self: center; font-weight: 800; }
.inquiry-meta { display: block; color: var(--muted); font-size: 12px; font-weight: 400; }
.inquiry-remove { width: 42px; height: 42px; color: #b63333; background: #fee8e4; border: 0; border-radius: 9px; font-size: 20px; }
.inquiry-foot { border-top: 1px solid var(--line); border-bottom: 0; }
#inquiryStatus { min-height: 20px; margin-bottom: 8px; color: var(--green); font-size: 13px; }
.inquiry-actions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.inquiry-action { min-height: 44px; padding: 9px; background: var(--white); border: 1px solid #d5ccbf; border-radius: 999px; font-weight: 750; cursor: pointer; }
#inquiryWhatsApp { color: var(--white); background: #25d366; border-color: #25d366; }
#inquiryEmail { color: var(--white); background: var(--brand); border-color: var(--brand); }

html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .desktop-nav, html[dir="rtl"] .header-tools, html[dir="rtl"] .product-meta { direction: rtl; }
html[dir="rtl"] input, html[dir="rtl"] textarea, html[dir="rtl"] select, html[dir="rtl"] th, html[dir="rtl"] td { text-align: right; }
html[dir="rtl"] #languageSwitcher { text-align: left; }

@media (max-width: 1050px) {
  .desktop-nav, .quote-link { display: none; }
  .mobile-menu-button { display: inline-flex; }
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .certificate-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .about-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-header { min-height: 70px; padding: 12px 4vw; }
  .brand { font-size: 16px; }
  .brand img { width: 36px; height: 36px; }
  .header-tools { gap: 7px; }
  #languageSwitcher { width: 56px; }
  .mobile-nav { inset: 70px 0 auto; padding-inline: 5vw; }
  .page-hero { padding: 46px 5vw 38px; }
  .breadcrumb { padding-inline: 5vw; }
  .section { padding: 44px 5vw; }
  .two-column, .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .about-gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .about-gallery-grid img { height: min(72vw, 300px); }
  .about-gallery-tabs { gap: 8px; margin-bottom: 24px; }
  .about-gallery-tab { padding-inline: 18px; }
  .founder-story { padding: 20px 16px; }
  .founder-speech { margin-top: 26px; font-size: 15px; }
  .founder-speech h3 { font-size: 22px; }
  .founder-values { grid-template-columns: 1fr; gap: 14px; }
  .pricing-plan-box { padding: 34px 16px; border-radius: 20px; }
  .pricing-plan-heading { margin-bottom: 28px; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .certificate-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps { grid-template-columns: 1fr; }
  .info-card { padding: 20px 17px; }
  .product-body { padding: 13px; }
  .product-model { font-size: 14px; }
  .product-meta { grid-template-columns: 1fr; font-size: 12px; }
  .product-actions { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
  .activity-card img { height: 280px; }
  .canton-fair-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .inquiry-details-grid { grid-template-columns: 1fr; }
  .inquiry-item { grid-template-columns: 1fr 1fr; }
  .inquiry-model, .inquiry-field.notes { grid-column: 1 / -1; }
  .inquiry-remove { justify-self: end; }
  .inquiry-actions { grid-template-columns: 1fr 1fr; }
  .inquiry-head, .inquiry-details, #inquiryItems, .inquiry-foot { padding: 18px; }
  #inquiryOverlay { padding: 8px; }
  .inquiry-panel { border-radius: 18px; }
  .zhili-collection-grid, .zhili-faq-grid { grid-template-columns: 1fr; }
  .zhili-image-card:not(.zhili-landscape) img { max-height: none; }
  .zhili-faq-item { padding: 20px 17px; }
}

@media (max-width: 420px) {
  .brand span { display: none; }
  .product-actions { display: block; }
  .product-actions button { width: 100%; margin-bottom: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
