@font-face {
  font-family: "Tektur";
  src: url("assets/fonts/Tektur-variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 75% 125%;
}

:root {
  --bg: #FFFFFF;
  --surface: rgba(255, 255, 255, 0.86);
  --text: #000000;
  --muted: rgba(0, 0, 0, 0.62);
  --line: rgba(0, 0, 0, 0.1);
  --orange: #FF7C57;
  --orange-mid: #FF8C51;
  --orange-bright: #FF8E55;
  --orange-light: #FFAB67;
  --orange-dark: #FF7C57;
  --orange-soft: rgba(255, 171, 103, 0.16);
  --orange-wash: rgba(255, 171, 103, 0.1);
  --green: #FF8C51;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-product {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-10px) scale(1.01);
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    box-shadow: 0 14px 32px rgba(255, 124, 87, 0.28);
  }

  50% {
    box-shadow: 0 18px 42px rgba(255, 124, 87, 0.42);
  }
}

@keyframes buy-success {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(0.96);
  }

  100% {
    transform: scale(1);
  }
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% -8%, rgba(255, 124, 87, 0.14), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(255, 140, 81, 0.12), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "Tektur", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-variation-settings: "wdth" 100;
}

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

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(160px, 240px) auto minmax(240px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  width: min(1440px, calc(100% - 48px));
  margin: 14px auto 0;
  padding: 10px;
  border: 1px solid rgba(255, 124, 87, 0.34);
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(255, 124, 87, 0.96), rgba(255, 140, 81, 0.88), rgba(255, 171, 103, 0.94));
  box-shadow: 0 18px 54px rgba(255, 124, 87, 0.18);
  backdrop-filter: blur(24px);
  animation: fade-up 520ms ease both;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 0;
  letter-spacing: 0;
}

.logo,
.catalog-button,
.desktop-nav a,
.header-actions button,
.primary-link,
.secondary-link,
.chip,
.buy-button,
.product-card button {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.logo:hover,
.catalog-button:hover,
.header-actions button:hover,
.primary-link:hover,
.buy-button:hover,
.product-card button:hover {
  transform: translateY(-2px);
}

.logo-image {
  width: clamp(160px, 17vw, 240px);
  height: auto;
  flex: 0 0 auto;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.site-header .logo span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.logo span {
  display: grid;
  gap: 1px;
  white-space: nowrap;
}

.logo strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.logo small {
  color: var(--text);
  font-size: 10px;
  font-weight: 750;
}

.catalog-button,
.header-actions button,
.chip,
.product-card button {
  border: 0;
  cursor: pointer;
}

.catalog-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.search input {
  width: 100%;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  outline: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.search input:focus {
  border-color: rgba(255, 124, 87, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 124, 87, 0.1);
}

.desktop-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.desktop-nav a {
  padding: 10px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.desktop-nav a:hover {
  background: #FFFFFF;
  color: var(--text);
  transform: translateY(-1px);
}

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

.header-actions a {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.header-actions button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 20px;
}

.cart-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
}

main {
  width: min(1440px, calc(100% - 48px));
  margin: 22px auto 96px;
}

.site-footer {
  width: min(1440px, calc(100% - 48px));
  margin: -42px auto 96px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  grid-template-areas:
    "copy visual"
    "quick quick";
  gap: 36px clamp(32px, 4vw, 64px);
  align-items: center;
  min-height: 0;
  padding: clamp(48px, 5vw, 76px);
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 124, 87, 0.28), transparent 32%),
    radial-gradient(circle at 12% 84%, rgba(255, 124, 87, 0.12), transparent 26%),
    linear-gradient(145deg, #FFFFFF 0%, #FFFFFF 55%, rgba(255, 171, 103, 0.2) 100%);
  box-shadow: var(--shadow);
  animation: fade-up 680ms 80ms ease both;
}

.hero-copy {
  position: relative;
  grid-area: copy;
  z-index: 2;
  animation: fade-up 720ms 160ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(46px, 5.7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 480px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.primary-link,
.buy-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #FFFFFF;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(255, 124, 87, 0.28);
  cursor: pointer;
}

.primary-link:hover,
.buy-button:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-mid));
  box-shadow: 0 18px 44px rgba(255, 124, 87, 0.36);
}

