/* =========================================================
   TMS ELECTRIC RIDES
   Main stylesheet
========================================================= */

:root {
  --green: #009c4b;
  --green-bright: #00c85a;
  --green-dark: #075129;
  --green-deep: #062b18;

  --black: #07100b;
  --black-soft: #0c1610;
  --charcoal: #101b14;
  --charcoal-light: #17231b;

  --white: #ffffff;
  --off-white: #f3f7f1;
  --gray-light: #d9e2da;
  --gray: #87958b;
  --gray-dark: #526058;

  --border-light: rgba(255, 255, 255, 0.12);
  --border-dark: rgba(7, 16, 11, 0.14);

  --shadow-small: 0 14px 35px rgba(3, 16, 9, 0.1);
  --shadow-medium: 0 24px 70px rgba(3, 16, 9, 0.16);
  --shadow-large: 0 35px 100px rgba(0, 0, 0, 0.35);

  --container: 1240px;
  --header-height: 82px;

  --radius-small: 10px;
  --radius-medium: 18px;
  --radius-large: 28px;
  --radius-pill: 999px;

  --transition-fast: 180ms ease;
  --transition: 300ms ease;
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--off-white);
  color: var(--black);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.drawer-open,
body.modal-open,
body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--green-bright);
  color: var(--black);
}

/* =========================================================
   SHARED
========================================================= */

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.4) 2px,
      rgba(255, 255, 255, 0.4) 3px
    );
  mix-blend-mode: soft-light;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow__icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(0, 200, 90, 0.38);
  border-radius: 50%;
  color: var(--green-bright);
}

.section-kicker--light {
  color: #72f9a9;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.service__intro h2,
.financing-panel h2,
.contact-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading > p,
.section-heading--split > p {
  max-width: 500px;
  margin-bottom: 2px;
  color: var(--gray-dark);
  font-size: 1rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

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

.button--primary {
  background: var(--green-bright);
  color: var(--black);
}

.button--primary:hover {
  background: #37ec83;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

.button--light {
  background: var(--white);
  color: var(--black);
}

.button--light:hover {
  background: #e8ffef;
}

/* =========================================================
   ANNOUNCEMENT
========================================================= */

.announcement {
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--green);
  color: var(--white);
}

.announcement__content {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-family: "DM Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.announcement__content p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.announcement__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
}

.announcement__content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

.announcement__content a:hover {
  opacity: 1;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-light);
  background: rgba(7, 16, 11, 0.9);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.site-header__content {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 200, 90, 0.35);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(0, 200, 90, 0.4), transparent 50%),
    #0a1c11;
}

.brand__mark::after {
  position: absolute;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
  transform: rotate(-45deg);
}

