:root {
  color-scheme: dark;
  --ink: #090909;
  --obsidian: #141414;
  --panel: rgba(255, 255, 255, 0.035);
  --line: rgba(214, 170, 66, 0.25);
  --gold: #d6aa42;
  --gold-soft: #f0d997;
  --sage: #588157;
  --sage-soft: #a3b18a;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --hero-image: url("https://images.unsplash.com/photo-1542496658-e33a6d0d50f6?auto=format&fit=crop&w=1800&q=90");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 6%, rgba(88, 129, 87, 0.16), transparent 30rem),
    radial-gradient(circle at 50% -20%, rgba(214, 170, 66, 0.14), transparent 32rem),
    var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

@keyframes sheen {
  0% {
    transform: translateX(-120%) skewX(-12deg);
  }
  100% {
    transform: translateX(180%) skewX(-12deg);
  }
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

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

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

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

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 9, 9, 0.88);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand img {
  height: 52px;
  width: auto;
  max-width: min(240px, 56vw);
  border-radius: 4px;
}

.links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.links a,
.chip {
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  background: transparent;
}

.links a:hover,
.chip:hover {
  color: var(--gold);
  border-color: rgba(214, 170, 66, 0.28);
  background: rgba(214, 170, 66, 0.08);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-link b {
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(9, 9, 9, 0.96), rgba(9, 9, 9, 0.72), rgba(9, 9, 9, 0.28)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(0deg, var(--ink), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  animation: fade-up 0.7s ease both;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero h1 {
  max-width: 780px;
  margin-top: 14px;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.95;
}

.hero p:not(.eyebrow),
.section-head p,
.contact-grid p {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.75;
}

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

.btn {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--sage-soft));
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-130%) skewX(-12deg);
}

.btn:hover::after {
  animation: sheen 0.8s ease;
}

.btn:hover {
  background: linear-gradient(135deg, var(--gold-soft), var(--sage-soft));
  transform: translateY(-1px);
}

.promo-section {
  margin-top: -38px;
  position: relative;
  z-index: 2;
}

.promo-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(214, 170, 66, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(88, 129, 87, 0.2), rgba(214, 170, 66, 0.12)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
  padding: 22px;
  backdrop-filter: blur(18px);
}

.promo-strip h2 {
  margin-top: 6px;
  font-size: clamp(28px, 4vw, 42px);
}

.promo-strip p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 34px;
}

.trust-grid span,
.category-card,
.product-card,
.review-card,
.contact-form,
.filters,
.empty,
.modal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.trust-grid span {
  padding: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding-block: 62px;
}

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

.section-head h2,
.contact-grid h2 {
  margin-top: 8px;
  font-size: clamp(34px, 5vw, 52px);
}

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

.category-card {
  min-height: 160px;
  padding: 20px;
  cursor: pointer;
  transition: 0.22s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 129, 87, 0.58);
}

.category-card h3 {
  margin-top: 14px;
  font-size: 25px;
}

.category-card p {
  color: var(--muted);
  line-height: 1.55;
}

.product-band {
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
}

.filters {
  height: fit-content;
  padding: 16px;
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
}

.filters label,
.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.filters input,
.filters select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #0d0d0d;
  color: white;
  padding: 11px 12px;
  outline: none;
}

.filters input:focus,
.filters select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 170, 66, 0.16);
}

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

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

.product-card {
  overflow: hidden;
  transition: 0.22s ease;
  animation: fade-up 0.55s ease both;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 170, 66, 0.48);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--obsidian);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.05);
}

.tag-row {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  border-radius: 999px;
  padding: 6px 9px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.product-body {
  padding: 16px;
}

.product-body small {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.product-body h3 {
  margin-top: 6px;
  font-size: 24px;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.price strong {
  display: block;
  font-size: 20px;
}

.price del {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

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

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  font-weight: 900;
}

.icon-btn.saved {
  border-color: rgba(214, 170, 66, 0.5);
  color: var(--gold);
}

.detail-btn {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 0 13px;
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.empty {
  padding: 32px;
  text-align: center;
  color: var(--muted);
}

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

.track-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(214, 170, 66, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(88, 129, 87, 0.08)),
    rgba(255, 255, 255, 0.025);
  padding: 24px;
}

.track-card h2 {
  margin-top: 8px;
  font-size: clamp(34px, 5vw, 52px);
}

.track-card p {
  color: var(--muted);
  line-height: 1.65;
}

.track-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.track-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #0d0d0d;
  color: white;
  padding: 11px 12px;
  outline: none;
}

.track-result {
  display: grid;
  gap: 12px;
}

.status-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  padding: 16px;
}

.status-card strong {
  color: white;
}

.status-card p {
  margin: 7px 0 0;
}

.status-pill {
  display: inline-flex;
  margin-top: 12px;
  border: 1px solid rgba(88, 129, 87, 0.45);
  border-radius: 999px;
  background: rgba(88, 129, 87, 0.16);
  color: #d9f7d5;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.review-card {
  padding: 20px;
}

.review-card strong {
  display: block;
}

.stars {
  color: var(--gold-soft);
  letter-spacing: 2px;
  margin-top: 8px;
}

.review-card p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--gold);
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(9, 9, 9, 0.9);
  color: white;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
}

.modal-card {
  width: min(1060px, 100%);
  max-height: calc(100vh - 88px);
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-image {
  min-height: 520px;
  background: #111;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-copy {
  padding: 28px;
}

.modal-copy h2 {
  margin-top: 8px;
  font-size: clamp(32px, 5vw, 48px);
}

.modal-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.specs {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.specs div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  color: var(--muted);
}

.specs strong {
  color: white;
}

.order-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  border: 1px solid rgba(88, 129, 87, 0.36);
  border-radius: 8px;
  background: rgba(88, 129, 87, 0.1);
  padding: 18px;
}

.order-form h3 {
  font-size: 28px;
}

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

.order-grid label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-grid .wide {
  grid-column: 1 / -1;
}

.order-grid input,
.order-grid textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #0d0d0d;
  color: white;
  padding: 11px 12px;
  outline: none;
}

.order-grid textarea {
  min-height: 88px;
  resize: vertical;
}

.order-grid input:focus,
.order-grid textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 170, 66, 0.16);
}

.order-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  color: var(--muted);
}

.order-total strong {
  color: white;
}

.toast-host {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100% - 32px));
}

.toast {
  border: 1px solid rgba(214, 170, 66, 0.35);
  border-radius: 8px;
  background: rgba(10, 12, 10, 0.95);
  color: white;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  padding: 14px;
  animation: toast-in 0.26s ease both;
}

.toast strong {
  display: block;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
  color: var(--muted);
}

.footer img {
  height: 44px;
  width: auto;
}

.footer a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 980px) {
	  .section-head,
	  .contact-grid,
	  .catalog-layout,
	  .modal-card,
	  .promo-strip {
	    grid-template-columns: 1fr;
	  }

  .section-head {
    display: grid;
  }

  .filters {
    position: static;
  }

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

  .modal-image {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .links a {
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 46px;
  }

	  .trust-grid,
	  .category-grid,
	  .product-grid,
	  .reviews-grid,
	  .order-grid {
	    grid-template-columns: 1fr;
	  }

	  .catalog-top,
	  .price-row,
	  .footer-inner,
	  .track-form {
	    align-items: flex-start;
	    flex-direction: column;
	  }

	  .track-form {
	    display: grid;
	    grid-template-columns: 1fr;
	  }
	}