.primary-link {
  padding: 0 24px;
}

.secondary-link {
  color: var(--orange-dark);
  font-weight: 800;
}

.secondary-link:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  grid-area: visual;
  z-index: 1;
  align-self: stretch;
  min-height: 440px;
  animation: fade-up 760ms 220ms ease both;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  inset: 3% 1% 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 56% 45%, rgba(255, 140, 81, 0.34), transparent 27%),
    radial-gradient(circle at 62% 70%, rgba(255, 124, 87, 0.16), transparent 36%),
    radial-gradient(circle at 43% 58%, rgba(255, 255, 255, 0.72), transparent 44%);
  filter: blur(2px);
}

.hero-visual::after {
  right: 7%;
  bottom: 10%;
  left: 18%;
  height: 18%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  filter: blur(34px);
}

.hero-cluster {
  position: absolute;
  right: -4%;
  bottom: 1%;
  z-index: 1;
  width: 108%;
  height: 96%;
  object-fit: contain;
  animation: float-product 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.17));
  transform-origin: center;
}

.quick-buy {
  position: relative;
  grid-area: quick;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.16fr 1fr 1fr 1.25fr;
  gap: 16px;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(255, 140, 81, 0.22);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 171, 103, 0.88));
  backdrop-filter: blur(26px);
  box-shadow: 0 20px 60px rgba(255, 124, 87, 0.12);
  animation: fade-up 760ms 300ms ease both;
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.quick-buy:hover {
  border-color: rgba(255, 124, 87, 0.28);
  box-shadow: 0 24px 70px rgba(255, 124, 87, 0.18);
  transform: translateY(-2px);
}

.step {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

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

.chip {
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--text);
  font-weight: 800;
}

.chip.is-active {
  background: linear-gradient(135deg, var(--orange), var(--orange-mid));
  color: #FFFFFF;
  box-shadow: 0 10px 22px rgba(255, 124, 87, 0.22);
}

.chip:hover {
  transform: translateY(-1px);
}

.quick-empty {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

select {
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 140, 81, 0.22);
  border-radius: 999px;
  background: #FFFFFF;
  font-weight: 700;
}

.model-trigger {
  display: none;
  width: 100%;
  min-height: 42px;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(255, 140, 81, 0.22);
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--text);
  font-weight: 800;
  text-align: left;
  position: relative;
}

.model-trigger::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.model-options {
  display: none;
}

.model-option {
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 0;
  background: #FFFFFF;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
  text-align: left;
  appearance: none;
  cursor: pointer;
}

.model-option + .model-option {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.model-option.is-active {
  background: var(--orange-soft);
  color: var(--text);
  box-shadow: none;
}

.model-options.is-open {
  display: flex;
}

.delivery-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.delivery-row strong {
  font-size: 14px;
}

.buy-button {
  min-width: 190px;
  padding: 0 18px;
}

.section {
  padding: 72px 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section h2,
.trade-in h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  display: grid;
  min-height: 260px;
  align-content: space-between;
  padding: 20px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 171, 103, 0.7), rgba(255, 255, 255, 0.92) 42%),
    #FFFFFF;
  border: 1px solid rgba(255, 140, 81, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.category-card:hover {
  border-color: rgba(255, 124, 87, 0.24);
  transform: translateY(-5px);
  box-shadow: 0 24px 66px rgba(255, 124, 87, 0.13);
}

.category-card img {
  width: 100%;
  height: 178px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 240ms ease;
}

.category-card:hover img {
  transform: scale(1.04) translateY(-3px);
}

.category-card span {
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 430px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 171, 103, 0.78), rgba(255, 255, 255, 0.96) 36%),
    #FFFFFF;
  border: 1px solid rgba(255, 140, 81, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  border-color: rgba(255, 124, 87, 0.22);
  transform: translateY(-4px);
  box-shadow: 0 24px 62px rgba(255, 124, 87, 0.12);
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 240ms ease;
}