.brand__bolt {
  position: relative;
  z-index: 1;
  color: var(--green-bright);
  font-size: 1.4rem;
  font-weight: 800;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__text strong {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.brand__text small {
  margin-top: 5px;
  color: #9fb0a4;
  font-family: "DM Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.desktop-nav__link {
  position: relative;
  padding: 12px 0;
  color: #9baa9f;
  font-size: 0.78rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.desktop-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--green-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.desktop-nav__link:hover,
.desktop-nav__link.active {
  color: var(--white);
}

.desktop-nav__link:hover::after,
.desktop-nav__link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.icon-button,
.cart-button,
.menu-button,
.close-button {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.icon-button:hover,
.cart-button:hover,
.menu-button:hover,
.close-button:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.09);
}

.icon-button {
  width: 43px;
  height: 43px;
  border-radius: 50%;
}

.icon-button svg {
  width: 18px;
}

.cart-button {
  display: flex;
  min-height: 43px;
  align-items: center;
  gap: 8px;
  padding: 0 10px 0 14px;
  border-radius: var(--radius-pill);
}

.cart-button svg {
  width: 18px;
}

.cart-button__label {
  font-size: 0.73rem;
  font-weight: 700;
}

.cart-count {
  display: grid;
  min-width: 23px;
  height: 23px;
  place-items: center;
  padding: 0 5px;
  border-radius: var(--radius-pill);
  background: var(--green-bright);
  color: var(--black);
  font-family: "DM Mono", monospace;
  font-size: 0.64rem;
  font-weight: 600;
}

.menu-button {
  display: none;
  width: 43px;
  height: 43px;
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform var(--transition);
}

.menu-button span + span {
  margin-top: 5px;
}

.menu-button.active span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button.active span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: calc(100vh - 116px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 200, 90, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(0, 200, 90, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 20% 40%, rgba(0, 200, 90, 0.08), transparent 31%),
    var(--black);
  background-size:
    70px 70px,
    70px 70px,
    auto,
    auto;
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(0, 200, 90, 0.14);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - 336px);
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.78fr);
  gap: 75px;
  align-items: center;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.hero__glow--one {
  top: 7%;
  left: -190px;
  width: 430px;
  height: 430px;
  background: rgba(0, 200, 90, 0.08);
}

.hero__glow--two {
  right: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  background: rgba(0, 156, 75, 0.12);
}

.hero__content {
  padding: 45px 0;
}

.hero__title {
  max-width: 750px;
  margin-bottom: 30px;
  font-size: clamp(4.2rem, 7.9vw, 7.9rem);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.82;
}

.hero__title span {
  display: block;
  margin-top: 18px;
  color: var(--green-bright);
}

.hero__description {
  max-width: 610px;
  margin-bottom: 38px;
  color: #aebcb2;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 62px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-medium);
  background: var(--border-light);
}

.hero-stat {
  min-height: 105px;
  padding: 20px;
  background: rgba(12, 22, 16, 0.95);
}

.hero-stat strong {
  display: block;
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1.15rem;
}

.hero-stat span {
  display: block;
  color: #849188;
  font-family: "DM Mono", monospace;
  font-size: 0.61rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-showcase {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 42%),
    rgba(13, 25, 17, 0.9);
  box-shadow: var(--shadow-large);
}

.hero-showcase::before {
  position: absolute;
  inset: 8px;
  z-index: -1;
  border: 1px solid rgba(0, 200, 90, 0.12);
  border-radius: 25px;
  content: "";
}

.hero-showcase__top,
.hero-showcase__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-showcase__top {
  padding: 3px 3px 17px;
}

.hero-showcase__top div {
  display: flex;
  flex-direction: column;
}

.hero-showcase__top span,
.hero-showcase__bottom small {
  color: #718078;
  font-family: "DM Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-showcase__top strong {
  margin-top: 4px;
  font-size: 0.84rem;
  font-weight: 600;
}

.status-pill {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(0, 200, 90, 0.24);
  border-radius: var(--radius-pill);
  color: #7ff4ab !important;
}

.status-pill > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 14px var(--green-bright);
}

.hero-machine {
  position: relative;
  display: grid;
  min-height: 450px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(0, 200, 90, 0.18), transparent 29%),
    linear-gradient(145deg, #08110b, #122319);
}

.hero-machine::before {
  position: absolute;
  inset: 25px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  animation: rotateElement 30s linear infinite;
}

.hero-machine__ring {
  position: absolute;
  border: 1px solid rgba(0, 200, 90, 0.27);
  border-radius: 50%;
}

.hero-machine__ring--outer {
  width: 320px;
  height: 320px;
}

.hero-machine__ring--inner {
  width: 215px;
  height: 215px;
  border-style: dashed;
  animation: rotateElement 22s linear infinite reverse;
}

.hero-machine__energy {
  position: absolute;
  z-index: 1;
  color: var(--green-bright);
  font-size: 8.5rem;
  font-weight: 800;
  line-height: 1;
  filter: drop-shadow(0 0 35px rgba(0, 200, 90, 0.42));
  transform: skewX(-7deg);
}

.hero-machine__brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 175px;
  line-height: 1;
}

.hero-machine__brand small {
  margin-bottom: 4px;
  color: #9bad9f;
  font-family: "DM Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
}

.hero-machine__brand strong {
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: 0.17em;
}

.hero-machine__brand span {
  margin-top: 8px;
  color: var(--green-bright);
  font-family: "DM Mono", monospace;
  font-size: 0.52rem;
  letter-spacing: 0.22em;
}

.hero-machine__line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-bright));
}

.hero-machine__line--one {
  top: 34%;
  left: 2%;
  width: 32%;
}

.hero-machine__line--two {
  right: 1%;
  bottom: 34%;
  width: 34%;
  transform: rotate(180deg);
}

