:root {
  --bg: #000000;
  --panel: #141414;
  --panel-2: #1a1a1a;
  --text: #f1e5cf;
  --muted: rgba(241, 229, 207, 0.72);
  --line: rgba(255,255,255,0.08);
  --accent: #d9411e;
  --accent-2: #ff6b2b;
  --radius: 24px;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  background: #000 !important;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body {
  line-height: 1.45;
}

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

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

main,
.site-main,
.home-page,
.shop-page,
.product-page {
  background: #000 !important;
}

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

/* =========================
   Header
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--muted);
  font-size: .95rem;
}

.main-nav a:hover {
  color: #fff;
}

/* =========================
   Shared sections
========================= */

.hero,
.section,
.shop-hero {
  padding: 72px 0;
  background: transparent !important;
}

.hero-grid,
.single-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
}

.hero-copy h1,
.shop-hero h1,
.section-head h2,
.single-copy h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: .95;
  margin: 10px 0 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-copy p,
.shop-hero p,
.section-head p,
.product-body p,
.single-copy p,
.footer-inner p {
  color: var(--muted);
  line-height: 1.55;
}

.eyebrow {
  display: inline-block;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: .72rem;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 14px 30px rgba(217,65,30,.25);
}

.btn-secondary,
.btn-tertiary {
  border-color: var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
}

.hero-art {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.hero-art img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.section-dark {
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 840px;
  margin-bottom: 28px;
}

/* =========================
   Category / product grids
========================= */

.category-grid,
.product-grid,
.shop-grid {
  display: grid;
  gap: 20px;
}

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

.product-grid,
.shop-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-card,
.product-card,
.empty-box {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 0;
}

.category-card {
  padding: 24px;
}

.category-card h3 {
  margin: 0 0 10px;
}

.category-card p {
  color: var(--muted);
  margin: 0;
}

.product-thumb {
  aspect-ratio: 1 / .78;
  background: radial-gradient(circle at top left, rgba(255,107,43,.35), transparent 30%), #111;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,.16);
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 20px 20px 24px;
}

.product-category {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-2);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-body h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  line-height: 1.1;
}

.product-body p {
  margin: 0;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.product-status {
  margin: 14px 0;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .84rem;
  background: rgba(255,255,255,.05);
}

.product-status.coming {
  background: rgba(255,107,43,.15);
}

.shop-hero {
  padding-bottom: 24px;
}

.shop-filters {
  padding-bottom: 12px;
}

/* =========================
   Pills
========================= */

.pills,
.category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #161616;
  color: var(--muted);
  white-space: nowrap;
}

.pill.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* =========================
   Single product
========================= */

.single-wrap {
  min-height: 60vh;
}

.single-visual {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
}

.single-visual img {
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
  object-fit: cover;
}

.single-short {
  font-size: 1.05rem;
}

.single-meta {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}

.empty-box {
  padding: 36px;
  text-align: center;
}

/* =========================
   Hidden logo/problem blocks
========================= */

.hero-logo-bg,
.product-hero-logo,
.product-logo-bg,
.logo-watermark,
.product-decor-logo,
.product-logo-box,
.product-brand-box,
.product-side-logo,
.logo-card {
  display: none !important;
}

/* =========================
   Heat dots
========================= */

.heat-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.heat-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.heat-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.08);
}

.heat-dot.is-active {
  background: #d84a1b;
  box-shadow: 0 0 0 3px rgba(216,74,27,0.12);
}

.heat-label {
  color: rgba(243,234,216,0.78);
  font-size: 0.92rem;
}

/* =========================
   Footer
========================= */

.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  background: #000;
  overflow: hidden;
}

.footer-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
}

/* =========================
   Tablet
========================= */

@media (max-width: 980px) {
  .category-grid,
  .product-grid,
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .single-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Mobile
========================= */

@media (max-width: 720px) {
  .container {
    width: calc(100% - 22px);
  }

  .site-header {
    background: #000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .brand {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    gap: 14px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    white-space: nowrap;
    flex: 0 0 auto;
    font-size: 0.92rem;
  }

  .hero,
  .section,
  .shop-hero {
    padding: 48px 0;
  }

  .hero-copy h1,
  .shop-hero h1,
  .section-head h2,
  .single-copy h1 {
    font-size: 2.2rem !important;
    line-height: 0.95;
    margin-bottom: 12px;
  }

  .hero-copy p,
  .shop-hero p,
  .section-head p,
  .product-body p,
  .single-copy p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn,
  .btn.full-mobile,
  .product-body .btn,
  .btn-secondary,
  .btn-tertiary {
    width: 100%;
    justify-content: center;
  }

  .pills,
  .category-pills {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .pills::-webkit-scrollbar,
  .category-pills::-webkit-scrollbar {
    display: none;
  }

  .pill {
    white-space: nowrap;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .category-grid,
  .product-grid,
  .shop-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .product-card,
  .category-card,
  .empty-box {
    border-radius: 20px;
    overflow: hidden;
  }

  .product-thumb {
    aspect-ratio: 4 / 3;
    font-size: 3rem;
  }

  .product-body {
    padding: 18px 18px 22px;
  }

  .product-body h3 {
    font-size: 1.15rem;
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .product-meta {
    margin-top: 14px;
    margin-bottom: 10px;
    padding-top: 14px;
  }

  .product-body .btn {
    margin-top: 16px !important;
    min-height: 48px;
  }

  .single-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .single-visual {
    padding: 18px;
    border-radius: 22px;
  }

  .single-visual img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
  }

  .single-meta {
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 20px;
  }

  .site-footer {
    background: #000;
  }

  .footer-inner {
    min-height: auto;
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 18px);
  }

  .hero-copy h1,
  .shop-hero h1,
  .section-head h2,
  .single-copy h1 {
    font-size: 2rem !important;
  }

  .btn {
    min-height: 46px;
    padding: 12px 16px;
    font-size: 0.94rem;
  }

  .product-body {
    padding: 16px;
  }

  .pill {
    min-height: 38px;
    font-size: 0.84rem;
  }
}