:root {
  color-scheme: light;
  --ink: #101713;
  --muted: #667069;
  --line: #d7ddd7;
  --paper: #f4f6f2;
  --white: #ffffff;
  --green: #228347;
  --green-dark: #0d3f24;
  --green-soft: #e8f4ea;
  --green-mist: #f3faf4;
  --yellow: #86b93b;
  --red: #bd332f;
  --blue: #245d99;
  --steel: #2d3941;
  --black: #0b321d;
  --shadow: 0 24px 70px rgba(13, 63, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 60px);
  border-bottom: 1px solid rgba(215, 221, 215, 0.82);
  background: rgba(243, 250, 244, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 310px;
}

.brand-mark {
  display: grid;
  width: 74px;
  height: 46px;
  place-items: center;
  background: var(--green-dark);
  color: #d8f2c1;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-width: 0;
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
}

.nav-admin,
.primary-action,
.secondary-action,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid transparent;
  cursor: pointer;
}

.nav-admin {
  background: var(--green-dark);
  color: var(--white);
  padding: 0 16px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid #cfe3d1;
  background: var(--white);
  color: var(--green-dark);
}

.language-switcher select {
  min-height: 32px;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 900;
  cursor: pointer;
}

.primary-action {
  background: var(--green);
  color: var(--white);
  padding: 0 20px;
  font-weight: 900;
}

.secondary-action {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0 18px;
  font-weight: 800;
}

.icon-button {
  width: 44px;
  padding: 0;
  background: var(--white);
  border-color: var(--line);
}

[data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2.1;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 41, 22, 0.94) 0%, rgba(13, 63, 36, 0.76) 42%, rgba(34, 131, 71, 0.22) 100%),
    url("https://www.publicdomainpictures.net/pictures/490000/velka/tractor-agricultural-vehicle.jpg")
      center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(900px, 68vw);
  padding: 78px clamp(18px, 6vw, 76px) 160px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.admin-header h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(44px, 6.7vw, 92px);
}

.hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
}

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

.hero .secondary-action {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero-contact {
  position: absolute;
  top: clamp(28px, 7vh, 76px);
  right: clamp(18px, 5vw, 76px);
  z-index: 2;
  display: grid;
  width: min(27vw, 350px);
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 42, 23, 0.78);
  box-shadow: 0 22px 60px rgba(1, 20, 10, 0.28);
  backdrop-filter: blur(16px);
}

.hero-contact-top {
  display: grid;
  gap: 4px;
}

.hero-contact-kicker {
  margin: 0;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-contact h2 {
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.hero-contact-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

.hero-contact-qr img {
  width: 100%;
  aspect-ratio: 568 / 620;
  object-fit: contain;
}

.hero-contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--white);
}

.hero-contact-email > svg {
  flex: 0 0 auto;
  color: #b7df77;
}

.hero-contact-email span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.hero-contact-email-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-contact-email strong {
  overflow: hidden;
  color: var(--white);
  font-size: clamp(12px, 1.2vw, 15px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-command {
  position: absolute;
  right: clamp(18px, 5vw, 76px);
  bottom: 34px;
  left: clamp(18px, 5vw, 76px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 23, 18, 0.72);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.hero-command div {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-command div:last-child {
  border-right: 0;
}

.hero-command span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-command strong {
  font-size: clamp(26px, 3vw, 38px);
}

.section {
  padding: 90px clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading p,
.capability-copy p,
.growth-section > .section-heading > p {
  color: var(--muted);
  line-height: 1.7;
}

.section h2 {
  font-size: clamp(32px, 4vw, 56px);
}

#catalog h2 {
  font-size: clamp(28px, 8.2vw, 56px);
  white-space: nowrap;
}

.tractor-carousel {
  position: relative;
  min-height: 540px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(26, 106, 61, 0.18);
  background: #0d3f24;
  box-shadow: 0 20px 48px rgba(12, 59, 33, 0.16);
}

.tractor-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 620ms ease;
}

.tractor-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.tractor-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.tractor-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 48, 28, 0.88), rgba(6, 48, 28, 0.36) 52%, rgba(6, 48, 28, 0.08)),
    linear-gradient(180deg, rgba(3, 28, 16, 0.06), rgba(3, 28, 16, 0.58));
}

.tractor-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 48px;
  color: var(--white);
}