.hero-machine__label {
  position: absolute;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  background: rgba(7, 16, 11, 0.68);
  color: #99a99d;
  font-family: "DM Mono", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-machine__label--one {
  top: 23%;
  left: 7%;
}

.hero-machine__label--two {
  top: 16%;
  right: 7%;
}

.hero-machine__label--three {
  right: 7%;
  bottom: 17%;
}

.hero-showcase__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 12px;
}

.hero-showcase__bottom div {
  padding: 10px 10px 4px;
  border-right: 1px solid var(--border-light);
}

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

.hero-showcase__bottom strong {
  display: block;
  margin-top: 4px;
  font-size: 0.69rem;
  font-weight: 600;
}

@keyframes rotateElement {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   MOVING STRIP
========================================================= */

.motion-strip {
  overflow: hidden;
  border-top: 1px solid var(--green-dark);
  border-bottom: 1px solid var(--green-dark);
  background: var(--green-bright);
  color: var(--black);
}

.motion-strip__track {
  display: flex;
  width: max-content;
  min-height: 54px;
  align-items: center;
  animation: movingStrip 32s linear infinite;
}

.motion-strip__track span {
  padding: 0 30px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.motion-strip__track i {
  font-size: 1.1rem;
  font-style: normal;
}

@keyframes movingStrip {
  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   CATEGORIES
========================================================= */

.categories {
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 156, 75, 0.09), transparent 25%),
    var(--off-white);
}

.category-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-large);
  background: #e8eee8;
  color: var(--black);
  text-align: left;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.category-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-medium);
}

.category-card::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(0, 156, 75, 0.18);
  border-radius: 50%;
  content: "";
}

.category-card--large {
  grid-row: span 2;
  min-height: 618px;
  background:
    linear-gradient(145deg, rgba(0, 200, 90, 0.9), rgba(0, 156, 75, 0.96)),
    var(--green);
}

.category-card--dark {
  background: var(--black);
  color: var(--white);
}

.category-card--wide {
  grid-column: span 2;
  min-height: 300px;
  background:
    linear-gradient(115deg, #dfe9e0 0%, #f7faf6 100%);
}

.category-card__number {
  position: absolute;
  top: 29px;
  right: 29px;
  color: currentColor;
  font-family: "DM Mono", monospace;
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  opacity: 0.6;
}

.category-card__graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 270px;
  height: 270px;
  place-items: center;
  border: 1px solid rgba(7, 16, 11, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -60%);
}

.category-card__graphic::before,
.category-card__graphic::after {
  position: absolute;
  border: 1px solid rgba(7, 16, 11, 0.11);
  border-radius: 50%;
  content: "";
}

.category-card__graphic::before {
  width: 205px;
  height: 205px;
}

.category-card__graphic::after {
  width: 125px;
  height: 125px;
}

.category-card__graphic span {
  position: relative;
  z-index: 1;
  font-size: 7rem;
  font-weight: 800;
  filter: drop-shadow(0 15px 20px rgba(7, 16, 11, 0.15));
}

.category-card__content {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}

.category-card__content small {
  display: block;
  margin-bottom: 9px;
  font-family: "DM Mono", monospace;
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  opacity: 0.65;
  text-transform: uppercase;
}

.category-card__content h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.category-card:not(.category-card--large) .category-card__content h3 {
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
}

.category-card__content p {
  max-width: 390px;
  margin-bottom: 0;
  font-size: 0.83rem;
  opacity: 0.7;
}

