:root {
  --bg: #070707;
  --panel: #0c0c0d;
  --panel-2: #111214;
  --line: #1f2226;
  --text: #f5f5f5;
  --muted: #9a9fa8;
  --orange: #ff6a00;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at 70% 18%, rgba(255, 106, 0, 0.14), transparent 34%), #030303;
  color: var(--text);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes pulseStroke {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.95;
  }
}

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

.container {
  width: min(1480px, 94vw);
  margin: 0 auto;
}

.top-info {
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.top-info .container {
  min-height: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 1rem;
}

.top-info p {
  margin: 0;
  text-align: center;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.main-header {
  background: #060607;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}

.nav-row {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  width: clamp(230px, 18vw, 330px);
  height: auto;
}

.main-nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2.6rem);
}

.main-nav a {
  display: inline-flex;
  min-height: 92px;
  align-items: center;
  border-bottom: 4px solid transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.35rem, 1.4vw, 1.65rem);
  letter-spacing: 0.03em;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.nav-icons {
  display: flex;
  gap: 0.5rem;
}

.nav-icons button {
  width: 46px;
  height: 46px;
  border: 1px solid #262b31;
  background: transparent;
  color: #f3f3f4;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  transition: border-color 150ms ease, transform 120ms ease;
  display: grid;
  place-items: center;
}

.nav-icons button:hover {
  border-color: var(--orange);
  transform: translateY(-1px);
}

.nav-icons span {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #0f0f0f;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.nav-icons button.flash {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange) inset;
}

.nav-icons button svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}

.panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 3, 0.66);
  backdrop-filter: blur(4px);
  z-index: 40;
}

.search-dock {
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid transparent;
  background: #07090c;
  transition: max-height 240ms ease, border-color 240ms ease;
}

.search-dock.open {
  max-height: 360px;
  border-bottom-color: #20242a;
}

.search-dock-inner {
  padding: 0;
}

.search-dock-field {
  min-height: 68px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 0.8rem;
}

.search-dock-field i {
  color: var(--orange);
}

.search-dock-field svg {
  width: 20px;
  height: 20px;
}

.search-dock-field input {
  min-height: 68px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f6f8fa;
  font-size: 1.12rem;
}

.search-dropdown {
  border-top: 1px solid #1f252c;
  background: #0b0e12;
  padding: 0.7rem 0 1rem;
}

.search-state {
  margin: 0.2rem 0 0.7rem;
  color: #a8afb9;
}

.search-results {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.search-results li {
  border: 1px solid #252b33;
  background: #0f1318;
}

.search-results a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 0 0.9rem;
}

.search-results a:hover {
  background: rgba(255, 106, 0, 0.08);
}

.search-results small {
  color: #b6bdc7;
}

.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: linear-gradient(180deg, #0c0e12, #090b0e);
  border-left: 1px solid #262a31;
  padding: 1.4rem;
  z-index: 50;
  transform: translateX(102%);
  transition: transform 220ms ease;
  display: grid;
  align-content: start;
  gap: 1rem;
}

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

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-head h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.panel-close {
  width: 42px;
  height: 42px;
  border: 1px solid #343a43;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.panel-close svg {
  width: 18px;
  height: 18px;
}

.panel-copy {
  margin: 0;
  color: #c1c7d0;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0.4rem 0 0.8rem;
}

.auth-tab {
  min-height: 42px;
  border: 1px solid #323a44;
  background: #121820;
  color: #d8dee7;
  cursor: pointer;
}

.auth-tab.active {
  border-color: var(--orange);
  color: var(--orange);
}

.orders-box {
  border-top: 1px solid #2b323b;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
}

.orders-box h4 {
  margin: 0 0 0.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
}

.order-line {
  border: 1px solid #2b323b;
  background: #10161d;
  padding: 0.55rem;
  margin-bottom: 0.45rem;
}

.panel-field {
  display: grid;
  gap: 0.45rem;
}

.panel-field span {
  color: #cfd3da;
  font-size: 0.9rem;
}

.panel-field input {
  min-height: 48px;
  background: #0f1318;
  border: 1px solid #2d323a;
  color: #f3f5f8;
  padding: 0 0.9rem;
  font-size: 1rem;
}

.panel-primary {
  min-height: 50px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #101010;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.panel-result {
  min-height: 110px;
  border: 1px dashed #2f343c;
  color: #b1b6bf;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.8rem;
}

.hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(5, 8, 12, 0.98), rgba(5, 8, 12, 0.92));
}

.page-view {
  display: none;
}

.page-view.is-active {
  display: block;
}

.page-simple {
  padding: 2rem 0 3rem;
}

.page-simple h2 {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  color: var(--orange);
}

.page-simple p {
  margin: 0;
  color: #c7cdd6;
  max-width: 70ch;
}

.mini-footer {
  border-top: 1px solid var(--line);
  background: #06080a;
}

.mini-footer-inner {
  min-height: 58px;
  padding: 0.8rem 0 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1.1rem;
}

