/*
Theme Name: 易森智能 Eason
Theme URI: https://www.easonbot.com
Description: 易森智能 Eason 企业官网主题 —— 专注植树机器人，简约大气的风格。
Version: 1.0.0
Author: WorkBuddy
Author URI: https://www.easonbot.com
Tags: enterprise, minimal, green, responsive, robotics
Text Domain: easonbot
*/

/* ===========================================================
   Design Tokens
   =========================================================== */
:root {
  --green-900: #0e3b2e;
  --green-800: #12503c;
  --green-700: #166b4e;
  --green-600: #1f8a5b;
  --green-500: #27a06b;
  --green-300: #7fd1a3;
  --green-100: #e6f4ec;
  --green-50: #f3f9f5;

  --ink: #16201b;
  --muted: #5e6b64;
  --line: #e4ebe7;
  --bg: #ffffff;
  --bg-soft: #f5f8f6;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(14, 59, 46, 0.06);
  --shadow-md: 0 14px 40px rgba(14, 59, 46, 0.10);
  --shadow-lg: 0 30px 70px rgba(14, 59, 46, 0.14);

  --container: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei",
    "Noto Sans SC", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ===========================================================
   Base
   =========================================================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
a { color: var(--green-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-700); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--green-900); color: #eafff4; }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--green-300); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--dark .section-head p { color: #b9d8c9; }

/* ===========================================================
   Buttons
   =========================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; cursor: pointer;
  border: 1.5px solid transparent; transition: all .22s ease;
  line-height: 1;
}
.btn--primary { background: var(--green-600); color: #fff; }
.btn--primary:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green-600); color: var(--green-700); }
.btn--light { background: #fff; color: var(--green-800); }
.btn--light:hover { background: var(--green-100); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ===========================================================
   Header / Nav
   =========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: all .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand .logo-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
}
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand .brand-text b { font-size: 1.05rem; letter-spacing: .02em; }
.brand .brand-text span { font-size: .72rem; color: var(--muted); letter-spacing: .12em; }

.main-menu { display: flex; align-items: center; gap: 30px; }
.main-menu a {
  color: var(--ink); font-weight: 500; font-size: .96rem; position: relative; padding: 6px 0;
}
.main-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--green-600); transition: width .25s ease;
}
.main-menu a:hover::after, .main-menu .current-menu-item > a::after { width: 100%; }

/* Sub-menu dropdown */
.has-sub { position: relative; }
.has-sub > a::after {
  content:''; display:inline-block; width:0; height:0;
  margin-left:6px; vertical-align:middle;
  border-left:4px solid transparent; border-right:4px solid transparent;
  border-top:5px solid currentColor; opacity:.5;
}
.sub-menu {
  display:none; position:absolute; top:100%; left:0;
  min-width:180px; background:#fff; border:1px solid var(--line);
  border-radius:10px; box-shadow:var(--shadow-lg);
  padding:6px 0; list-style:none; margin:8px 0 0; z-index:200;
}
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu { display:block; }
.sub-menu a {
  display:block; padding:9px 18px; font-size:.88rem;
  white-space:nowrap; border-radius:6px; color:var(--ink) !important;
}
.sub-menu a::after { display:none !important; }
.sub-menu a:hover { background:#f0fdf4; color:var(--green-600) !important; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 80% 0%, #166b4e 0%, #0e3b2e 55%, #08271e 100%);
  color: #eafff4; padding: clamp(80px, 12vw, 150px) 0 clamp(70px, 9vw, 120px);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 12% 20%, rgba(127,209,163,.18), transparent 70%),
    radial-gradient(40% 40% at 90% 80%, rgba(39,160,107,.22), transparent 70%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: var(--green-300); }
.hero p.lead { color: #c7e6d6; font-size: 1.15rem; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 50px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-size: 1.9rem; color: #fff; font-weight: 800; }
.hero-stats .stat span { color: #9fc8b6; font-size: .9rem; }

.hero-visual { position: relative; }
.hero-visual svg { width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.35)); }

/* ===========================================================
   Feature grid
   =========================================================== */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; background: var(--green-100);
  display: grid; place-items: center; color: var(--green-700); margin-bottom: 18px;
}
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: .97rem; }

/* ===========================================================
   Product cards
   =========================================================== */