.category-card__arrow {
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

.category-card:hover .category-card__arrow {
  opacity: 1;
  transform: translateY(0);
}


/* Three-category layout: e-bikes, scooters and speakers */
.category-grid--three {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.category-grid--three .category-card--large {
  min-height: 618px;
  grid-row: 1 / span 2;
}

.category-grid--three .category-card--wide {
  min-height: 300px;
  grid-column: 2;
}

.category-grid--three .category-card--dark {
  min-height: 300px;
}

/* =========================================================
   CATALOG
========================================================= */

.catalog {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--black);
  background-size: 80px 80px;
  color: var(--white);
}

.catalog .section-kicker {
  color: var(--green-bright);
}

.catalog .section-heading > p {
  color: #88978d;
}

.catalog-heading__meta {
  padding-bottom: 5px;
}

.catalog-heading__meta > span {
  display: block;
  margin-bottom: 8px;
  color: var(--green-bright);
  font-family: "DM Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-heading__meta p {
  margin-bottom: 0;
  color: #7f8c83;
  font-size: 0.86rem;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  padding: 15px;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: transparent;
  color: #839087;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.filter-button:hover {
  color: var(--white);
}

.filter-button.active {
  border-color: rgba(0, 200, 90, 0.3);
  background: var(--green-bright);
  color: var(--black);
}

.catalog-controls {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 9px;
}

.search-field {
  display: flex;
  width: 205px;
  height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  background: #0a130d;
  transition: border-color var(--transition-fast);
}

.search-field:focus-within {
  border-color: var(--green);
}

.search-field svg {
  width: 16px;
  flex-shrink: 0;
  color: #6f7c73;
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 0.72rem;
}

.search-field input::placeholder {
  color: #667168;
}

.sort-field {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  background: #0a130d;
  color: #738078;
}

.sort-field span {
  font-family: "DM Mono", monospace;
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sort-field select {
  max-width: 150px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 0.68rem;
  cursor: pointer;
}

.sort-field option {
  background: var(--black);
  color: var(--white);
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 510px;
  grid-column: span 4;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border-light);
  border-radius: 23px;
  background: #0c1510;
  color: var(--white);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.product-card:nth-child(1),
.product-card:nth-child(6),
.product-card:nth-child(10) {
  grid-column: span 8;
}

.product-card:hover {
  z-index: 2;
  border-color: rgba(0, 200, 90, 0.38);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
  transform: translateY(-6px);
}

.product-card__media {
  position: relative;
  display: grid;
  min-height: 285px;
  place-items: center;
  overflow: hidden;
  padding: 27px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 55%),
    #121d16;
}

.product-card:nth-child(1) .product-card__media,
.product-card:nth-child(6) .product-card__media,
.product-card:nth-child(10) .product-card__media {
  min-height: 330px;
}

.product-card__media::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(0, 200, 90, 0.12);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.product-card__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 235px;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.35));
  transition: transform 500ms ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.055);
}

.product-card__badges {
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}

.product-badge {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(7, 16, 11, 0.75);
  color: #c5d0c8;
  font-family: "DM Mono", monospace;
  font-size: 0.48rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.product-badge--green {
  border-color: transparent;
  background: var(--green-bright);
  color: var(--black);
  font-weight: 600;
}

.product-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.product-card__category {
  display: block;
  margin-bottom: 11px;
  color: var(--green-bright);
  font-family: "DM Mono", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card__title {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.product-card__description {
  margin-bottom: 18px;
  color: #87958b;
  font-size: 0.78rem;
}

.product-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.product-feature {
  padding: 6px 9px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  color: #9ba8a0;
  font-size: 0.58rem;
  line-height: 1;
}

.product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
}

.product-card__price span {
  display: block;
  margin-bottom: 4px;
  color: #657168;
  font-family: "DM Mono", monospace;
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__price strong {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.product-card__actions {
  display: flex;
  gap: 7px;
}

.details-button,
.add-to-cart-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-size: 0.63rem;
  font-weight: 800;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast);
}

.details-button:hover,
.add-to-cart-button:hover {
  transform: translateY(-2px);
}

.details-button {
  padding: 0 14px;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--white);
}

.details-button:hover {
  background: rgba(255, 255, 255, 0.07);
}

.add-to-cart-button {
  min-width: 41px;
  padding: 0 14px;
  background: var(--green-bright);
  color: var(--black);
}

.empty-state {
  padding: 90px 30px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-large);
  text-align: center;
}

.empty-state__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid rgba(0, 200, 90, 0.3);
  border-radius: 50%;
  color: var(--green-bright);
  font-size: 1.8rem;
}

.empty-state h3 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}

.empty-state p {
  margin-bottom: 24px;
  color: #77837b;
}

/* =========================================================
   FINANCING
========================================================= */

.financing {
  background: var(--off-white);
}

.financing-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 200, 90, 0.18), transparent 30%),
    var(--green-deep);
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.financing-panel__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}

.financing-panel__content h2 {
  margin-bottom: 26px;
}

.financing-panel__content p {
  max-width: 510px;
  margin-bottom: 33px;
  color: #abc2b2;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.payment-card {
  position: relative;
  display: flex;
  min-height: 450px;
  justify-content: flex-end;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  background: rgba(6, 25, 14, 0.82);
  transition: background var(--transition);
}