.product-card > a {
  display: block;
}

.product-card:hover img {
  transform: scale(1.035) translateY(-3px);
}

.status {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.product-card h3 a,
.shop-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card h3 a:hover,
.shop-card h3 a:hover {
  color: var(--orange-dark);
}

.price {
  margin-bottom: 0;
  color: var(--orange-dark);
  font-size: 24px;
  font-weight: 900;
}

.product-card button {
  min-height: 46px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-weight: 900;
}

.product-card button:hover {
  background: var(--orange);
  color: #FFFFFF;
}

.buy-button.is-success {
  animation: buy-success 260ms ease both;
  background: var(--text);
}

.trade-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 72px;
  padding: 34px;
  border-radius: 30px;
  background: var(--text);
  color: #FFFFFF;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.trade-in:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.18);
}

.trade-in p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 0.82fr 1.28fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 140, 81, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 171, 103, 0.92), rgba(255, 255, 255, 0.88)),
    #FFFFFF;
  box-shadow: 0 20px 60px rgba(255, 124, 87, 0.09);
}

.footer-logo {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo .logo-image {
  width: 180px;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
}

.footer-logo span {
  display: grid;
  gap: 2px;
}

.footer-logo strong,
.contact-card h2,
.legal-card h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.footer-logo small {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.footer-text {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.55;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 124, 87, 0.18);
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--orange);
  color: #FFFFFF;
}

.contact-card,
.legal-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
}

.legal-card {
  gap: 8px;
}

.contact-card {
  font-style: normal;
}

.contact-card a,
.contact-card span,
.legal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.contact-card a {
  color: var(--orange-dark);
  font-weight: 850;
}

.mobile-nav {
  display: none;
}

.page-hero {
  padding: clamp(42px, 5vw, 72px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 124, 87, 0.2), transparent 32%),
    linear-gradient(135deg, #FFFFFF, rgba(255, 171, 103, 0.16));
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 860px;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  margin-top: 26px;
}

.shop-layout > *,
.catalog-grid,
.shop-card {
  min-width: 0;
}

.filter-panel,
.basket-summary,
.admin-form,
.import-panel {
  padding: 20px;
  border: 1px solid rgba(255, 124, 87, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.05);
}

.admin-lock {
  min-height: calc(100vh - 110px);
  display: grid;
  place-items: center;
}

.admin-login {
  width: min(100%, 520px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 124, 87, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 124, 87, 0.22), transparent 34%),
    #FFFFFF;
  box-shadow: var(--shadow);
}

.admin-login h1 {
  margin-bottom: 10px;
}

.admin-login p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.admin-login-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.admin-login-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.admin-login-form input {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 124, 87, 0.24);
  border-radius: 16px;
}

.admin-logout {
  width: fit-content;
  padding: 0 18px;
}

.is-admin-locked .admin-mobile-nav {
  display: none;
}

.filter-panel h2,
.basket-summary h2,
.admin-form h2,
.import-panel h2 {
  margin-bottom: 16px;
}

.filter-list {
  display: grid;
  gap: 8px;
}

.filter-list button,
.payment-toggle button,
.secondary-admin,
.admin-table button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
}

.filter-list button.is-active,
.payment-toggle button.is-active {
  background: linear-gradient(135deg, var(--orange), var(--orange-mid));
  color: #FFFFFF;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: var(--muted);
}

.catalog-toolbar strong {
  color: var(--text);
  font-size: 20px;
}

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

.shop-card {
  display: grid;
  gap: 12px;
  width: 100%;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 124, 87, 0.14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 171, 103, 0.16), rgba(255, 255, 255, 0.95) 35%);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.05);
}

.shop-card > a {
  min-width: 0;
}

.shop-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.shop-card h3 {
  margin-bottom: 0;
  font-size: 21px;
  overflow-wrap: anywhere;
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #16a34a;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(22, 163, 74, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-call:hover {
  transform: translateY(-2px);
  background: #15803d;
  box-shadow: 0 22px 48px rgba(22, 163, 74, 0.34);
}

