/* ============================================
   CrownHaus Global Styles
   Palette: cream / gold / rose / deep-plum
   Fonts: Syne (headings) + DM Sans (body)
   ============================================ */

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

:root {
  --cream: #FFF8F0;
  --warm-black: #1A1210;
  --gold: #C4956A;
  --gold-light: #E8C9A8;
  --rose: #D4847C;
  --deep-plum: #3D2137;
  --soft-blush: #F5E1D8;
  --white: #FFFFFF;
  --gray-100: #F7F3EF;
  --gray-200: #E8E0D8;
  --gray-300: #D0C4BA;
  --gray-400: #9A8A80;
  --gray-500: #7A6A62;
  --gray-600: #5A4A42;
  --success: #4A7C59;
  --error: #C44A4A;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(26,18,16,0.06);
  --shadow-md: 0 4px 12px rgba(26,18,16,0.08);
  --shadow-lg: 0 8px 30px rgba(26,18,16,0.12);
  --transition: 0.25s ease;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--warm-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
input, select { font-family: inherit; }

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(255,248,240,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196,149,106,0.12);
  transition: background var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}

.nav-cart:hover {
  color: var(--gold);
}

.nav-cart-icon {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition);
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--warm-black);
  margin: 5px 0;
  transition: all var(--transition);
}

/* ============================================
   Page Layout
   ============================================ */

.page {
  padding-top: 64px;
  min-height: 100vh;
}

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

/* ============================================
   Shop Page
   ============================================ */

.shop-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(170deg, var(--cream) 0%, var(--soft-blush) 40%, var(--cream) 100%);
}

.shop-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--warm-black);
  margin-bottom: 12px;
}

.shop-hero p {
  font-size: 17px;
  color: var(--gray-500);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

/* Category Filter */
.category-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 24px 0 40px;
  flex-wrap: wrap;
}

.category-pill {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  cursor: pointer;
  display: inline-block;
}

.category-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.category-pill.active {
  background: var(--warm-black);
  color: var(--cream);
  border-color: var(--warm-black);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  padding-bottom: 80px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 3 / 3.5;
  background: linear-gradient(135deg, var(--soft-blush) 0%, var(--gold-light) 100%);
  position: relative;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-image .placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gold);
}

.placeholder-icon svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

.placeholder-icon span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.sale {
  background: var(--rose);
  color: var(--white);
}

.product-badge.featured {
  background: var(--gold);
  color: var(--white);
}

.product-card-body {
  padding: 20px;
}

.product-card-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-card-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--warm-black);
  margin-bottom: 6px;
}

.product-card-desc {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-price .current {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--warm-black);
}

.product-price .compare {
  font-size: 14px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--warm-black);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--deep-plum);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: #B8865C;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--warm-black);
  border: 1.5px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-icon {
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.add-to-cart-btn {
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  background: var(--warm-black);
  color: var(--cream);
  transition: all var(--transition);
}

.add-to-cart-btn:hover {
  background: var(--deep-plum);
}

.add-to-cart-btn.added {
  background: var(--success);
}

/* ============================================
   Product Detail Page
   ============================================ */

.product-detail {
  padding: 40px 0 80px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-detail-image {
  width: 100%;
  aspect-ratio: 3 / 3.5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--soft-blush) 0%, var(--gold-light) 100%);
  position: relative;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-image .placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
}

.product-detail-image .placeholder-icon svg {
  width: 64px;
  height: 64px;
  opacity: 0.35;
}

.product-detail-image .placeholder-icon span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.4;
}

.product-detail-info {
  padding-top: 20px;
}

.product-detail-info .breadcrumb {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.product-detail-info .breadcrumb a {
  color: var(--gray-400);
  transition: color var(--transition);
}

.product-detail-info .breadcrumb a:hover {
  color: var(--gold);
}

.product-detail-info h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--warm-black);
  margin-bottom: 8px;
  line-height: 1.15;
}

.product-detail-info .category-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.product-detail-price .current {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--warm-black);
}

.product-detail-price .compare {
  font-size: 18px;
  color: var(--gray-400);
  text-decoration: line-through;
}

.product-detail-price .save {
  font-size: 14px;
  font-weight: 600;
  color: var(--rose);
  background: rgba(212,132,124,0.1);
  padding: 4px 12px;
  border-radius: 50px;
}

.product-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
  font-weight: 300;
  margin-bottom: 32px;
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.product-tag {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.product-actions .btn {
  flex: 1;
}

.product-stock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--success);
  font-weight: 500;
}

.product-stock .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

