* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  opacity: .04;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, white 1px, transparent 1px);
  background-size: 40px 40px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 26px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.logo {
  font-family: 'Cinzel', serif;
  letter-spacing: 6px;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: 3px;
}

.nav-links a,
.nav-button {
  color: white;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

.hero {
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 60px;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 5rem;
  letter-spacing: 12px;
  font-weight: 700;
}

.hero h2 {
  font-size: .85rem;
  letter-spacing: 8px;
  margin-top: 16px;
  color: #aaa;
  font-weight: 400;
}

.section {
  padding: 0 8% 120px;
}

.section-minimal {
  padding-top: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
}

.product-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
}

.product-card h4 {
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 8px;
}

.product-card p {
  color: #bbb;
  margin-bottom: 16px;
  font-size: .95rem;
}

.product-card button,
.checkout-btn {
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.checkout-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.coordinates {
  text-align: center;
  padding: 140px 10% 120px;
}

.coordinates h2 {
  font-family: 'Cinzel', serif;
  font-size: 4rem;
  letter-spacing: 10px;
}

.coordinates p {
  margin-top: 18px;
  color: #999;
  letter-spacing: 4px;
  font-size: .8rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 42px 20px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: #000;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  letter-spacing: 6px;
  font-size: 0.85rem;
  color: #f2f2f2;
}

.footer-location {
  font-size: 0.68rem;
  letter-spacing: 4px;
  color: #9a9a9a;
  text-transform: uppercase;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: #0b0b0b;
  border-left: 1px solid rgba(255,255,255,.12);
  padding: 24px;
  z-index: 200;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow: auto;
}

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

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

.cart-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 16px;
}

.cart-item-swatch {
  width: 80px;
  height: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
}

.cart-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.cart-item p {
  color: #bbb;
  margin-bottom: 10px;
}

.cart-item input {
  width: 70px;
  padding: 8px;
  margin-top: 8px;
}

.remove-btn {
  margin-top: 10px;
  background: none;
  border: none;
  color: #ddd;
  cursor: pointer;
  text-decoration: underline;
}

.cart-summary {
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
}

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

@media (max-width: 900px) {
  .hero h1 {
    font-size: 3.5rem;
  }

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

  nav {
    padding: 20px;
  }

  .nav-links {
    gap: 15px;
    font-size: .65rem;
  }

  .coordinates h2 {
    font-size: 2.6rem;
  }
}