.product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product .thumb {
  height: 200px; background: linear-gradient(135deg, var(--green-100), var(--green-50));
  display: grid; place-items: center; position: relative;
}
.product .thumb svg { width: 60%; height: auto; }
.product .body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.product .tag { display: inline-block; font-size: .75rem; font-weight: 600; color: var(--green-700); background: var(--green-100); padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; align-self: flex-start; }
.product h3 { margin-bottom: 8px; }
.product p { color: var(--muted); font-size: .95rem; flex: 1; }
.product .specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 18px; }
.product .specs li { font-size: .8rem; color: var(--green-800); background: var(--green-50); border: 1px solid var(--line); padding: 5px 11px; border-radius: 8px; }
.product .more { font-weight: 600; color: var(--green-600); display: inline-flex; align-items: center; gap: 6px; }

/* ===========================================================
   Service list
   =========================================================== */
.services {
  padding: 0;
}
.service-row {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 22px; align-items: center;
  padding: 28px 0; border-top: 1px solid var(--line);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row .num { width: 56px; height: 56px; border-radius: 14px; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; }
.service-row h3 { margin: 0 0 4px; }
.service-row p { margin: 0; color: var(--muted); font-size: .95rem; }
.service-row .arrow { color: var(--green-600); font-size: 1.4rem; }

/* ===========================================================
   Stats band
   =========================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-grid .stat b { display: block; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: #fff; }
.stats-grid .stat span { color: var(--green-300); font-size: .95rem; }

/* ===========================================================
   CTA band
   =========================================================== */
.cta-band { background: linear-gradient(135deg, var(--green-700), var(--green-900)); color: #fff; border-radius: 24px; padding: clamp(40px, 6vw, 64px); text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #c7e6d6; max-width: 560px; margin: 0 auto 28px; }

/* ===========================================================
   About page
   =========================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .media {
  border-radius: var(--radius); min-height: 380px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  display: grid; place-items: center;
}
.split .media svg { width: 70%; }

.timeline { margin-top: 20px; border-left: 2px solid var(--line); padding-left: 28px; }
.timeline li { position: relative; padding: 0 0 30px; }
.timeline li::before { content: ""; position: absolute; left: -35px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--green-600); box-shadow: 0 0 0 4px var(--green-100); }
.timeline .year { font-weight: 700; color: var(--green-700); display: block; margin-bottom: 4px; }
.timeline p { color: var(--muted); margin: 0; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.value { text-align: center; padding: 16px; }
.value .ico { width: 56px; height: 56px; margin: 0 auto 14px; }

/* ===========================================================
   Contact
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 8px; color: var(--ink); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .97rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px var(--green-100);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-success { background: var(--green-100); color: var(--green-800); border: 1px solid var(--green-300); padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 600; }
.form-error { background: #fdecec; color: #b42318; border: 1px solid #f6c6c0; padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 600; }

.info-card { background: var(--green-900); color: #eafff4; border-radius: var(--radius); padding: 34px; }
.info-card h3 { color: #fff; }
.info-card .row { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12); }
.info-card .row:first-of-type { border-top: 0; }
.info-card .row .ico { color: var(--green-300); flex-shrink: 0; }
.info-card .row b { display: block; color: #fff; font-size: .92rem; }
.info-card .row span { color: #b9d8c9; font-size: .9rem; }
.map-box { margin-top: 18px; height: 200px; border-radius: var(--radius-sm); background: linear-gradient(135deg,#14503c,#0c3327); display: grid; place-items: center; color: #9fc8b6; font-size: .9rem; }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { background: var(--green-900); color: #c7e6d6; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer .brand .brand-text b, .site-footer .brand { color: #fff; }
.site-footer p { color: #9fc8b6; font-size: .92rem; }
.footer-col h4 { color: #fff; font-size: .98rem; margin-bottom: 18px; }
.footer-col a { color: #b9d8c9; display: block; padding: 6px 0; font-size: .92rem; }
.footer-col a:hover { color: #fff; }
.footer-col .contact-line { display: flex; gap: 10px; padding: 6px 0; font-size: .9rem; color: #b9d8c9; }
.footer-col .contact-line .ico { color: var(--green-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #8fb6a3; }

/* ===========================================================
   Real Assets (images)
   =========================================================== */

.brand .logo-img { height: 38px; width: auto; flex-shrink: 0; }

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  height: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
}

.product .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product .thumb img.illu {
  object-fit: contain;
  padding: 22px;
}

.core-tech-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.core-tech-diagram {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #fff;
}
.core-tech-diagram img { width: 100%; height: auto; display: block; }

.split .media {
  aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius);
}
.split .media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ===========================================================
   Misc
   =========================================================== */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag-row span { font-size: .82rem; color: var(--green-800); background: var(--green-50); border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; }

