
:root {
  --bg: #080808;
  --bg-soft: #101010;
  --panel: #141414;
  --panel-2: #1a1a1a;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --line: rgba(255,255,255,.08);
  --red: #ff2b16;
  --orange: #ff7a00;
  --yellow: #ffb000;
  --shadow: 0 22px 60px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(circle at 15% 5%, rgba(255,55,0,.12), transparent 28rem),
    radial-gradient(circle at 90% 15%, rgba(255,140,0,.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

button, input { font: inherit; }

button { cursor: pointer; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .035;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.topbar {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  height: 88px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(8,8,8,.72);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 0 28px rgba(255,80,0,.28);
}

.brand-text {
  font-family: "Oswald", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.brand-text span,
.hero h1 span { color: var(--orange); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #bbb;
  font-size: .95rem;
}

.nav a:hover { color: white; }

.cart-button {
  border: 1px solid rgba(255,90,0,.35);
  background: rgba(255,80,0,.08);
  color: white;
  border-radius: 12px;
  padding: 11px 14px 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-count {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--orange));
  font-size: .78rem;
  font-weight: 700;
}

main { overflow: hidden; }

.hero {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 680px;
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 70px;
  position: relative;
}

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

.hero-glow-one {
  width: 340px;
  height: 340px;
  left: -180px;
  top: 90px;
  background: rgba(255,40,0,.18);
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  right: 40px;
  bottom: 20px;
  background: rgba(255,123,0,.12);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: clamp(4rem, 10vw, 8.4rem);
  line-height: .95;
  letter-spacing: -.03em;
  text-shadow: 0 0 50px rgba(255,65,0,.12);
}

.hero-copy {
  max-width: 690px;
  color: #aaa;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 28px 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-btn,
.secondary-btn {
  border-radius: 12px;
  padding: 14px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 12px 35px rgba(255,70,0,.22);
}

.secondary-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.primary-btn:hover,
.secondary-btn:hover { transform: translateY(-2px); }

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-badges span {
  color: #888;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: .77rem;
}

.hero-card {
  border: 1px solid rgba(255,96,0,.18);
  background: linear-gradient(180deg, rgba(255,80,0,.055), rgba(255,255,255,.018));
  min-height: 455px;
  border-radius: 26px;
  padding: 18px;
  position: relative;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-card-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: rgba(0,0,0,.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.hero-product-art {
  height: 350px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255,115,0,.16), transparent 40%),
    linear-gradient(145deg, #121212, #090909);
}

.mock-box {
  width: 130px;
  height: 190px;
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1d1d1d, #090909);
  border: 2px solid #ff4b1f;
  box-shadow: 0 0 50px rgba(255,70,0,.22);
  transform: rotate(-5deg);
}

.spark {
  position: absolute;
  width: 4px;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(var(--yellow), transparent);
  box-shadow: 0 0 16px var(--orange);
}

.spark-a { top: 70px; right: 90px; transform: rotate(45deg); }
.spark-b { bottom: 65px; left: 85px; transform: rotate(-35deg); }
.spark-c { top: 130px; left: 60px; transform: rotate(20deg); height: 30px; }

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px 4px;
}

.hero-card-footer div { display: grid; gap: 6px; }
.hero-card-footer span { color: #888; font-size: .83rem; }

.price-tag {
  color: white !important;
  font-size: 1rem !important;
  font-weight: 800;
}

.products-section {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

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

.section-heading h2,
.contact-section h2,
.cart-header h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin: 0;
  letter-spacing: -.02em;
}

.section-heading > p {
  max-width: 560px;
  color: #858585;
  line-height: 1.6;
  margin: 0;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.search-wrap { flex: 1; max-width: 430px; }

.search-wrap input {
  width: 100%;
  padding: 14px 16px;
  color: white;
  background: #111;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}

.search-wrap input:focus { border-color: rgba(255,91,0,.45); }

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

.filter {
  border: 1px solid var(--line);
  color: #aaa;
  background: #101010;
  border-radius: 999px;
  padding: 9px 12px;
}

.filter.active,
.filter:hover {
  color: white;
  border-color: rgba(255,91,0,.35);
  background: rgba(255,91,0,.08);
}

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

.product-card {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,90,0,.25);
}

.product-image {
  aspect-ratio: 1 / .82;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 70%, rgba(255,92,0,.12), transparent 42%),
    #0e0e0e;
  position: relative;
  overflow: hidden;
}

.product-image::before,
.product-image::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 52px;
  background: linear-gradient(var(--orange), transparent);
  box-shadow: 0 0 18px rgba(255,100,0,.8);
}

.product-image::before { left: 24%; top: 17%; transform: rotate(-38deg); }
.product-image::after { right: 20%; bottom: 12%; transform: rotate(40deg); }

.placeholder-box {
  width: 74px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,90,0,.45);
  background: linear-gradient(150deg, #242424, #0e0e0e);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: 0 0 35px rgba(255,75,0,.13);
}

.product-body { padding: 16px; }

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.category {
  color: var(--orange);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.product-id { color: #666; font-size: .72rem; }

.product-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.product-description {
  color: #777;
  font-size: .82rem;
  line-height: 1.5;
  min-height: 40px;
  margin: 8px 0 14px;
}


.bulk-discount {
  margin: 0 0 14px;
  padding: 10px 11px;
  border-radius: 10px;
  border: 1px solid rgba(255, 122, 0, .22);
  background: rgba(255, 90, 0, .055);
  display: grid;
  gap: 4px;
}

.bulk-discount strong {
  color: var(--orange);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.bulk-discount span {
  color: #888;
  font-size: .76rem;
  line-height: 1.4;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-price { font-weight: 800; }

.add-btn {
  border: 0;
  border-radius: 10px;
  padding: 9px 11px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  font-weight: 800;
  font-size: .8rem;
}

.info-section {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  min-height: 230px;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #101010;
}

.info-card.accent {
  background: linear-gradient(145deg, rgba(255,60,0,.11), #101010);
  border-color: rgba(255,80,0,.25);
}

.info-number {
  color: var(--orange);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: .85rem;
}

.info-card h3 {
  margin: 52px 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
}

.info-card p {
  margin: 0;
  color: #888;
  line-height: 1.65;
}

.contact-section {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-section p:last-child {
  color: #888;
  line-height: 1.6;
}

footer {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 55px;
  color: #666;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .82rem;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(440px, 100%);
  background: #0c0c0c;
  border-left: 1px solid var(--line);
  z-index: 60;
  transform: translateX(100%);
  transition: transform .26s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

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

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(4px);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.cart-header {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #151515;
  color: white;
  font-size: 1.5rem;
}

.cart-items {
  overflow: auto;
  padding: 16px 20px;
}

.empty-cart {
  color: #777;
  line-height: 1.6;
  padding: 26px 4px;
}

.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item-thumb {
  width: 56px;
  height: 66px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 800;
  border: 1px solid rgba(255,90,0,.22);
  background: #151515;
}

.cart-item-title {
  display: grid;
  gap: 4px;
}

.cart-item-title strong { font-size: .87rem; }
.cart-item-title span { color: #777; font-size: .76rem; }

.qty-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}

.qty-controls button {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: 1px solid var(--line);
  background: #151515;
  color: white;
}

.remove {
  border: 0 !important;
  background: transparent !important;
  color: #777 !important;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--line);
  background: #0a0a0a;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.checkout-btn {
  width: 100%;
  border: 0;
  padding: 13px 15px;
  border-radius: 11px;
  background: #262626;
  color: #777;
  font-weight: 800;
}

.cart-footer small {
  color: #616161;
  display: block;
  margin-top: 10px;
  line-height: 1.45;
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; gap: 35px; }
  .hero-card { max-width: 560px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .toolbar { align-items: flex-start; flex-direction: column; }
  .search-wrap { width: 100%; max-width: none; }
}

@media (max-width: 780px) {
  .topbar { width: calc(100% - 24px); height: 72px; }
  .nav { display: none; }

  .hero,
  .products-section,
  .info-section,
  .contact-section,
  footer {
    width: calc(100% - 24px);
  }

  .hero { padding-top: 60px; min-height: auto; }
  .hero-card { min-height: 390px; }
  .hero-product-art { height: 290px; }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 520px) {
  .brand-text { display: none; }
  .cart-button { font-size: .86rem; }
  .hero h1 { font-size: 4.2rem; }
  .hero-copy { font-size: .95rem; }
  .hero-card { transform: none; }
  .product-grid { grid-template-columns: 1fr; }
  .filters { overflow-x: auto; flex-wrap: nowrap; width: 100%; padding-bottom: 4px; }
  .filter { white-space: nowrap; }
  .contact-section, footer { align-items: flex-start; flex-direction: column; }
}


.real-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-thumb {
  overflow: hidden;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