.payment-card:first-child {
  border-radius: 18px 0 0 18px;
}

.payment-card:last-child {
  border-radius: 0 18px 18px 0;
}

.payment-card:hover {
  background: rgba(0, 156, 75, 0.28);
}

.payment-card::before {
  position: absolute;
  top: -75px;
  right: -75px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(0, 200, 90, 0.22);
  border-radius: 50%;
  content: "";
}

.payment-card__number {
  position: absolute;
  top: 26px;
  left: 26px;
  color: #718578;
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
}

.payment-card small {
  margin-bottom: 8px;
  color: #75947f;
  font-family: "DM Mono", monospace;
  font-size: 0.53rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-card strong {
  margin-bottom: 13px;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.payment-card p {
  margin-bottom: 0;
  color: #8fa398;
  font-size: 0.73rem;
}

/* =========================================================
   SERVICE
========================================================= */

.service {
  background: #dfe8df;
}

.service__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
}

.service__intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.service__intro h2 {
  margin-bottom: 26px;
}

.service__intro p {
  max-width: 460px;
  color: var(--gray-dark);
}

.service-list {
  border-top: 1px solid var(--border-dark);
}

.service-item {
  display: grid;
  min-height: 175px;
  grid-template-columns: 50px 1fr 45px;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--border-dark);
  transition: padding var(--transition);
}

.service-item:hover {
  padding-left: 14px;
}

.service-item__number {
  align-self: start;
  padding-top: 43px;
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
}

.service-item h3 {
  margin-bottom: 8px;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.service-item p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--gray-dark);
  font-size: 0.85rem;
}

.service-item__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  transition:
    background var(--transition-fast),
    color var(--transition-fast);
}

.service-item:hover .service-item__icon {
  background: var(--green);
  color: var(--white);
}



/* =========================================================
   STORE
========================================================= */

.store {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(0, 156, 75, 0.08), transparent 28%),
    #edf3ed;
}

.store::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(0, 156, 75, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.store-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 18px;
  align-items: stretch;
}

.store-gallery {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 18px;
}

.store-photo {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-large);
  background: #dfe7df;
  box-shadow: var(--shadow-small);
}

.store-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(2, 12, 6, 0.2));
  content: "";
  pointer-events: none;
}

.store-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.store-photo:hover img {
  transform: scale(1.035);
}

.store-card {
  position: relative;
  display: flex;
  min-height: 520px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 200, 90, 0.2), transparent 30%),
    var(--black);
  box-shadow: var(--shadow-medium);
  color: var(--white);
}

.store-card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(0, 200, 90, 0.2);
  border-radius: 50%;
  content: "";
}

.store-card > * {
  position: relative;
  z-index: 1;
}

.store-card__eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--green-bright);
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-card h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.store-card address {
  margin-bottom: 22px;
  color: #d6e1d8;
  font-style: normal;
  font-weight: 700;
  line-height: 1.65;
}

.store-card p {
  max-width: 430px;
  margin-bottom: 30px;
  color: #91a198;
  font-size: 0.84rem;
}

.store-card .button {
  width: 100%;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
  background: var(--black);
  color: var(--white);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  overflow: hidden;
  padding: 70px;
  border: 1px solid rgba(0, 200, 90, 0.3);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(0, 200, 90, 0.12), transparent 50%),
    #0b1b11;
}

.contact-panel::after {
  position: absolute;
  right: -160px;
  bottom: -250px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(0, 200, 90, 0.18);
  border-radius: 50%;
  content: "";
}

.contact-panel > div {
  position: relative;
  z-index: 1;
}

.contact-panel h2 {
  max-width: 720px;
  margin-bottom: 25px;
}

.contact-panel p {
  max-width: 570px;
  margin-bottom: 0;
  color: #91a198;
}

.contact-panel__actions {
  display: flex;
  min-width: 255px;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
}

.contact-panel__secondary {
  padding-left: 7px;
  color: #8fa095;
  font-size: 0.77rem;
  transition: color var(--transition-fast);
}

.contact-panel__secondary:hover {
  color: var(--white);
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  border-top: 1px solid var(--border-light);
  background: #050b07;
  color: var(--white);
}

.site-footer__top {
  display: flex;
  min-height: 170px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border-bottom: 1px solid var(--border-light);
}

