/* basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #090614;
  --bg-soft: #120a1d;
  --paper: #15101e;
  --border-soft: #302437;
  --text: #e2dbdf;
  --muted: #a092a8;
  --accent: #f3b46b;
  --accent-soft: #f3b46b10;
  --radius-lg: 18px;
  --radius-md: 10px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.55);
  --font-body: system-ui, -apple-system, "Segoe UI", sans-serif;
}

html,
body {
  background: radial-gradient(circle at top, #161022 0, #090614 55%);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100%;
}

body {
  padding: 1.5rem;
  max-width: 1120px;
  margin: 0 auto 3rem auto;
}

/* header */

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #15101f, #0c0712);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.site-title h1 {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.site-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.site-nav a:hover {
  border-color: var(--border-soft);
  background: #1d1428;
  color: var(--text);
}

/* hero */

.hero {
  margin-bottom: 2.5rem;
  padding: 1.4rem 1.6rem 1.6rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #25183a 0, #120a1d 40%, #090614 100%);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.hero-text h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.hero-text p {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--muted);
}

.hero-note {
  margin-top: 0.8rem;
  font-style: italic;
  color: #cbbfd4;
}

/* sections */

.section-title {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d9cce5;
}

/* products */

.products {
  margin-bottom: 2.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.product-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.product-image-frame {
  padding: 0.85rem 0.85rem 0;
}

.product-image-placeholder {
  border-radius: var(--radius-md);
  border: 1px dashed var(--border-soft);
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    -45deg,
    #130c22,
    #130c22 8px,
    #10091b 8px,
    #10091b 16px
  );
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 0.5rem;
}

/* when you have real product images, just drop an <img> inside .product-image-frame
   and remove .product-image-placeholder completely. */

.product-body {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.product-title {
  font-size: 1rem;
}

.product-desc {
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--muted);
}

.product-price {
  margin-top: 0.4rem;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
}

.product-button {
  margin-top: 0.6rem;
  align-self: flex-start;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.product-button:hover {
  background: var(--accent);
  color: #1b101e;
}

/* info blocks */

.info-block {
  margin-bottom: 2rem;
  padding: 1.2rem 1.4rem 1.4rem;
  border-radius: var(--radius-lg);
  background: #110a1d;
  border: 1px dashed var(--border-soft);
}

.info-block p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.info-block p + p {
  margin-top: 0.7rem;
}

.details-list {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 0.7rem;
}

.details-list li {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.details-note {
  font-size: 0.9rem;
  color: #cbbfd4;
}

.details-note a {
  color: #f1c992;
}

/* footer */

.site-footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: left;
}

/* responsive tweaks */

@media (max-width: 640px) {
  body {
    padding: 1.1rem;
  }

  .site-header {
    padding: 0.9rem 1rem;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