.mini-link {
  color: #c5cbd4;
  font-size: 0.95rem;
}

.mini-link.active {
  color: var(--orange);
}

.mini-contact p {
  margin: 0.1rem 0;
  color: #aeb6c2;
  font-size: 0.9rem;
  text-align: right;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.7rem;
}

.simple-grid article {
  border: 1px solid #28303a;
  background: #0f141a;
  min-height: 72px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.sale-highlight {
  border: 1px solid rgba(255, 106, 0, 0.35);
  background: linear-gradient(115deg, rgba(255, 106, 0, 0.12), rgba(12, 15, 20, 0.85));
  padding: 1rem;
  max-width: 460px;
}

.sale-highlight strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-grid article {
  border: 1px solid #2a323d;
  background: #0f141a;
  padding: 1rem;
}

.contact-grid h3 {
  margin: 0 0 0.6rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
}

.hero-inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
}

.hero-copy {
  padding: 2rem 0;
  animation: fadeUp 700ms ease both;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
}

.hero-copy h1 span {
  color: var(--orange);
}

.hero-copy p {
  max-width: 40ch;
  font-size: 1.55rem;
  color: #d6d8dd;
  line-height: 1.45;
  margin: 1.6rem 0 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-actions a {
  min-height: 58px;
  padding: 0 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #343841;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.hero-actions a:hover {
  transform: translateY(-2px);
}

.hero-actions a:active {
  transform: translateY(0);
}

.cta-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #131313;
}

.cta-secondary {
  background: transparent;
}

.hero-visual {
  height: 100%;
  background: transparent;
  border-left: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero-spotlight {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  width: min(440px, 58%);
  border: 1px solid #2b323b;
  background: rgba(7, 10, 14, 0.88);
  backdrop-filter: blur(6px);
  z-index: 2;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0.8rem;
  padding: 0.7rem;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero-spotlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 1px solid #2a313a;
  background: #0a0d12;
  transform: scale(1.28);
  transform-origin: center;
}

.hero-spotlight-copy p {
  margin: 0;
  color: #9fa9b7;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-spotlight-copy h3 {
  margin: 0.32rem 0 0.28rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  line-height: 0.95;
}

.hero-spotlight-copy strong {
  color: var(--orange);
  font-size: 1.15rem;
}

.hero-spotlight.slide-out {
  opacity: 0;
  transform: translateX(20px);
}

.hero-spotlight.slide-in {
  opacity: 1;
  transform: translateX(0);
}

.hero-visual::after {
  content: none;
}

.hero-visual::before {
  content: none;
}

.sp-mark-image {
  position: static;
  transform: none;
  width: min(96%, 980px);
  height: auto;
  opacity: 1;
  filter: none;
  animation: none;
  z-index: 1;
}

.feature-strip {
  background: #08090a;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.best-sellers {
  border-bottom: 1px solid var(--line);
  background: #06080a;
  padding: 1.4rem 0 2rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.section-head h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--orange);
  letter-spacing: 0.03em;
}

.section-head a {
  color: #c8cfd8;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
}

.best-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.best-item {
  border: 1px solid #252d38;
  background: #0e1319;
  padding: 0.65rem;
}

.best-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid #2b333d;
}

.best-item h3 {
  margin: 0.62rem 0 0.24rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
}

.best-item p {
  margin: 0;
  color: #c3cad4;
  font-weight: 700;
}

.old-price {
  color: #98a1ac;
  text-decoration: line-through;
}

.new-price {
  color: #ff2a2a;
  font-weight: 800;
}

@keyframes marqueeSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.feature-marquee {
  width: 100%;
  overflow: hidden;
}

.feature-track {
  width: max-content;
  display: flex;
  gap: 2.5rem;
  padding: 1.1rem 0;
  animation: marqueeSlide 24s linear infinite;
}

.feature-item {
  min-width: 330px;
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 0.9rem;
  align-items: center;
}

.feature-item i {
  color: var(--orange);
}

.feature-item svg {
  width: 24px;
  height: 24px;
}

.feature-item strong {
  display: block;
  grid-column: 2;
  line-height: 1;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.03em;
}

.feature-item span {
  grid-column: 2;
  font-size: 1.08rem;
  color: var(--muted);
  margin-top: 0.22rem;
}

.content {
  padding: 1.2rem 0 3rem;
}

.content-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.4rem;
}

.category-panel {
  background: linear-gradient(180deg, #0f1012, #0a0b0c);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.category-panel h2,
.products-placeholder h2 {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  color: var(--orange);
  letter-spacing: 0.03em;
}

.category-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-panel li {
  border-top: 1px solid #1b1f24;
}

.category-panel li:last-child {
  border-bottom: 1px solid #1b1f24;
}

.category-panel a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #edf0f4;
  font-size: 1.08rem;
  transition: color 140ms ease, padding-left 140ms ease;
}

.category-panel a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.category-panel a.active {
  color: var(--orange);
  padding-left: 6px;
}

.category-panel a::after {
  content: ">";
  color: #8f97a1;
}

.products-placeholder {
  background: linear-gradient(180deg, #0c0e11, #090a0c);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.placeholder-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.placeholder-head a {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.placeholder-box {
  min-height: 280px;
  border: 1px dashed #2b3038;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.06), rgba(15, 17, 20, 0.24));
  position: relative;
  overflow: hidden;
}

.placeholder-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 106, 0, 0.12) 50%, transparent 80%);
  transform: translateX(-120%);
  animation: sweep 5.8s ease-in-out infinite;
}

