:root {
  --amber: #d97706;
  --amber-light: #f59e0b;
  --amber-pale: #fffbeb;
  --steel-900: #0f172a;
  --steel-800: #1e293b;
  --steel-700: #334155;
  --steel-600: #475569;
  --steel-500: #64748b;
  --steel-400: #94a3b8;
  --steel-200: #e2e8f0;
  --steel-100: #f1f5f9;
  --steel-50: #f8fafc;
  --success: #16a34a;
  --danger: #dc2626;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 0.25rem 0.75rem rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 1.5rem 3rem rgba(15, 23, 42, 0.16);
  --container: 80rem;
  --container-narrow: 64rem;
}

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

html,
body {
  max-width: 100%;
}

body {
  margin: 0;
  color: var(--steel-900);
  background: #fff;
}

body.menu-open {
  overflow: hidden;
}

main {
  display: block;
}

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

img,
video {
  height: auto;
}

a,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: rgba(217, 119, 6, 0.18);
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.max-w-7xl,
.max-w-5xl {
  width: 100%;
}

.max-w-7xl {
  max-width: var(--container);
}

.max-w-5xl {
  max-width: var(--container-narrow);
}

.max-w-lg {
  max-width: 32rem;
}

.mx-auto {
  margin-inline: auto;
}

.px-3 {
  padding-inline: 0.75rem;
}

.px-4 {
  padding-inline: 1rem;
}

