:root {
  --black: #111110;
  --cream: #f4efe8;
  --cream-2: #eae3d8;
  --warm: #c9a876;
  --text: #1c1b19;
  --muted: #6f6a62;
  --white: #ffffff;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

em { font-style: italic; color: var(--warm); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--black);
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}
.btn-primary:hover { background: transparent; color: var(--black); }

.btn-add {
  background: transparent;
  color: var(--black);
  padding: 10px 22px;
  font-size: 12px;
}
.btn-add:hover { background: var(--black); color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 232, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(17,17,16,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo-img {
  height: 160px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.03em;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--black);
  transition: width 0.25s ease;
}
.nav-link:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; }

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  padding: 8px;
}
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--black);
}

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 78%; max-width: 340px;
  height: 100%;
  background: var(--black);
  color: var(--white);
  z-index: 200;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: right 0.3s ease;
}
.mobile-menu.open { right: 0; }
.mobile-close {
  align-self: flex-end;
  background: none; border: none; color: var(--white);
  font-size: 20px; cursor: pointer;
}
.mobile-nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
}

/* ===== HERO ===== */
.hero { padding: 72px 0 96px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.hero-copy h1 {
  font-size: 56px;
  margin-bottom: 22px;
}
.hero-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-2);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ===== SHOP ===== */
.shop { padding: 40px 0 100px; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.section-head h2 { font-size: 40px; margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 15px; }

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

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(17,17,16,0.08);
}

.product-image {
  aspect-ratio: 1/1;
  background: var(--cream-2);
  overflow: hidden;
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }

.product-info { padding: 20px 20px 24px; }
.product-info h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.product-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
  min-height: 40px;
}
.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
}

/* ===== ABOUT ===== */
.about { padding: 40px 0 110px; }
.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
}
.about-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-2);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { font-size: 34px; margin-bottom: 20px; }
.about-copy p { color: var(--muted); line-height: 1.8; font-size: 15px; max-width: 460px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { height: 22px; }
.footer-copy { font-size: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner, .about-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-copy h1 { font-size: 38px; }
  .section-head h2 { font-size: 30px; }
  .footer-inner { flex-direction: column; gap: 14px; text-align: center; }
}

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