.tractor-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(205, 228, 107, 0.5);
  background: rgba(9, 72, 39, 0.72);
  color: #e5f28a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tractor-copy h3 {
  max-width: 760px;
  margin: 16px 0 12px;
  font-size: clamp(34px, 4.3vw, 64px);
  line-height: 0.98;
}

.tractor-copy p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.7;
}

.tractor-controls {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tractor-arrow,
.tractor-dots button {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(5, 43, 24, 0.78);
  color: var(--white);
  cursor: pointer;
}

.tractor-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
}

.tractor-arrow svg {
  width: 20px;
  height: 20px;
}

.tractor-dots {
  display: flex;
  gap: 8px;
}

.tractor-dots button {
  width: 38px;
  height: 8px;
  padding: 0;
}

.tractor-dots button.active {
  border-color: #e5f28a;
  background: #e5f28a;
}

.brand-board {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.brand-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 14px 38px rgba(16, 23, 19, 0.12);
}

.brand-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.brand-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78));
}

.brand-panel div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 24px;
}

.brand-panel span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-panel h3,
.product-card h3,
.capability-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.brand-panel p,
.product-card p,
.capability-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.john-deere span {
  color: #cde46b;
}

.dongfanghong span {
  color: #ffbbb7;
}

.lovol span {
  color: #b5d8ff;
}

.catalog-section {
  background: var(--green-mist);
}

.catalog-tools {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.catalog-tools label {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 1 240px;
  min-width: 128px;
}

.catalog-tools label svg {
  position: absolute;
  left: 12px;
  color: var(--muted);
}

.catalog-tools input,
.catalog-tools select,
.product-form input,
.product-form select,
.product-form textarea {
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
}

.catalog-tools input {
  width: 100%;
  padding: 0 12px 0 40px;
}

.catalog-tools select {
  flex: 0 1 168px;
  min-width: 112px;
  padding: 0 28px 0 10px;
  white-space: nowrap;
}

.status-line {
  min-height: 24px;
  margin: -14px 0 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fbfcfa;
  color: inherit;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(49, 111, 66, 0.38);
  box-shadow: 0 22px 42px rgba(26, 48, 31, 0.12);
}

.product-card:focus-visible {
  outline: 3px solid rgba(95, 166, 107, 0.35);
  outline-offset: 3px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center center;
  padding: 12px;
  background: #f2f6ef;
}

.product-card-body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-meta span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.product-card p {
  color: var(--muted);
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  color: var(--steel);
  font-size: 13px;
}

.product-specs span {
  min-width: 0;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: baseline;
  gap: 6px;
}

.product-specs strong {
  display: inline;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px dashed var(--line);
  background: #fbfcfa;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.detail-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(240, 248, 238, 0.86), rgba(255, 255, 255, 0.92) 380px),
    #f8faf6;
}

.detail-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.product-detail-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 64px;
}

.product-detail-loading,
.product-detail-empty {
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 18px;
}

.product-detail-empty {
  max-width: 680px;
}

.product-detail-empty h1,
.product-detail-loading h1 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.96;
}

.product-detail-empty p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: stretch;
}

.product-detail-media {
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f2f6ef;
}

.product-detail-media img,
.product-detail-media .image-fallback {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  object-position: center center;
  padding: 24px;
}

.product-detail-media .image-fallback {
  display: grid;
  place-items: center;
  color: var(--green-dark);
  font-size: 80px;
  font-weight: 900;
}

.product-detail-summary {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 40px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 248, 239, 0.94)),
    #fff;
}

.product-detail-summary h1 {
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 0.95;
}

.detail-tags span {
  background: #e6f2df;
}

.detail-cn-name {
  margin: -10px 0 0;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.detail-lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

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

.detail-panel {
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.detail-panel:nth-child(1),
.detail-panel:nth-child(2) {
  grid-column: span 3;
}

.detail-panel h2 {
  margin-bottom: 12px;
  font-size: 18px;
}

.detail-panel p,
.detail-panel li {
  color: var(--muted);
  line-height: 1.7;
}

.detail-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  padding-left: 18px;
}

.spec-panel {
  min-height: 128px;
}

.spec-panel h2 {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.spec-panel strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.detail-quality-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 34px;
  background: var(--green-dark);
  color: #fff;
}

.detail-quality-band .eyebrow,
.detail-quality-band p {
  color: rgba(255, 255, 255, 0.76);
}

.detail-quality-band h2 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 4vw, 48px);
}