.px-6 {
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.py-1 {
  padding-block: 0.25rem;
}

.py-2 {
  padding-block: 0.5rem;
}

.py-3 {
  padding-block: 0.75rem;
}

.py-3\.5 {
  padding-block: 0.875rem;
}

.py-10 {
  padding-block: clamp(2.5rem, 6vw, 3rem);
}

.py-20 {
  padding-block: clamp(4rem, 8vw, 5rem);
}

.py-24 {
  padding-block: clamp(4.5rem, 9vw, 6rem);
}

.p-6 {
  padding: clamp(1rem, 3vw, 1.5rem);
}

.p-8 {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-12 {
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-0\.5 {
  margin-bottom: 0.125rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-4 {
  margin-right: 1rem;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

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

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

.flex-1 {
  flex: 1 1 0%;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-0 {
  gap: 0;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-x-6 {
  column-gap: 1.5rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.space-y-0 > * + * {
  margin-top: 0;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.w-10 {
  width: 2.5rem;
}

.w-2 {
  width: 0.5rem;
}

.w-full {
  width: 100%;
}

.h-10 {
  height: 2.5rem;
}

.h-2 {
  height: 0.5rem;
}

.min-w-0 {
  min-width: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.overflow-x-auto::-webkit-scrollbar {
  height: 0.4rem;
}

.pointer-events-none {
  pointer-events: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.left-0 {
  left: 0;
}

.top-1\/2 {
  top: 50%;
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

.-translate-x-1\/4 {
  transform: translateX(-25%);
}

.z-10 {
  z-index: 10;
}

.rounded-lg {
  border-radius: 0.75rem;
}

.rounded-xl {
  border-radius: 1rem;
}

.rounded-2xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 999px;
}

.border {
  border: 1px solid transparent;
}

.border-2 {
  border: 0.125rem solid transparent;
}

.border-t {
  border-top: 1px solid transparent;
}

.border-slate-100 {
  border-color: var(--steel-100);
}

.border-slate-200 {
  border-color: var(--steel-200);
}

.border-slate-800 {
  border-color: var(--steel-800);
}

.bg-white {
  background: #fff;
}

.bg-amber-500 {
  background: var(--amber-light);
}

.bg-amber-600 {
  background: var(--amber);
}

.bg-green-500 {
  background: #22c55e;
}

.text-white {
  color: #fff;
}

.text-right {
  text-align: right;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.6;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.5;
}

.text-xl {
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  line-height: 1.4;
}

.text-3xl {
  font-size: clamp(1.75rem, 4.5vw, 2.25rem);
  line-height: 1.12;
}

.text-4xl {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.05;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-mono {
  font-family: "Courier New", Courier, monospace;
}

.leading-tight {
  line-height: 1.15;
}

.leading-relaxed {
  line-height: 1.75;
}

.tracking-widest {
  letter-spacing: 0.2em;
}

.uppercase {
  text-transform: uppercase;
}

.text-amber-500 {
  color: var(--amber-light);
}

.text-amber-600 {
  color: var(--amber);
}

.text-green-600 {
  color: var(--success);
}

.text-slate-400 {
  color: var(--steel-400);
}

.text-slate-500 {
  color: var(--steel-500);
}

.text-slate-600 {
  color: var(--steel-600);
}

.text-slate-700 {
  color: var(--steel-700);
}

.text-slate-800 {
  color: var(--steel-800);
}

.text-slate-900 {
  color: var(--steel-900);
}

.opacity-10 {
  opacity: 0.1;
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-2xl {
  box-shadow: var(--shadow-lg);
}

.transition-colors {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.transition-all {
  transition: all 0.2s ease;
}

.hover\:bg-amber-500:hover {
  background: var(--amber-light);
}

.hover\:bg-slate-800:hover {
  background: var(--steel-800);
}

.hover\:text-white:hover {
  color: #fff;
}

.hover\:text-amber-400:hover,
.hover\:text-amber-500:hover,
.group:hover .group-hover\:text-amber-600 {
  color: var(--amber-light);
}

.hover\:text-slate-400:hover {
  color: var(--steel-400);
}

.hover\:underline:hover {
  text-decoration: underline;
}

.section-muted {
  background: var(--steel-50);
}

.ticker-strip {
  display: flex;
  align-items: center;
  min-height: 3.75rem;
  overflow: hidden;
  background: var(--amber-pale);
  border-block: 1px solid rgba(217, 119, 6, 0.15);
}

.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  will-change: transform;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding-inline: 1.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--steel-800);
}

.ticker-sep {
  width: 1px;
  height: 1.375rem;
  flex-shrink: 0;
  opacity: 0.7;
  background: var(--amber);
}

.stat-value {
  color: var(--amber);
}

.tabs-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.tabs-list {
  position: relative;
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--steel-200);
  -webkit-overflow-scrolling: touch;
}

.tab-indicator {
  display: none;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-bottom: 0.1875rem solid transparent;
  background: transparent;
  color: var(--steel-600);
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.tab-btn:hover {
  color: var(--amber);
  background: rgba(217, 119, 6, 0.03);
}

.tab-btn.active {
  color: var(--amber);
  font-weight: 600;
  border-bottom-color: var(--amber);
  background: rgba(217, 119, 6, 0.05);
}

.tab-panel {
  display: none;
  flex: 1 1 auto;
  padding: 1.5rem 1rem;
}

.tab-panel.active {
  display: block;
  animation: fadeSlideRight 0.25s ease;
}

.tab-svg-box {
  width: clamp(7rem, 28vw, 10rem);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 1rem;
  background: var(--steel-900);
}

.tab-item-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  flex-shrink: 0;
  background: var(--amber);
}

.cta-link {
  color: var(--amber);
  text-decoration: none;
}

.cta-link:hover {
  text-decoration: underline;
}

.filter-pills {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.filter-pills::-webkit-scrollbar {
  display: none;
}

.fpill {
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--steel-100);
  color: var(--steel-600);
  font-size: 0.8125rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fpill.active {
  background: var(--amber);
  color: var(--steel-900);
  font-weight: 600;
}

.fpill:hover:not(.active) {
  background: var(--steel-200);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

#product-grid.is-filtered {
  grid-template-columns: 1fr;
}

#product-grid.is-filtered .pcard.is-hidden {
  display: none !important;
}

#product-grid.is-filtered .pcard:not(.is-hidden) {
  grid-column: auto !important;
  grid-row: auto !important;
}

.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--steel-200);
  border-radius: 0.75rem;
  background: #fff;
  transition: background-color 0.35s ease, border-color 0.35s ease, transform 0.25s ease;
}

.pcard:hover,
.pcard:focus-within {
  background: var(--steel-900);
  border-color: var(--steel-800);
  transform: translateY(-0.125rem);
}

.pcard:hover .pcard-name,
.pcard:focus-within .pcard-name {
  color: #fff;
}

.pcard:hover .pcard-desc,
.pcard:focus-within .pcard-desc {
  color: var(--steel-400);
}

.pcard:hover .pcard-content,
.pcard:focus-within .pcard-content {
  background: var(--steel-900);
}

.pcard:hover .pcard-bar,
.pcard:focus-within .pcard-bar {
  height: 0.25rem;
}

.pcard:hover .pcard-btn,
.pcard:focus-within .pcard-btn {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--steel-900);
}

.pcard:hover .pcard-article,
.pcard:focus-within .pcard-article {
  color: var(--amber-light);
}

.pcard-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 11rem;
  aspect-ratio: 16 / 9;
  background: var(--steel-900);
}

.pcard-img-lg {
  min-height: 14rem;
}

.pcard-photo {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.75rem;
  object-fit: contain;
}

.pcard-img-lg .pcard-photo {
  padding: 1rem;
}

.pcard-article {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  padding: 0.1875rem 0.4375rem;
  border-radius: 0.25rem;
  background: rgba(15, 23, 42, 0.85);
  color: var(--amber);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  transition: color 0.35s ease;
}

.pcard-dot {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
}

.pcard-dot--stock {
  background: #22c55e;
}

.pcard-dot--request {
  background: var(--amber);
}

.pcard-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.875rem;
  background: #fff;
  transition: background-color 0.35s ease;
}

.pcard-name {
  color: var(--steel-900);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.35s ease;
}

.pcard-desc {
  display: -webkit-box;
  overflow: hidden;
  color: var(--steel-500);
  font-size: 0.6875rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.35s ease;
}

.pcard-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: var(--amber-pale);
  color: var(--amber);
  font-size: 0.625rem;
  font-weight: 500;
}

.pcard-bar {
  height: 0;
  background: var(--amber);
  transition: height 0.35s ease;
}

.pcard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  margin-top: 0.25rem;
  padding: 0.625rem 1rem;
  border: 1px solid var(--steel-200);
  border-radius: 0.5rem;
  color: var(--steel-600);
  text-decoration: none;
  font-size: 0.75rem;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.step-list {
  display: grid;
}

.step-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
}

.step-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  color: var(--amber);
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(3rem, 12vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  opacity: 0.1;
  transition: opacity 0.7s ease;
}

.step-num.visible {
  opacity: 1;
}

.step-connector {
  width: 2px;
  height: 3.25rem;
  margin: 0 auto;
  border-left: 2px dashed rgba(217, 119, 6, 0.35);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.why-tile {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  overflow: hidden;
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  border: 1px solid var(--steel-200);
  border-radius: 0.75rem;
  background: #fff;
  transition: background-color 0.3s ease;
}

.why-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.25rem;
  border-radius: 0.75rem 0 0 0.75rem;
  background: var(--amber);
  transition: width 0.3s ease;
}

.why-tile:hover,
.why-tile:focus-within {
  background: var(--amber-pale);
}

.why-tile:hover::before,
.why-tile:focus-within::before {
  width: 0.5rem;
}

.why-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  background: rgba(217, 119, 6, 0.12);
  font-size: 1.375rem;
}

.form-section {
  background: var(--steel-900);
}

.form-decor {
  width: clamp(12rem, 30vw, 22.5rem);
  height: clamp(12rem, 30vw, 22.5rem);
}

.float-group {
  position: relative;
  margin-bottom: 1rem;
}

.float-input,
.float-ta {
  width: 100%;
  min-height: 3.25rem;
  padding: 1.25rem 0.875rem 0.5rem;
  border: 1.5px solid var(--steel-200);
  border-radius: 0.625rem;
  background: #fff;
  color: var(--steel-900);
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.float-ta {
  min-height: 7rem;
}

.float-input:focus,
.float-ta:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.float-label {
  position: absolute;
  top: 0.9375rem;
  left: 0.875rem;
  color: var(--steel-500);
  font-size: 0.875rem;
  transform-origin: left top;
  pointer-events: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.float-input:focus + .float-label,
.float-input:not(:placeholder-shown) + .float-label,
.float-ta:focus + .float-label,
.float-ta:not(:placeholder-shown) + .float-label {
  transform: translateY(-0.5625rem) scale(0.78);
  color: var(--amber);
}

.submit-btn {
  width: 100%;
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.85;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--steel-600);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

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

.contact-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: rgba(217, 119, 6, 0.1);
}

.contact-icon {
  font-size: 1.125rem;
  line-height: 1;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 1rem;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 35%),
    linear-gradient(160deg, var(--steel-800), var(--steel-900));
}

.map-card:not([data-map-loaded="true"])::before {
  content: "Карта загружается…";
  position: absolute;
  inset: auto auto 1rem 1rem;
  z-index: 1;
  padding: 0.375rem 0.625rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.map-card-wide {
  min-height: clamp(18rem, 40vw, 20rem);
}

.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--steel-900);
  border-top: 0.125rem solid var(--amber);
}

.footer-row1 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--steel-800);
}