.breadcrumb { font-size: .85rem; color: var(--muted); padding: 22px 0 0; }
.breadcrumb a { color: var(--muted); }
.page-hero { background: var(--bg-soft); padding: 56px 0 40px; }
.page-hero h1 { margin-bottom: 8px; }
.page-hero p { color: var(--muted); max-width: 640px; margin: 0; }

.entry-content { font-size: 1.05rem; color: #2c3a33; }
.entry-content h2 { margin-top: 1.4em; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 460px; }
  .honor-gallery { grid-template-columns: repeat(2, 1fr); }
  .honor-gallery .honor-wide { grid-column: span 2; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .main-menu, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .main-menu.open {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 18px 24px; gap: 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 48px 1fr; }
  .service-row .arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

/* ===========================================================
   Product Detail Layout (City Products page)
   =========================================================== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.product-detail--reverse .product-detail-visual { order: 2; }

.product-detail-visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #f8fafb;
}
.product-detail-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: none;
}
.product-detail-visual .illu {
  padding: 2rem;
  background: linear-gradient(135deg, #f0fdf4, #ecfeff);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.product-detail-info .lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-top: .75rem;
}

/* ===========================================================
   Honor photo gallery — uniform sizing, no side whitespace
   =========================================================== */
.honor-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 2rem;
}
.honor-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #f1f5f3;
  display: block;
}
.honor-gallery .honor-wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}
.tag--lg {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(31,138,91,.1);
  color: var(--green-600);
  margin-bottom: .5rem;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: .75rem 0 1rem;
  font-size: .95rem;
}
.spec-table th {
  text-align: left;
  padding: 10px 16px;
  background: #f4f7f6;
  color: var(--muted);
  font-weight: 500;
  width: 40%;
  border-bottom: 1px solid var(--line);
}
.spec-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.spec-table tr:last-child td,
.spec-table tr:last-child th {
  border-bottom-color: transparent;
}

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-detail--reverse .product-detail-visual { order: 0; }
}

/* ===========================================================
   Language switcher (top-right)
   =========================================================== */
.lang-switch {
  display: flex; align-items: center; gap: 4px;
  margin-left: 14px; padding: 4px 6px;
  background: var(--green-50); border: 1px solid var(--line);
  border-radius: 999px; flex-shrink: 0;
}
.lang-switch a {
  font-size: .8rem; font-weight: 600; color: var(--muted);
  padding: 4px 9px; border-radius: 999px; line-height: 1; white-space: nowrap;
}
.lang-switch a:hover { color: var(--green-700); }
.lang-switch a.active { background: var(--green-600); color: #fff; }

/* ===========================================================
   New 3-tier architecture stack
   =========================================================== */
.arch-stack { display: flex; flex-direction: column; gap: 14px; }
.arch-layer {
  border-radius: var(--radius); padding: 22px 24px;
  border: 1px solid var(--line); position: relative; box-shadow: var(--shadow-sm);
}
.arch-layer h3 { margin: 6px 0 8px; font-size: 1.12rem; }
.arch-layer p { margin: 0; font-size: .92rem; color: var(--muted); }
.arch-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  padding: 3px 10px; border-radius: 999px;
}
.arch-top { background: linear-gradient(135deg,#e6f4ec,#f3f9f5); }
.arch-top .arch-tag { background: var(--green-600); color: #fff; }
.arch-mid { background: linear-gradient(135deg,#eef6f1,#f6faf8); }
.arch-mid .arch-tag { background: var(--green-500); color: #fff; }
.arch-bottom { background: linear-gradient(135deg,#eaf3ef,#f4f9f6); }
.arch-bottom .arch-tag { background: var(--green-700); color: #fff; }

/* ===========================================================
   Footer ICP
   =========================================================== */
.footer-icp { margin-top: 14px; font-size: .82rem; text-align: center; }
.footer-icp a { color: #8fb6a3; text-decoration: none; }
.footer-icp a:hover { color: #fff; text-decoration: underline; }

/* ===========================================================
   RTL adjustments (Arabic)
   =========================================================== */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .spec-table th,
html[dir="rtl"] .spec-table td { text-align: right; }
html[dir="rtl"] .service-row,
html[dir="rtl"] .breadcrumb,
html[dir="rtl"] .info-card .row,
html[dir="rtl"] .footer-col .contact-line { direction: rtl; }
html[dir="rtl"] .section-head,
html[dir="rtl"] .footer-bottom { text-align: right; }
html[dir="rtl"] .main-menu a::after { right: 0; left: auto; }
html[dir="rtl"] .product-detail--reverse .product-detail-visual { order: 2; }
html[dir="rtl"] .nav-toggle span { margin-left: 0; }