.site-footer__top > p {
  max-width: 480px;
  margin-bottom: 0;
  color: #78867d;
  font-size: 0.86rem;
  text-align: right;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px;
  padding: 65px 0;
  border-bottom: 1px solid var(--border-light);
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-column > span {
  margin-bottom: 12px;
  color: var(--green-bright);
  font-family: "DM Mono", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #7d8b81;
  font-size: 0.76rem;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-footer__bottom p,
.site-footer__bottom a {
  margin: 0;
  color: #59655d;
  font-family: "DM Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.05em;
}

.site-footer__bottom div {
  display: flex;
  gap: 24px;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

/* =========================================================
   OVERLAY
========================================================= */

.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  backdrop-filter: blur(6px);
  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.page-overlay.visible {
  visibility: visible;
  opacity: 1;
}

/* =========================================================
   CART DRAWER
========================================================= */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  display: flex;
  width: min(470px, 100%);
  height: 100dvh;
  flex-direction: column;
  background: #f5f8f4;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.35);
  color: var(--black);
  transform: translateX(102%);
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 28px;
  border-bottom: 1px solid var(--border-dark);
}

.cart-drawer__header > div > span {
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-drawer__header h2 {
  margin: 5px 0 0;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
}

.close-button {
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  border-color: var(--border-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  font-size: 1.55rem;
  line-height: 1;
}

.close-button:hover {
  border-color: rgba(7, 16, 11, 0.3);
  background: rgba(7, 16, 11, 0.05);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 19px 28px;
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-dark);
}

.cart-item__image {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: #e6ebe5;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
}

.cart-item__content h3 {
  margin-bottom: 4px;
  font-size: 0.84rem;
  line-height: 1.2;
}

.cart-item__content > span {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
}

.cart-item__quantity {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
}

.cart-item__quantity button {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  background: transparent;
  color: var(--black);
}

.cart-item__quantity span {
  min-width: 25px;
  text-align: center;
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
}

.cart-item__remove {
  align-self: start;
  padding: 4px;
  background: transparent;
  color: #8e9a91;
  font-size: 1.1rem;
}

.cart-item__remove:hover {
  color: #b22626;
}

.cart-empty {
  display: flex;
  flex: 1;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 40px 30px;
  text-align: center;
}

.cart-empty__icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 156, 75, 0.25);
  border-radius: 50%;
  background: rgba(0, 156, 75, 0.06);
  color: var(--green);
  font-size: 2rem;
}

.cart-empty h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.cart-empty p {
  max-width: 300px;
  margin-bottom: 25px;
  color: var(--gray-dark);
  font-size: 0.8rem;
}

.cart-drawer__footer {
  padding: 25px 28px;
  border-top: 1px solid var(--border-dark);
  background: var(--white);
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-summary-row span {
  color: var(--gray-dark);
  font-size: 0.78rem;
}

.cart-summary-row strong {
  font-size: 1.6rem;
  letter-spacing: -0.05em;
}

.cart-note {
  margin: 12px 0 19px;
  color: #7e8981;
  font-size: 0.65rem;
}

.checkout-button {
  display: flex;
  width: 100%;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  background: var(--green-bright);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}

.checkout-button:hover {
  background: #32eb7e;
  transform: translateY(-2px);
}

.cart-payment-labels {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
  color: #879189;
  font-family: "DM Mono", monospace;
  font-size: 0.53rem;
  letter-spacing: 0.08em;
}

/* =========================================================
   PRODUCT MODAL
========================================================= */

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 120;
  display: grid;
  visibility: hidden;
  width: min(1050px, calc(100% - 38px));
  max-height: calc(100dvh - 38px);
  grid-template-columns: 1fr 0.85fr;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-large);
  opacity: 0;
  transform: translate(-50%, -46%) scale(0.98);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}

.product-modal.open {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
}

.product-modal__media {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  padding: 50px;
  background:
    radial-gradient(circle at center, rgba(0, 200, 90, 0.12), transparent 35%),
    #e8eee8;
}

.product-modal__media::before {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(0, 156, 75, 0.15);
  border-radius: 50%;
  content: "";
}

.product-modal__category {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.65);
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 0.54rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-modal__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.2));
}

.product-modal__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 65px 48px;
}