.detail-quality-band p {
  max-width: 760px;
  line-height: 1.7;
}

.detail-quality-band .primary-action {
  flex: 0 0 auto;
  background: #fff;
  color: var(--green-dark);
}

.capability-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(239, 247, 239, 0.92), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 14% 18%, rgba(31, 127, 70, 0.1), transparent 34%);
  border-block: 1px solid rgba(31, 127, 70, 0.1);
}

.capability-copy {
  max-width: 640px;
}

.capability-copy h2 {
  font-size: clamp(2.05rem, 3.2vw, 3.45rem);
  line-height: 1.08;
  max-width: 620px;
  margin-bottom: 20px;
}

.capability-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 18px;
}

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

.capability-grid article {
  min-height: 194px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 250, 0.98));
  border: 1px solid rgba(31, 127, 70, 0.12);
  border-top: 5px solid var(--green);
  box-shadow: 0 18px 42px rgba(16, 23, 19, 0.08);
  position: relative;
  overflow: hidden;
}

.capability-grid article::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(31, 127, 70, 0.06);
}

.capability-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 22px;
  color: var(--green);
}

.capability-grid h3,
.capability-grid p,
.capability-grid svg {
  position: relative;
  z-index: 1;
}

.inquiry-section {
  background:
    linear-gradient(180deg, var(--green-mist) 0%, #ffffff 100%);
}

.inquiry-desk {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.assistant-preview {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 560px;
  padding: 26px;
  background:
    linear-gradient(160deg, rgba(13, 63, 36, 0.95), rgba(34, 131, 71, 0.9)),
    var(--green-dark);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(13, 63, 36, 0.18);
}

.assistant-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  min-height: 30px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #d8f2c1;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.assistant-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #a6df6e;
  box-shadow: 0 0 0 5px rgba(166, 223, 110, 0.16);
}

.assistant-preview h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.assistant-chat {
  display: grid;
  gap: 12px;
}

.bot-message,
.buyer-message {
  max-width: 86%;
  margin: 0;
  padding: 13px 14px;
  line-height: 1.55;
  font-size: 14px;
}

.bot-message {
  justify-self: start;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.buyer-message {
  justify-self: end;
  background: #d8f2c1;
  color: var(--green-dark);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 26px;
  background: var(--white);
  border: 1px solid #cfe3d1;
  box-shadow: 0 14px 36px rgba(13, 63, 36, 0.1);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfe3d1;
  background: var(--green-mist);
  color: var(--ink);
  padding: 10px 12px;
  font-weight: 600;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form .wide {
  grid-column: span 2;
}

.inquiry-response {
  grid-column: span 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
  font-weight: 800;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border: 0;
  background: var(--green);
  color: var(--white);
  padding: 0 18px;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(13, 63, 36, 0.28);
}

.chat-panel {
  display: none;
  width: min(380px, calc(100vw - 36px));
  overflow: hidden;
  border: 1px solid #cfe3d1;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(13, 63, 36, 0.22);
}

.chat-panel.open {
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto;
}

.chat-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  background: var(--green-dark);
  color: var(--white);
}

.chat-panel header strong,
.chat-panel header span {
  display: block;
}

.chat-panel header span {
  margin-top: 3px;
  color: #d8f2c1;
  font-size: 12px;
  font-weight: 800;
}

.chat-panel header button,
.chat-form button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

.chat-body {
  display: grid;
  align-content: start;
  gap: 10px;
  max-height: 340px;
  overflow: auto;
  padding: 16px;
  background: var(--green-mist);
}

.chat-body .bot-message {
  background: var(--white);
  color: var(--green-dark);
  border: 1px solid #d8ead9;
}

.chat-body .buyer-message {
  background: var(--green);
  color: var(--white);
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #d8ead9;
}

.chat-form input {
  min-height: 44px;
  border: 1px solid #cfe3d1;
  padding: 0 12px;
}

.chat-form button {
  width: 44px;
  height: 44px;
  background: var(--green);
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .main-nav,
html[dir="rtl"] .brand,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .catalog-tools,
html[dir="rtl"] .prompt-card-head,
html[dir="rtl"] .mini-prompt-head {
  direction: rtl;
}

html[dir="rtl"] .bot-message {
  justify-self: end;
}

html[dir="rtl"] .buyer-message {
  justify-self: start;
}

html[dir="rtl"] .chat-widget {
  right: auto;
  left: 22px;
}

.capability-grid p {
  color: var(--muted);
}

.growth-section {
  background:
    linear-gradient(180deg, #f4f6f2 0%, #ffffff 100%);
}

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

.prompt-card {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 23, 19, 0.08);
}

.prompt-card.dark {
  background: var(--black);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.prompt-card-head,
.mini-prompt-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.prompt-card-head span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prompt-card.dark .prompt-card-head span {
  color: var(--yellow);
}

.prompt-card h3,
.mini-prompts h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0 12px;
  cursor: pointer;
  font-weight: 900;
}

.prompt-card.dark .copy-button {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.copy-button.copied {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.copy-button.icon-only {
  width: 38px;
  padding: 0;
}

.prompt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prompt-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  background: #edf3ed;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.prompt-card.dark .prompt-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.prompt-card pre {
  max-height: 560px;
  min-width: 0;
  margin: 0;
  overflow: auto;
  padding: 18px;
  background: #f5f7f3;
  color: var(--steel);
  border: 1px solid var(--line);
  white-space: pre-wrap;
  word-break: break-word;
}

.prompt-card.dark pre {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.16);
}

.prompt-card code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.65;
}

.mini-prompts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.mini-prompts article {
  display: grid;
  gap: 16px;
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border-left: 4px solid var(--yellow);
  box-shadow: 0 10px 28px rgba(16, 23, 19, 0.07);
}

.mini-prompts p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.admin-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.admin-panel.open {
  pointer-events: auto;
  opacity: 1;
}

.admin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 13, 0.62);
}

