:root {
  --black: #090807;
  --cream: #fbf4e6;
  --gold: #e2c89b;
  --red: #de8a8a;
  --gray: #d3c5b0;
  --white: #ffffff;
  --bg: #120f0a;
  --card: #221c14;
  --accent: #f1ddbd;
  --accent-2: #e2c89b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  color: var(--cream);
  background: radial-gradient(circle at top left, #3a3023 0%, #120f0a 55%, #080705 100%);
  min-height: 100vh;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(26, 21, 15, 0.9);
  z-index: 10;
}

.brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--black);
  display: grid;
  place-items: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
}

.brand-tag {
  font-size: 12px;
  color: var(--gray);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 600;
}

.cart-btn {
  border: 1px solid rgba(243, 234, 215, 0.25);
  background: transparent;
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: var(--black);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 32px;
  padding: 72px 48px 32px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 6vw, 72px);
  margin: 16px 0;
}

.hero-content p {
  font-size: 18px;
  color: var(--gray);
  max-width: 580px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(241, 221, 189, 0.25);
  border: 1px solid rgba(241, 221, 189, 0.75);
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-guarantee {
  color: var(--gray);
  font-size: 14px;
}

.hero-card {
  background: linear-gradient(180deg, #241e15 0%, #17130d 100%);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(251, 244, 230, 0.18);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 32px;
}

.drop-timer {
  color: var(--accent);
}

.hero-price {
  font-size: 28px;
  font-weight: 700;
}

.hero-sub {
  color: var(--gray);
  margin-top: 12px;
}

.strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 48px;
  background: rgba(251, 244, 230, 0.08);
  border-top: 1px solid rgba(251, 244, 230, 0.2);
  border-bottom: 1px solid rgba(251, 244, 230, 0.2);
  justify-content: space-around;
}

.strip-item {
  font-weight: 600;
  color: var(--accent);
}

.section-head {
  padding: 48px 48px 0;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--gray);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  padding: 24px 48px 72px;
}

.product-card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(251, 244, 230, 0.2);
  display: flex;
  flex-direction: column;
}

.product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #1a150f;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-title {
  font-weight: 700;
  font-size: 18px;
}

.product-size {
  color: var(--gray);
  font-size: 14px;
}

.product-desc {
  color: var(--gray);
  font-size: 14px;
  min-height: 52px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
}

.new-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.save-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(217, 92, 92, 0.2);
  color: #f08a8a;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--black);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(251, 244, 230, 0.5);
  color: var(--cream);
}

.btn.full {
  width: 100%;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 0 48px 72px;
}

.about-card {
  background: #211a12;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(251, 244, 230, 0.2);
}

.about-card.highlight {
  background: linear-gradient(135deg, rgba(241, 221, 189, 0.25), rgba(226, 200, 155, 0.22));
}

.about-card ul {
  padding-left: 18px;
}

.about-card li {
  margin: 12px 0;
  color: var(--gray);
}

.stat-row {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.stat {
  font-size: 28px;
  font-weight: 700;
}

.stat-label {
  color: var(--gray);
  font-size: 12px;
}

.cta {
  margin: 0 48px 72px;
  padding: 32px;
  background: #211a12;
  border-radius: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(251, 244, 230, 0.2);
}

.footer {
  padding: 28px 48px 48px;
  display: flex;
  justify-content: space-between;
  color: var(--gray);
  font-size: 14px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100vh;
  background: #1c160f;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: right 0.3s ease;
  z-index: 20;
  border-left: 1px solid rgba(251, 244, 230, 0.22);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-btn {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
}

.cart-item img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
}

.cart-item-title {
  font-weight: 600;
}

.cart-item-size {
  font-size: 12px;
  color: var(--gray);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.cart-item-actions button {
  background: transparent;
  border: 1px solid rgba(251, 244, 230, 0.4);
  color: var(--cream);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
}

.cart-summary {
  border-top: 1px solid rgba(251, 244, 230, 0.22);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-line,
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.cart-total {
  font-size: 20px;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 15;
}

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

.paypal-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 12px;
}

.paypal-note {
  font-size: 12px;
  color: var(--gray);
}

.mono {
  font-family: "Source Code Pro", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .section-head,
  .product-grid,
  .about,
  .cta,
  .footer,
  .strip,
  .hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cart-drawer {
    width: 100%;
  }
}