.product-modal__eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 0.57rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-modal__content h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.product-modal__description {
  margin-bottom: 24px;
  color: var(--gray-dark);
  font-size: 0.86rem;
}

.product-modal__features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 36px;
}

.product-modal__features span {
  padding: 7px 10px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  color: var(--gray-dark);
  font-size: 0.65rem;
}

.product-modal__purchase {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid var(--border-dark);
}

.product-modal__purchase > div > span {
  display: block;
  margin-bottom: 3px;
  color: var(--gray);
  font-family: "DM Mono", monospace;
  font-size: 0.54rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-modal__purchase strong {
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.product-modal__financing {
  width: 100%;
  margin-top: 24px;
  padding: 14px;
  border-radius: 10px;
  background: #eef4ee;
  color: var(--gray-dark);
  font-size: 0.65rem;
}

/* =========================================================
   TOAST
========================================================= */

.toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 150;
  display: flex;
  visibility: hidden;
  min-width: 330px;
  max-width: calc(100% - 40px);
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: var(--black);
  box-shadow: var(--shadow-large);
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}

.toast.visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.toast__icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--green-bright);
  color: var(--black);
  font-weight: 800;
}

.toast strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.76rem;
}

.toast p {
  margin: 0;
  color: #8d9a91;
  font-size: 0.65rem;
}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--black);
  border-radius: var(--radius-pill);
  background: #3c4b41;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.75fr);
    gap: 42px;
  }

  .hero__title {
    font-size: clamp(4rem, 7.5vw, 6.5rem);
  }

  .hero-machine {
    min-height: 410px;
  }

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

  .category-card--large {
    grid-row: span 1;
    min-height: 420px;
  }

  .category-card--wide {
    grid-column: span 1;
  }

  .category-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .category-grid--three .category-card--large {
    min-height: 420px;
    grid-row: auto;
  }

  .category-grid--three .category-card--wide {
    min-height: 300px;
    grid-column: 1 / -1;
  }

  .store-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  }

  .store-gallery {
    grid-template-columns: 1fr;
  }

  .store-photo,
  .store-card {
    min-height: 430px;
  }

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(6),
  .product-card:nth-child(10) {
    grid-column: span 6;
  }

  .financing-panel {
    grid-template-columns: 1fr;
  }

  .payment-card {
    min-height: 340px;
  }

  .service__grid {
    gap: 65px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 85px 0;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: stretch;
    flex-direction: column;
    padding: 13px 20px 23px;
    border-top: 1px solid var(--border-light);
    background: rgba(7, 16, 11, 0.98);
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity var(--transition),
      transform var(--transition),
      visibility var(--transition);
  }

  .mobile-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 14px 5px;
    border-bottom: 1px solid var(--border-light);
    color: #a4b0a7;
    font-size: 0.83rem;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .hero__content {
    padding-bottom: 0;
  }

  .hero-showcase {
    max-width: 680px;
    margin: 0 auto;
  }

  .hero-machine {
    min-height: 480px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-controls {
    width: 100%;
  }

  .search-field {
    width: 100%;
  }

  .sort-field {
    min-width: 195px;
  }

  .service__grid {
    grid-template-columns: 1fr;
  }

  .service__intro {
    position: static;
  }


  .store-layout {
    grid-template-columns: 1fr;
  }

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

  .store-photo {
    min-height: 420px;
  }

  .store-card {
    min-height: 390px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-panel__actions {
    min-width: 0;
  }

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

  .product-modal__media {
    min-height: 390px;
  }

  .product-modal__media img {
    max-height: 320px;
  }

  .product-modal__content {
    padding: 45px 35px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .announcement__content {
    justify-content: center;
  }

  .announcement__content a {
    display: none;
  }

  .brand__text strong {
    font-size: 0.9rem;
  }

  .brand__text small {
    font-size: 0.48rem;
  }

  .icon-button {
    display: none;
  }

  .cart-button__label {
    display: none;
  }

  .cart-button {
    width: 43px;
    justify-content: center;
    padding: 0;
  }

  .cart-button svg {
    display: none;
  }

  .cart-count {
    min-width: 25px;
  }

  .hero__grid {
    gap: 35px;
  }

  .hero__title {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }

  .hero__description {
    font-size: 0.92rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    min-height: auto;
  }

  .hero-showcase {
    padding: 11px;
    border-radius: 22px;
  }

  .hero-machine {
    min-height: 375px;
  }

  .hero-machine__ring--outer {
    width: 260px;
    height: 260px;
  }

  .hero-machine__ring--inner {
    width: 175px;
    height: 175px;
  }

  .hero-machine__energy {
    font-size: 6.6rem;
  }

  .hero-showcase__bottom {
    grid-template-columns: 1fr;
  }

  .hero-showcase__bottom div {
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .hero-showcase__bottom div:last-child {
    border-bottom: 0;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card--large,
  .category-card--wide {
    min-height: 350px;
    grid-column: span 1;
  }

  .category-card__graphic {
    width: 200px;
    height: 200px;
  }

  .category-card__graphic::before {
    width: 150px;
    height: 150px;
  }

  .category-card__graphic::after {
    width: 90px;
    height: 90px;
  }

  .category-card__graphic span {
    font-size: 5rem;
  }


  .category-grid--three {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .category-grid--three .category-card--large,
  .category-grid--three .category-card--wide,
  .category-grid--three .category-card--dark {
    min-height: 350px;
    grid-column: auto;
    grid-row: auto;
  }

  .store-gallery {
    grid-template-columns: 1fr;
  }

  .store-photo,
  .store-card {
    min-height: 360px;
  }

  .store-card {
    padding: 36px 25px;
  }

  .catalog-controls {
    flex-direction: column;
  }

  .sort-field {
    width: 100%;
  }

  .sort-field select {
    width: 100%;
    max-width: none;
  }

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(6),
  .product-card:nth-child(10) {
    grid-column: span 12;
  }

  .product-card {
    min-height: 485px;
  }

  .product-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card__actions {
    width: 100%;
  }

  .details-button,
  .add-to-cart-button {
    flex: 1;
  }

  .financing-panel {
    border-radius: 22px;
  }

  .financing-panel__content {
    padding: 44px 25px;
  }

  .payment-options {
    grid-template-columns: 1fr;
  }

  .payment-card {
    min-height: 230px;
    border-radius: 0 !important;
  }

  .payment-card:first-child {
    border-radius: 15px 15px 0 0 !important;
  }

  .payment-card:last-child {
    border-radius: 0 0 15px 15px !important;
  }

  .service-item {
    grid-template-columns: 32px 1fr;
    gap: 13px;
    padding: 28px 0;
  }

  .service-item__number {
    padding-top: 6px;
  }

  .service-item__icon {
    display: none;
  }

  .contact-panel {
    gap: 35px;
    padding: 45px 25px;
    border-radius: 22px;
  }

  .contact-panel .button {
    width: 100%;
  }

  .site-footer__top {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 45px 0;
  }

  .site-footer__top > p {
    text-align: left;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 26px 0;
  }

  .cart-drawer__header,
  .cart-drawer__body,
  .cart-drawer__footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .cart-item {
    grid-template-columns: 72px 1fr auto;
  }

  .cart-item__image {
    width: 72px;
    height: 72px;
  }

  .product-modal {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 20px;
  }

  .product-modal__media {
    min-height: 315px;
    padding: 35px 25px;
  }

  .product-modal__media::before {
    width: 260px;
    height: 260px;
  }

  .product-modal__media img {
    max-height: 245px;
  }

  .product-modal__content {
    padding: 38px 23px;
  }

  .product-modal__purchase {
    align-items: stretch;
    flex-direction: column;
  }

  .product-modal__purchase .button {
    width: 100%;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 420px) {
  .site-header__content {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 37px;
    height: 37px;
  }

  .header-actions {
    gap: 6px;
  }

  .cart-button,
  .menu-button {
    width: 39px;
    height: 39px;
  }

  .hero__title {
    font-size: 3.35rem;
  }

  .hero-machine {
    min-height: 330px;
  }

  .hero-machine__ring--outer {
    width: 220px;
    height: 220px;
  }

  .hero-machine__ring--inner {
    width: 145px;
    height: 145px;
  }

  .hero-machine__label {
    display: none;
  }

  .category-card {
    padding: 22px;
  }

  .category-card__content {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }


  .store-photo,
  .store-card {
    min-height: 320px;
    border-radius: 20px;
  }

  .store-card {
    padding: 30px 22px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
  outline: 3px solid rgba(0, 200, 90, 0.65);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}