.floating-call svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.product-attrs {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-sku {
  width: fit-content;
  margin: 12px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 171, 103, 0.16);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.product-sku span {
  color: var(--text);
}

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

.variant-controls label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.variant-controls select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 124, 87, 0.22);
  border-radius: 14px;
  background: #FFFFFF;
  color: var(--text);
  font-weight: 850;
}

.variant-controls-large {
  max-width: 520px;
  margin: 20px 0 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.single-price {
  margin: 0;
  color: var(--orange);
  font-size: 28px;
  font-weight: 950;
}

.single-price-large {
  margin: 22px 0;
  font-size: clamp(34px, 4vw, 52px);
}

.dual-price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.dual-price span,
.price-panel > div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 16px;
  background: #FFFFFF;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.dual-price small,
.price-panel small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.price-disclaimer,
.price-summary-disclaimer {
  display: block;
  color: rgba(0, 0, 0, 0.48);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
}

.price-disclaimer {
  margin: 8px 0 0;
}

.price-summary-disclaimer {
  margin: -4px 0 10px;
}

.shop-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.shop-card-actions a,
.shop-card-actions button {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--text);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.shop-card-actions button {
  background: var(--orange);
  color: #FFFFFF;
}

.empty-state {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 171, 103, 0.14);
}

.product-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border-radius: 34px;
  background: linear-gradient(135deg, #FFFFFF, rgba(255, 171, 103, 0.16));
  box-shadow: var(--shadow);
}

.product-media {
  display: grid;
  min-height: 460px;
  place-items: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
}

.product-media img {
  width: 92%;
  height: 420px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-info h1 {
  font-size: clamp(38px, 5vw, 68px);
}

.price-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.price-panel strong {
  font-size: 28px;
}

.summary-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.basket-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 18px;
  margin-top: 24px;
}

.basket-list {
  display: grid;
  gap: 12px;
}

.basket-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 124, 87, 0.12);
}

.basket-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.qty-control {
  display: grid;
  gap: 8px;
  min-width: 120px;
}

.qty-control input {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
}

.qty-control button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--text);
  font-weight: 850;
}

.basket-summary {
  position: sticky;
  top: 96px;
  align-self: start;
}

.payment-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}

.basket-summary dl {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
}

.basket-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.basket-summary dd {
  margin: 0;
  font-weight: 900;
}

.promo-form {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 171, 103, 0.12);
}

.promo-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.promo-form span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.promo-form input {
  min-height: 42px;
  min-width: 0;
  padding: 0 12px;
  border: 1px solid rgba(255, 124, 87, 0.22);
  border-radius: 14px;
  background: #FFFFFF;
  text-transform: uppercase;
}

.promo-form button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 14px;
  background: var(--orange);
  color: #FFFFFF;
  font-weight: 900;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  margin-top: 24px;
}

.promo-admin {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  margin-top: 24px;
}

.category-admin {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  margin-top: 24px;
}

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

.admin-form label,
.import-panel {
  display: grid;
  gap: 7px;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.import-panel input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 124, 87, 0.22);
  border-radius: 14px;
  background: #FFFFFF;
}

.checkbox-line {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.checkbox-line input {
  width: auto;
  min-height: auto;
}

.admin-form textarea {
  padding: 12px 14px;
}

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

.secondary-admin {
  padding: 0 16px;
}

.import-panel {
  align-content: start;
}

.import-panel .primary-link,
.import-panel .secondary-admin {
  width: 100%;
}

.admin-table-section {
  margin-top: 30px;
}

.admin-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  background: #FFFFFF;
}

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

.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
  vertical-align: top;
}

.admin-table small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.admin-actions-cell {
  min-width: 210px;
}

.admin-row-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  gap: 8px;
  justify-content: end;
  align-items: center;
}

.admin-row-actions button {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  white-space: nowrap;
}

.admin-row-actions [data-delete],
.admin-row-actions [data-delete-promo],
.admin-row-actions [data-delete-category] {
  background: rgba(255, 124, 87, 0.14);
  color: var(--orange-dark);
}

.promo-table {
  min-width: 680px;
}