.admin-shell {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  width: min(1080px, 100vw);
  height: 100%;
  overflow: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateX(24px);
  transition: transform 0.18s ease;
}

.admin-panel.open .admin-shell {
  transform: translateX(0);
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
}

.admin-header h2 {
  font-size: 36px;
}

.admin-header span {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.product-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px 28px;
}

.product-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
}

.product-form .wide,
.product-form .form-actions {
  grid-column: span 3;
}

.product-form input,
.product-form select,
.product-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-weight: 600;
}

.product-form textarea {
  resize: vertical;
}

.switch {
  display: flex !important;
  grid-column: span 3;
  align-items: center;
  gap: 10px !important;
}

.switch input {
  width: 18px;
  min-height: 18px;
}

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

.admin-table-wrap {
  margin: 0 28px 32px;
  overflow: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

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

.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  background: #eef1ec;
  color: var(--steel);
  font-size: 12px;
  text-transform: uppercase;
}

.sort-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 150px;
}

.sort-position {
  width: 54px;
  min-width: 54px;
  height: 32px;
  padding: 0 6px;
  border: 1px solid var(--line);
  background: var(--green-mist);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.sort-position:focus {
  outline: 2px solid rgba(31, 127, 70, 0.28);
  outline-offset: 1px;
  border-color: var(--green);
}

.sort-actions {
  display: grid;
  gap: 4px;
}

.sort-actions button {
  display: inline-grid;
  width: 28px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--steel);
  cursor: pointer;
}

.sort-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.sort-actions svg {
  width: 15px;
  height: 15px;
}

.sort-apply {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  cursor: pointer;
}

.sort-apply svg {
  width: 16px;
  height: 16px;
}

.row-product {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
}

.row-product img,
.row-product .image-fallback {
  width: 64px;
  height: 48px;
  object-fit: cover;
  background: #eef1ec;
}

.row-actions {
  display: flex;
  gap: 8px;
}

.row-actions button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--steel);
  cursor: pointer;
}

.row-actions button.delete {
  color: var(--red);
}

.image-fallback {
  display: grid;
  place-items: center;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(31, 109, 59, 0.12), rgba(240, 180, 41, 0.16)),
    #eef1ec;
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 5vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
  font-size: 13px;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px 18px;
  background:
    linear-gradient(135deg, rgba(13, 63, 36, 0.96), rgba(34, 131, 71, 0.8)),
    var(--green-dark);
}

.admin-page [hidden] {
  display: none !important;
}