/* ============================================
   Cart Page
   ============================================ */

.cart-page {
  padding: 40px 0 80px;
}

.cart-page h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--warm-black);
  margin-bottom: 8px;
}

.cart-subtitle {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 40px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

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

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: box-shadow var(--transition);
}

.cart-item:hover {
  box-shadow: var(--shadow-sm);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, var(--soft-blush) 0%, var(--gold-light) 100%);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.cart-item-details .item-price {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

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

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-600);
  transition: all var(--transition);
}

.qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.qty-value {
  font-weight: 600;
  font-size: 15px;
  min-width: 20px;
  text-align: center;
}

.cart-item-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-item-total {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.cart-remove-btn {
  background: none;
  color: var(--gray-400);
  font-size: 13px;
  padding: 4px 8px;
  transition: color var(--transition);
}

.cart-remove-btn:hover {
  color: var(--error);
}

/* Cart Summary */
.cart-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 88px;
}

.cart-summary h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
}

.cart-summary-row.total {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid var(--warm-black);
  font-weight: 700;
  font-size: 18px;
}

.cart-summary-row .label {
  color: var(--gray-500);
}

.cart-summary .btn {
  width: 100%;
  margin-top: 24px;
}

.cart-empty {
  text-align: center;
  padding: 80px 24px;
}

.cart-empty h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
}

.cart-empty p {
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* ============================================
   Checkout Success
   ============================================ */

.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.success-card {
  max-width: 500px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(74,124,89,0.1);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

.success-card h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 12px;
}

.success-card p {
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--warm-black);
  color: var(--gray-400);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,248,240,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom span {
  color: var(--gold);
}

/* ============================================
   Toast Notification
   ============================================ */

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--warm-black);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  border-left: 3px solid var(--success);
}

/* ============================================
   Landing Page (from original index.html)
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  background: linear-gradient(170deg, var(--cream) 0%, var(--soft-blush) 50%, var(--cream) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,149,106,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,132,124,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.brand-mark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 1.05;
  color: var(--warm-black);
  max-width: 800px;
  margin-bottom: 28px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 21px);
  line-height: 1.6;
  color: #5A4A42;
  max-width: 520px;
  font-weight: 300;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 80px auto;
}

.philosophy {
  padding: 100px 24px;
  background: var(--warm-black);
  color: var(--cream);
  position: relative;
}

.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.philosophy-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.philosophy h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-bottom: 0;
}

.philosophy-text {
  font-size: 17px;
  line-height: 1.8;
  color: #BFB0A8;
  font-weight: 300;
}

.philosophy-text strong {
  color: var(--gold-light);
  font-weight: 500;
}

.offerings {
  padding: 120px 24px;
  background: var(--cream);
}

.offerings-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.offerings-header {
  text-align: center;
  margin-bottom: 80px;
}

.offerings-header h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--warm-black);
  margin-bottom: 16px;
}

.offerings-header p {
  font-size: 17px;
  color: #7A6A62;
  font-weight: 300;
}

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

.offering-card {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-4px);
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
}

.offering-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.offering-icon.wigs { background: rgba(196,149,106,0.15); }
.offering-icon.acc { background: rgba(212,132,124,0.15); }
.offering-icon.care { background: rgba(61,33,55,0.1); }

.offering-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--warm-black);
}

.offering-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #7A6A62;
  font-weight: 300;
}

.promise {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--soft-blush) 0%, var(--cream) 100%);
  text-align: center;
}

.promise-inner {
  max-width: 640px;
  margin: 0 auto;
}

.promise h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.25;
  color: var(--warm-black);
  margin-bottom: 24px;
}

.promise p {
  font-size: 17px;
  line-height: 1.8;
  color: #5A4A42;
  font-weight: 300;
}

.promise-values {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.promise-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.promise-value span:first-child {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--gold);
}

.promise-value span:last-child {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7A6A62;
}

.closing {
  padding: 120px 24px;
  background: var(--deep-plum);
  text-align: center;
  color: var(--cream);
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,248,240,0.7);
  font-weight: 300;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .promise-values {
    gap: 24px;
  }

  .hero {
    padding: 80px 20px;
  }

  .offering-card {
    padding: 32px 24px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,248,240,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }

  .cart-item-right {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

  .product-card-body {
    padding: 14px;
  }

  .product-card-name {
    font-size: 15px;
  }

  .product-card-desc {
    display: none;
  }

  .product-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .add-to-cart-btn {
    width: 100%;
    text-align: center;
  }

  .product-actions {
    flex-direction: column;
  }
}