.category-table {
  min-width: 520px;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto minmax(220px, 1fr) auto;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .catalog-button {
    display: none;
  }

  .search {
    grid-column: 1 / -1;
    order: 2;
  }

  .header-actions a,
  .header-actions button:first-of-type {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "quick";
    min-height: auto;
    padding: 34px 22px 22px;
    border-radius: 28px;
  }

  h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-visual {
    min-height: 240px;
  }

  .hero-cluster {
    right: -6%;
    bottom: 2%;
    width: 112%;
    height: 92%;
  }

  .quick-buy {
    grid-template-columns: 1fr;
    margin-top: 10px;
    padding: 14px;
    border-radius: 22px;
  }

  .quick-model-field select {
    display: none;
  }

  .model-trigger {
    display: block;
  }

  .model-options {
    margin-top: 8px;
    padding: 6px 0;
    gap: 0;
    overflow: visible;
    flex-direction: column;
    border: 0;
    border-radius: 18px;
    background: #FFFFFF;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
  }

  .model-option {
    width: 100%;
    border-radius: 0;
  }

  .model-option:first-child {
    border-radius: 14px 14px 0 0;
  }

  .model-option:last-child {
    border-radius: 0 0 14px 14px;
  }

  .delivery-row {
    grid-template-columns: 1fr;
  }

  .buy-button {
    width: 100%;
  }

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

  .product-list .product-card:first-child {
    grid-column: 1 / -1;
  }

  .shop-layout,
  .product-detail,
  .basket-layout,
  .admin-grid,
  .promo-admin,
  .category-admin {
    grid-template-columns: 1fr;
  }

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

  .basket-summary {
    position: static;
  }

  .product-media {
    min-height: 320px;
  }

  .product-media img {
    height: 300px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-header,
  main,
  .site-footer {
    width: min(100% - 24px, 1440px);
  }

  main,
  section,
  article,
  aside,
  form,
  label,
  input,
  select,
  textarea,
  button,
  .hero,
  .quick-buy,
  .category-card,
  .product-card,
  .shop-card,
  .product-detail,
  .basket-item,
  .basket-summary,
  .admin-form,
  .import-panel,
  .contact-card,
  .legal-card {
    min-width: 0;
    max-width: 100%;
  }

  h1,
  h2,
  h3,
  p,
  a,
  button,
  dd,
  dt,
  span,
  small,
  input,
  select,
  textarea {
    overflow-wrap: anywhere;
  }

  button,
  .primary-link,
  .secondary-link,
  .catalog-button,
  .cart-link,
  .buy-button,
  .chip,
  .filter-list button,
  .shop-card-actions a,
  .shop-card-actions button,
  .product-card button,
  .qty-control button,
  .promo-form button,
  .payment-toggle button,
  .secondary-admin {
    font-size: 13px;
    line-height: 1.15;
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1;
  }

  h2,
  .section h2,
  .trade-in h2 {
    font-size: clamp(24px, 7vw, 34px);
    line-height: 1.05;
  }

  h3 {
    font-size: 18px;
    line-height: 1.12;
  }

  .page-hero p:not(.eyebrow),
  .hero-text,
  .trade-in p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.45;
  }

  .site-header {
    margin-top: 8px;
    border-radius: 18px;
  }

  .site-header .logo-image {
    width: min(145px, 46vw);
    border-radius: 12px;
  }

  .logo strong {
    font-size: 14px;
  }

  .logo small {
    font-size: 10px;
  }

  .hero {
    padding: 24px 16px 16px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .primary-link {
    width: 100%;
  }

  #checkout-link {
    display: flex;
    min-height: 60px;
    padding: 10px 18px;
    justify-content: center;
    font-size: 16px;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
  }

  .section {
    padding-top: 46px;
  }

  .section-heading {
    display: block;
  }

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

  .category-card {
    min-height: 190px;
    padding: 14px;
    border-radius: 22px;
  }

  .category-card img {
    height: 128px;
  }

  .category-card span {
    font-size: 16px;
  }

  .page-hero {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .shop-layout {
    gap: 14px;
    margin-top: 18px;
    overflow: hidden;
  }

  .catalog-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .filter-panel {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 14px;
    border-radius: 20px;
  }

  .filter-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .filter-list button {
    min-width: 0;
    width: 100%;
    min-height: 46px;
    padding: 0 8px;
    font-size: 12px;
    white-space: normal;
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .catalog-toolbar {
    align-items: flex-start;
  }

  .catalog-toolbar span {
    font-size: 13px;
  }

  .shop-card {
    max-width: 100%;
    padding: 14px;
    border-radius: 22px;
  }

  .shop-card img {
    max-width: 100%;
    height: min(190px, 48vw);
  }

  .shop-card h3 {
    font-size: 18px;
    line-height: 1.15;
  }

  .single-price {
    font-size: 24px;
  }

  .dual-price,
  .price-panel,
  .shop-card-actions {
    grid-template-columns: 1fr;
  }

  .variant-controls {
    grid-template-columns: 1fr;
  }

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

  .product-card {
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    align-items: center;
    border-radius: 22px;
  }

  .product-card img {
    grid-row: 1 / 3;
    height: 96px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .price {
    font-size: 20px;
  }

  .product-card button {
    grid-column: 2;
    min-height: 42px;
  }

  .trade-in {
    display: block;
    margin-bottom: 36px;
    padding: 24px;
    border-radius: 24px;
  }

  .trade-in .primary-link {
    margin-top: 22px;
  }

  .product-detail {
    padding: 18px;
    border-radius: 24px;
  }

  .product-info h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1;
  }

  .product-media {
    min-height: 240px;
  }

  .product-media img {
    height: 220px;
  }

  .basket-item {
    grid-template-columns: 92px 1fr;
    gap: 12px;
    padding: 14px;
    overflow: hidden;
  }

  .basket-item img {
    width: 88px;
    height: 88px;
  }

  .basket-item h3 {
    font-size: 16px;
    line-height: 1.15;
  }

  .basket-item p,
  .dual-price small,
  .basket-summary,
  .promo-form label,
  .summary-note {
    font-size: 12px;
  }

  .dual-price span,
  .price-panel > div {
    font-size: 15px;
  }

  .basket-summary h2 {
    font-size: 22px;
  }

  .qty-control {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }

  .qty-control button,
  .promo-form button,
  .shop-card-actions a,
  .shop-card-actions button {
    min-height: 42px;
    padding-inline: 10px;
    white-space: nowrap;
  }

  .promo-form span {
    grid-template-columns: 1fr;
  }

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

  .admin-table-wrap {
    max-width: 100%;
  }

  .admin-actions-cell {
    min-width: 190px;
  }

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

  .admin-row-actions button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
  }

  .admin-form,
  .import-panel {
    padding: 16px;
    border-radius: 20px;
  }

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

  .site-footer {
    margin-bottom: 98px;
  }

  .footer-main {
    padding: 18px;
    border-radius: 24px;
  }

  .footer-logo .logo-image {
    width: min(132px, 42vw);
    border-radius: 14px;
  }

  .footer-logo strong,
  .contact-card h2,
  .legal-card h2 {
    font-size: 15px;
  }

  .footer-logo small,
  .footer-text,
  .contact-card,
  .legal-card {
    font-size: 12px;
    line-height: 1.45;
  }

  .contact-card,
  .legal-card {
    min-height: 0;
    padding: 16px;
    border-radius: 20px;
  }

  .mobile-nav {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 4px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(24px);
  }

  .floating-call {
    right: 18px;
    bottom: 84px;
    display: grid;
    width: 52px;
    height: 52px;
    min-height: 0;
    place-items: center;
    gap: 0;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    line-height: 1;
    box-shadow: 0 14px 34px rgba(22, 163, 74, 0.3);
  }

  .floating-call span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .floating-call svg {
    width: 20px;
    height: 20px;
    margin: 0;
  }

  .mobile-nav a {
    display: grid;
    min-height: 42px;
    place-items: center;
    border-radius: 16px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-nav .is-active {
    background: var(--orange-soft);
    color: var(--orange-dark);
  }
}

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