.placeholder-box p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  margin: 0;
}

.placeholder-box small {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-card {
  border: 1px solid #232a33;
  background: #0f1318;
  padding: 0.8rem;
  transition: transform 150ms ease, border-color 150ms ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: #424b57;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #090b0e;
}

.product-card h3 {
  margin: 0.75rem 0 0.25rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.02em;
}

.product-card p {
  margin: 0;
  color: #c8ced7;
  font-weight: 600;
}

.sale-card {
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 106, 0, 0.22) inset;
}

.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 3, 5, 0.74);
  backdrop-filter: blur(4px);
  z-index: 70;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: min(980px, 94vw);
  background: linear-gradient(165deg, #0d1116, #090d12);
  border: 1px solid #323a45;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  z-index: 80;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1rem;
  padding: 1rem;
  align-items: start;
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.product-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: auto;
}

.product-modal-close {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  width: 40px;
  height: 40px;
  border: 1px solid #39414b;
  background: #10151b;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.product-modal-close svg {
  width: 18px;
  height: 18px;
}

.product-modal-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid #303845;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.product-modal-content {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 0.3rem 0.4rem 0.2rem;
}

.product-modal-tag {
  margin: 0;
  color: #ffc18e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  background: rgba(255, 106, 0, 0.14);
  border: 1px solid rgba(255, 106, 0, 0.3);
  width: fit-content;
  padding: 0.26rem 0.55rem;
}

.product-modal-content h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.4rem;
  line-height: 0.95;
}

.product-modal-price {
  margin: 0;
  color: #ff7a1a;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.product-modal-description {
  margin: 0.25rem 0 0.55rem;
  color: #c8cfda;
  line-height: 1.45;
}

.price-box {
  border: 1px solid rgba(255, 106, 0, 0.28);
  background: linear-gradient(120deg, rgba(255, 106, 0, 0.14), rgba(15, 20, 27, 0.86));
  padding: 0.55rem 0.7rem;
}

.price-box small {
  display: block;
  margin-top: 0.3rem;
  color: #c6ccd5;
  font-size: 0.82rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #2c3540;
  background: #121820;
  color: #c6ccd6;
  font-size: 0.84rem;
  padding: 0.32rem 0.52rem;
}

.trust-row svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

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

.product-modal-similar {
  grid-column: 1 / -1;
  border-top: 1px solid #252d37;
  padding-top: 0.9rem;
}

.product-modal-similar h4 {
  margin: 0 0 0.55rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #d6dbe2;
}

.similar-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.6rem;
}

.similar-item {
  border: 1px solid #27303a;
  background: #10161d;
  padding: 0.45rem;
  cursor: pointer;
  transition: border-color 140ms ease, transform 140ms ease;
}

.similar-item:hover {
  border-color: #495566;
  transform: translateY(-2px);
}

.similar-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border: 1px solid #2b333d;
}

.similar-item strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.similar-item span {
  display: block;
  margin-top: 0.18rem;
  color: #bcc4cf;
  font-size: 0.88rem;
}

.panel-secondary {
  min-height: 50px;
  border: 1px solid #3d464f;
  background: linear-gradient(180deg, #1a212a, #141a22);
  color: #f4f7fb;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.panel-secondary:hover {
  transform: translateY(-2px);
  border-color: #5b6776;
}

.panel-primary {
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.panel-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.3);
}

.cart-items {
  display: grid;
  gap: 0.6rem;
  max-height: 58vh;
  overflow: auto;
}

.cart-item {
  border: 1px solid #2a313a;
  background: #10161d;
  padding: 0.7rem;
}

.cart-item h4 {
  margin: 0;
  font-size: 1rem;
}

.cart-item p {
  margin: 0.2rem 0 0;
  color: #c1c8d2;
}

.cart-summary {
  border-top: 1px solid #2a313a;
  padding-top: 0.7rem;
}

.cart-summary p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .feature-track {
    animation: none !important;
  }
}

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

@media (max-width: 980px) {
  .top-info .container,
  .content-grid,
  .hero-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 360px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-item {
    min-width: 280px;
  }

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

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

  .hero-spotlight {
    width: min(520px, calc(100% - 2rem));
    grid-template-columns: 108px 1fr;
  }
}

@media (max-width: 640px) {
  .top-info p {
    font-size: 0.82rem;
  }

  .hero-copy p {
    font-size: 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

  .product-modal {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

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

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

  .mini-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mini-contact p {
    text-align: left;
  }
}