#btt {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.875rem;
  height: 2.875rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--amber);
  color: var(--steel-900);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.2s ease;
}

#btt.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#btt:hover {
  background: var(--amber-light);
}

.rbtn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ripple-el {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

.an-wipe {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

.an-wipe.in {
  clip-path: inset(0 0 0 0);
}

.an-l,
.an-r,
.an-u,
.an-sc {
  transition-delay: var(--delay, 0s);
}

.an-l {
  opacity: 0;
  transform: translateX(-2.5rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.an-r {
  opacity: 0;
  transform: translateX(2.5rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.an-u {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.an-sc {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.an-l.in,
.an-r.in,
.an-u.in,
.an-sc.in {
  opacity: 1;
  transform: none;
}

.status-icon {
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.status-icon--spin {
  animation: spin 0.8s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

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

@keyframes ripple {
  from {
    transform: scale(0);
    opacity: 1;
  }

  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(2.5rem);
  }

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 30.0625rem) {
  .product-grid,
  #product-grid.is-filtered {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-row {
    grid-template-columns: 5rem 1fr;
  }
}

@media (min-width: 48.0625rem) {
  .md\:flex-nowrap {
    flex-wrap: nowrap;
  }

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

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .tabs-wrap {
    flex-direction: row;
  }

  .tabs-list {
    display: block;
    width: clamp(14rem, 24vw, 17rem);
    min-width: 14rem;
    border-right: 1px solid var(--steel-200);
    border-bottom: 0;
    overflow: visible;
  }

  .tab-indicator {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 0.1875rem;
    height: 3.25rem;
    border-radius: 0 0.25rem 0.25rem 0;
    background: var(--amber);
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .tab-btn {
    display: block;
    width: 100%;
    padding: 0.875rem 1.25rem;
    border-bottom: 0;
    border-left: 0.1875rem solid transparent;
    white-space: normal;
  }

  .tab-btn.active {
    border-left-color: var(--amber);
    border-bottom-color: transparent;
  }

  .tab-panel {
    padding: 2rem 2.5rem;
  }

  .product-grid,
  #product-grid.is-filtered {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-row1 {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (min-width: 64.0625rem) {
  #product-grid:not(.is-filtered) .pg-1 {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }

  #product-grid:not(.is-filtered) .pg-2 {
    grid-column: 3;
    grid-row: 1;
  }

  #product-grid:not(.is-filtered) .pg-3 {
    grid-column: 3;
    grid-row: 2;
  }

  #product-grid:not(.is-filtered) .pg-4 {
    grid-column: 1;
    grid-row: 3;
  }

  #product-grid:not(.is-filtered) .pg-5 {
    grid-column: 2 / span 2;
    grid-row: 3 / span 2;
  }

  #product-grid:not(.is-filtered) .pg-6 {
    grid-column: 1;
    grid-row: 4;
  }

  #product-grid:not(.is-filtered) .pg-7 {
    grid-column: 1;
    grid-row: 5;
  }

  #product-grid:not(.is-filtered) .pg-8 {
    grid-column: 2;
    grid-row: 5;
  }

  #product-grid:not(.is-filtered) .pg-9 {
    grid-column: 3;
    grid-row: 5;
  }

  #product-grid:not(.is-filtered) .pg-10 {
    grid-column: 1;
    grid-row: 6;
  }

  #product-grid:not(.is-filtered) .pg-11 {
    grid-column: 2;
    grid-row: 6;
  }

  #product-grid:not(.is-filtered) .pg-12 {
    grid-column: 3;
    grid-row: 6;
  }

  .step-row {
    grid-template-columns: 6.25rem 1fr;
  }
}

@media (min-width: 90rem) {
  .tab-panel {
    padding: 2.5rem 3rem;
  }

  .product-grid {
    gap: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }

  .an-wipe,
  .an-l,
  .an-r,
  .an-u,
  .an-sc,
  .pcard,
  .why-tile,
  #btt,
  .status-icon--spin {
    transition: none;
    animation: none;
  }
}
