:root {
  --bg-1: #070707;
  --bg-2: #120808;
  --bg-3: #1f0909;
  --panel: #111111;
  --panel-soft: #171717;
  --text: #f5f5f5;
  --muted: #b6b6b6;
  --accent: #ff2a2a;
  --accent-2: #b10000;
  --line: #322626;
  --radius: 18px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 22% 16%, rgba(255, 30, 30, 0.18), transparent 36%),
    radial-gradient(circle at 80% 4%, rgba(255, 30, 30, 0.14), transparent 32%),
    linear-gradient(145deg, var(--bg-1), var(--bg-2) 55%, var(--bg-3));
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: soft-light;
  opacity: 0.2;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(#ffffff 0.7px, transparent 0.7px);
  background-size: 3px 3px;
}

.hero {
  padding: 56px 20px 26px;
}

.hero-inner {
  max-width: 980px;
  margin: 0 auto;
  color: #f6f2f2;
  animation: rise 500ms ease-out both, pulse-glow 2.2s ease-in-out 500ms 1;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0;
  color: #ff6c6c;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  margin: 0;
  line-height: 1.1;
}

h1 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-shadow: 0 0 24px rgba(255, 40, 40, 0.3);
}

.hero-copy {
  margin-top: 14px;
  max-width: 580px;
  color: #dad3d3;
  font-size: 1.03rem;
  line-height: 1.55;
}

.hero-copy::after {
  content: "";
  display: block;
  width: 180px;
  height: 2px;
  margin-top: 16px;
  background: linear-gradient(to right, rgba(255, 55, 55, 0.85), transparent);
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 20px 56px;
}

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

.product-card {
  background: linear-gradient(160deg, #151515, #0d0d0d);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #352424;
  animation: rise 620ms ease-out both;
  position: relative;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 45, 45, 0.18);
  border-radius: var(--radius);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 30, 30, 0.16),
    transparent,
    rgba(255, 30, 30, 0.22),
    transparent
  );
  animation: spin-glow 6.6s linear infinite;
  opacity: 0.48;
}

.product-card:hover {
  transform: translateY(-5px);
}

.thumb-wrap {
  position: relative;
  height: 220px;
  background: #241515;
}

.thumb-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.64), transparent 48%);
}

.thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 260ms ease;
}

.product-card:hover .thumb {
  transform: scale(1.08);
}

.card-body {
  padding: 16px;
}

.name {
  font-size: 1.42rem;
  color: #fff3f3;
}

.desc {
  color: var(--muted);
  margin: 8px 0 14px;
  line-height: 1.5;
}

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.variant-select {
  width: 100%;
  background: #1a1414;
  color: #f6e9e9;
  border: 1px solid #4d2a2a;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

.qty-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.qty-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.qty-input {
  width: 80px;
  background: #1a1414;
  color: #f6e9e9;
  border: 1px solid #4d2a2a;
  border-radius: 10px;
  padding: 8px;
}

.price {
  font-weight: 700;
  font-size: 1.16rem;
  color: #ff5858;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 0 24px rgba(255, 40, 40, 0.28);
}

.btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.btn.primary {
  background: linear-gradient(135deg, #ff3d3d, #b10000 70%);
  color: #fff6f6;
  border-color: #ff6c6c;
}

.btn.ghost {
  background: #1f1414;
  color: #ffc9c9;
  border-color: #4d2a2a;
}

.btn.tiny {
  padding: 6px 10px;
  font-size: 0.78rem;
}

.cart-panel {
  margin-top: 18px;
  background: linear-gradient(160deg, #151515, #101010);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.cart-count {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.mailin-panel {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #121212;
}

.mailin-panel h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

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

.mailin-input {
  background: #1a1414;
  color: #f6e9e9;
  border: 1px solid #4d2a2a;
  border-radius: 10px;
  padding: 10px;
  font-family: inherit;
}

.mailin-input.wide {
  grid-column: 1 / -1;
}

.promo-row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.promo-input {
  background: #1a1414;
  color: #f6e9e9;
  border: 1px solid #4d2a2a;
  border-radius: 10px;
  padding: 10px;
}

.promo-message {
  min-height: 20px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.discount-row {
  margin-top: 10px;
  margin-bottom: 0;
}

.hidden {
  display: none;
}

.cart-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #121212;
}

.cart-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cart-item-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #4d2a2a;
  background: #1f1414;
  color: #ffc9c9;
  cursor: pointer;
}

.cart-qty-input {
  width: 56px;
  background: #1a1414;
  color: #f6e9e9;
  border: 1px solid #4d2a2a;
  border-radius: 8px;
  padding: 5px;
  text-align: center;
}

.cart-footer {
  margin-top: 12px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.orders {
  margin-top: 18px;
  background: linear-gradient(160deg, #151515, #101010);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.contact-panel {
  margin-top: 18px;
  background: linear-gradient(160deg, #151515, #101010);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin: 0 0 10px;
}

.contact-copy {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-panel address {
  font-style: normal;
  line-height: 1.6;
}

.contact-panel a {
  color: #ff8f8f;
  text-decoration: none;
}

.contact-panel a:hover {
  text-decoration: underline;
}

.thank-you-contact {
  margin-top: 24px;
}

.orders-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.orders-sub {
  margin: 8px 0 12px;
  color: var(--muted);
}

.orders-list {
  display: grid;
  gap: 10px;
}

.order-item {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #121212;
}

.order-main {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
}

.order-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.empty {
  padding: 12px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: #121212;
}

.thankyou-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 20px;
}

.thankyou-wrap {
  background: linear-gradient(160deg, #191919, #0f0f0f);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 620px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.thankyou-copy {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

@keyframes spin-glow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 0 rgba(255, 34, 34, 0);
  }
  45% {
    text-shadow: 0 0 22px rgba(255, 34, 34, 0.28);
  }
  100% {
    text-shadow: 0 0 0 rgba(255, 34, 34, 0);
  }
}

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

.hero-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.hero-brand {
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f5f5f5;
  letter-spacing: -0.01em;
}

.hero-phone {
  font-size: 1rem;
  font-weight: 700;
  color: #ff6c6c;
  text-decoration: none;
  border: 1px solid rgba(255, 42, 42, 0.35);
  border-radius: 999px;
  padding: 6px 16px;
  background: rgba(255, 42, 42, 0.08);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.hero-phone:hover {
  background: rgba(255, 42, 42, 0.16);
  box-shadow: 0 0 18px rgba(255, 42, 42, 0.2);
}

.site-footer {
  border-top: 1px solid #1f1515;
  padding: 32px 20px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f5f5f5;
}

.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  color: #b6b6b6;
  line-height: 1.7;
}

.footer-address a {
  color: #ff8f8f;
  text-decoration: none;
}

.footer-address a:hover {
  text-decoration: underline;
}

.footer-link {
  font-size: 0.88rem;
  color: #b6b6b6;
  text-decoration: none;
}

.footer-link:hover {
  color: #f5f5f5;
  text-decoration: underline;
}

.footer-copy p {
  margin: 0;
  font-size: 0.82rem;
  color: #666;
}

@media (max-width: 820px) {
  .products {
    grid-template-columns: 1fr;
  }

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

  .thumb-wrap {
    height: 240px;
  }

  .hero {
    padding-top: 38px;
  }
}