.admin-login-card {
  width: min(440px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 70px rgba(6, 41, 22, 0.3);
}

.admin-login-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 46px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.admin-login-card h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.05;
}

.admin-login-card > p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.admin-login-card form {
  display: grid;
  gap: 10px;
}

.admin-login-card label {
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
}

.admin-password-field {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.admin-password-field svg {
  position: absolute;
  left: 13px;
  width: 18px;
  color: var(--green);
}

.admin-password-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px 0 42px;
  border: 1px solid #cfe3d1;
  background: var(--green-mist);
}

.admin-login-card .primary-action {
  width: 100%;
  min-height: 48px;
}

.admin-login-state {
  min-height: 20px;
  margin: 4px 0 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

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

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 60px);
  border-bottom: 1px solid #cfe3d1;
  background: rgba(243, 250, 244, 0.96);
  backdrop-filter: blur(18px);
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 900;
}

.admin-nav button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #cfe3d1;
  background: var(--white);
  color: var(--green-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-layout {
  display: grid;
  gap: 22px;
  padding: 28px clamp(18px, 4vw, 60px) 60px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: end;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(13, 63, 36, 0.96), rgba(34, 131, 71, 0.88)),
    var(--green-dark);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(13, 63, 36, 0.18);
}

.admin-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
}

.admin-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.admin-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.admin-kpis span {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-kpis span:last-child {
  border-right: 0;
}

.admin-kpis strong {
  color: var(--white);
  font-size: 32px;
}

.admin-workbench {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  align-items: start;
}

.admin-import {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid #cfe3d1;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(13, 63, 36, 0.08);
}

.admin-import h2 {
  margin: 0;
  font-size: 30px;
}

.admin-import p {
  color: var(--muted);
  line-height: 1.65;
}

.bulk-import-form {
  display: grid;
  gap: 12px;
}

.bulk-import-form textarea {
  width: 100%;
  min-height: 170px;
  padding: 12px;
  border: 1px solid #cfe3d1;
  background: var(--green-mist);
  resize: vertical;
}

#importState {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-product-form {
  position: sticky;
  top: 98px;
  grid-template-columns: 1fr;
  padding: 22px;
  border: 1px solid #cfe3d1;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(13, 63, 36, 0.08);
}

.admin-product-form .wide,
.admin-product-form .form-actions,
.admin-product-form .switch {
  grid-column: span 1;
}

.admin-list {
  min-width: 0;
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid #cfe3d1;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(13, 63, 36, 0.08);
}

.admin-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.admin-list-head h2 {
  margin: 0;
  font-size: 30px;
}

.admin-list-head label {
  position: relative;
  display: flex;
  align-items: center;
}

.admin-list-head svg {
  position: absolute;
  left: 12px;
  color: var(--muted);
}

.admin-list-head input {
  width: min(320px, 70vw);
  min-height: 44px;
  padding: 0 12px 0 40px;
  border: 1px solid #cfe3d1;
  background: var(--green-mist);
}

