:root {
  --bg-primary: #F9F6F0;
  --bg-card: #FFFFFF;
  --text-dark: #1C1917;
  --text-muted: #78716C;
  --accent-terracotta: #B45309;
  --accent-sand: #E7E5E4;
  --border-light: #E7E0D8;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.6;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--text-dark);
  color: #F5F5F4;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Navbar */
.navbar {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}
.brand-logo span { color: var(--accent-terracotta); }
.nav-links a {
  margin: 0 16px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-dark); }

.cart-btn {
  background: transparent;
  border: 1px solid var(--text-dark);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.85rem;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-badge {
  background: var(--accent-terracotta);
  color: white;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 0.75rem;
}

/* Hero Section */
.hero {
  padding: 80px 24px;
  text-align: center;
  background-color: #F3EEE7;
  border-bottom: 1px solid var(--border-light);
}
.hero-content { max-width: 680px; margin: 0 auto; }
.hero-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.primary-btn {
  display: inline-block;
  background: var(--text-dark);
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 40px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.primary-btn:hover { opacity: 0.88; }

/* Products Section */
.collection-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-image-box {
  position: relative;
  width: 100%;
  height: 280px;
  background: #EFECE6;
}
.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg-card);
  padding: 4px 10px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
}
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 6px;
  font-weight: 600;
}
.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price { font-weight: 600; font-size: 1rem; }
.add-to-cart-btn {
  background: transparent;
  border: 1px solid var(--text-dark);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}
.add-to-cart-btn:hover {
  background: var(--text-dark);
  color: white;
}

/* Cart Slide-out Drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 100;
}
.cart-drawer {
  position: fixed;
  top: 0; right: -400px;
  width: 100%; max-width: 380px; height: 100%;
  background: white;
  z-index: 101;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.cart-drawer.open { right: 0; }
.cart-overlay.open { display: block; }

.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-cart-btn {
  background: none; border: none; font-size: 1.8rem; cursor: pointer;
}
.cart-items-container {
  padding: 20px; flex-grow: 1; overflow-y: auto;
}
.empty-cart-msg {
  color: var(--text-muted); font-size: 0.9rem; text-align: center; margin-top: 40px;
}
.cart-item {
  display: flex; justify-content: space-between; margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light); padding-bottom: 12px;
}
.cart-item-info h4 { font-size: 0.9rem; font-weight: 600; }
.cart-item-info span { font-size: 0.8rem; color: var(--text-muted); }

.cart-drawer-footer {
  padding: 20px; border-top: 1px solid var(--border-light); background: #FAF9F6;
}
.subtotal-row {
  display: flex; justify-content: space-between; font-weight: 600; font-size: 1.05rem; margin-bottom: 6px;
}
.shipping-note { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 16px; }
.checkout-btn {
  width: 100%; background: var(--accent-terracotta); color: white;
  border: none; padding: 14px; border-radius: 30px; font-weight: 500; cursor: pointer;
}