@media (max-width: 1020px) {
  .site-header {
    display: grid;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-content {
    width: 68vw;
    padding-right: 30px;
  }

  .hero-contact {
    width: min(29vw, 300px);
  }

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

  .hero-command div:nth-child(2) {
    border-right: 0;
  }

  .hero-command div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .tractor-carousel {
    min-height: 500px;
  }

  .tractor-copy {
    max-width: 560px;
    padding: 34px;
  }

  .brand-board,
  .product-grid,
  .growth-grid,
  .inquiry-desk {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading.split,
  .capability-section,
  .admin-hero,
  .admin-workbench,
  .admin-import,
  .product-detail-hero {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-detail-media,
  .product-detail-media img,
  .product-detail-media .image-fallback {
    min-height: 420px;
  }

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

  .detail-panel:nth-child(1),
  .detail-panel:nth-child(2) {
    grid-column: span 2;
  }

  .detail-quality-band {
    display: grid;
  }

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

  .product-form .wide,
  .product-form .form-actions,
  .switch {
    grid-column: span 2;
  }

  .mini-prompts {
    grid-template-columns: 1fr;
  }

  .inquiry-desk {
    grid-template-columns: 1fr;
  }

  .admin-product-form {
    position: static;
  }

  .admin-list-head {
    display: grid;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    display: grid;
  }

  .admin-topbar {
    position: static;
    display: grid;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: start;
    max-width: 100%;
    gap: 12px 16px;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .main-nav a,
  .nav-admin,
  .language-switcher {
    white-space: nowrap;
  }

  .language-switcher {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 820px;
  }

  .hero-content {
    width: 100%;
    padding: 54px 18px 28px;
  }

  .hero-contact {
    position: relative;
    top: auto;
    right: auto;
    order: 0;
    align-self: flex-end;
    width: min(calc(100% - 36px), 320px);
    margin: 80px 18px 220px auto;
    padding: 14px;
  }

  .hero-contact-qr {
    width: min(100%, 230px);
    justify-self: center;
  }

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

  .hero-command div:nth-child(2) {
    border-right: 0;
  }

  .hero-command div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .tractor-carousel {
    min-height: 520px;
  }

  .tractor-slide {
    align-items: end;
  }

  .tractor-slide::after {
    background:
      linear-gradient(180deg, rgba(6, 48, 28, 0.12), rgba(6, 48, 28, 0.92)),
      linear-gradient(90deg, rgba(6, 48, 28, 0.55), rgba(6, 48, 28, 0.08));
  }

  .tractor-slide img {
    object-position: center top;
  }

  .tractor-copy {
    padding: 28px 20px 112px;
  }

  .tractor-copy h3 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.02;
  }

  .tractor-copy p {
    font-size: 14px;
  }

  .tractor-controls {
    right: 20px;
    bottom: 24px;
    left: 20px;
    justify-content: space-between;
  }

  .tractor-dots button {
    width: 28px;
  }

  .brand-board,
  .product-grid,
  .capability-grid,
  .product-form,
  .growth-grid,
  .inquiry-desk,
  .inquiry-form,
  .product-detail-grid,
  .detail-panel ul {
    grid-template-columns: 1fr;
  }

  .product-detail-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 34px;
  }

  .product-detail-media,
  .product-detail-media img,
  .product-detail-media .image-fallback {
    min-height: 300px;
  }

  .product-detail-summary,
  .detail-panel,
  .detail-quality-band {
    padding: 20px;
  }

  .detail-panel:nth-child(1),
  .detail-panel:nth-child(2) {
    grid-column: span 1;
  }

  .detail-actions {
    display: grid;
  }

  .product-specs {
    grid-template-columns: 1fr;
  }

  .product-specs span {
    grid-template-columns: max-content minmax(0, 1fr);
  }

  .primary-action,
  .secondary-action {
    white-space: nowrap;
  }

  .catalog-tools {
    flex-wrap: wrap;
    gap: 8px;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .catalog-tools label {
    flex: 1 1 100%;
    min-width: 0;
  }

  .catalog-tools select {
    flex: 1 1 calc(50% - 4px);
    min-width: 130px;
    padding-right: 28px;
    padding-left: 10px;
  }

  .catalog-tools input,
  .catalog-tools select {
    min-height: 44px;
    font-size: 14px;
  }

  .catalog-tools label svg {
    left: 12px;
    width: 18px;
    height: 18px;
  }

  .catalog-tools input {
    padding-left: 40px;
  }

  .inquiry-form .wide,
  .inquiry-response {
    grid-column: span 1;
  }

  .assistant-preview {
    min-height: auto;
  }

  .chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .chat-toggle {
    width: 48px;
    padding: 0;
    font-size: 0;
  }

  html[dir="rtl"] .chat-widget {
    right: auto;
    left: 14px;
  }

  .prompt-card,
  .mini-prompts article {
    padding: 18px;
  }

  .prompt-card-head {
    display: grid;
  }

  .brand-panel {
    min-height: 360px;
  }

  .product-form .wide,
  .product-form .form-actions,
  .switch {
    grid-column: span 1;
  }

  .admin-hero,
  .admin-list,
  .admin-product-form,
  .admin-import {
    padding: 18px;
  }

  .admin-kpis {
    grid-template-columns: 1fr;
  }

  .admin-kpis span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .admin-kpis span:last-child {
    border-bottom: 0;
  }

  .admin-header,
  .product-form {
    padding: 20px;
  }

  .admin-table-wrap {
    margin: 0 20px 24px;
    max-width: calc(100vw - 40px);
    -webkit-overflow-scrolling: touch;
  }
}
