/* ============ Color Palette ============
   Saint Dragon — Jewelry & Accessories
   Warm cream base, amber/gold accents, deep brown
   ========================================== */

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2c1810;
  background: #fdf9f5;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ============ Typography ============ */
h1, h2, h3, h4 { font-weight: 500; line-height: 1.2; }
h1 { font-size: 2.8rem; font-weight: 400; letter-spacing: -0.5px; }
h2 { font-size: 2rem; font-weight: 400; }
h3 { font-size: 1.15rem; font-weight: 500; }
p { color: #6b5a4a; line-height: 1.8; }

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

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: #6b4423;
  color: #fff;
  border: none;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: inherit;
}
.btn:hover { background: #4a2e15; }
.btn-primary {
  background: #2c1810;
  color: #fdf9f5;
  border: 1px solid #2c1810;
}
.btn-primary:hover { background: #4a2e15; border-color: #4a2e15; }
.btn-outline {
  background: transparent;
  color: #6b4423;
  border: 1px solid #6b4423;
}
.btn-outline:hover { background: #6b4423; color: #fff; }
.btn-sm { padding: 10px 22px; font-size: 0.75rem; }
.btn-block { width: 100%; text-align: center; }
.btn-lg { padding: 16px 48px; font-size: 0.85rem; }
.btn-inquire {
  background: #6b4423;
  font-size: 0.85rem;
  padding: 16px 36px;
  letter-spacing: 2px;
}
.btn-inquire:hover { background: #4a2e15; }

/* ============ Header (New Glass Style) ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,249,245,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(180,160,140,0.15);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.site-header .logo {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: #2c1810;
}
.site-header nav { display: flex; align-items: center; gap: 32px; }
.site-header nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8a7a6a;
  transition: color 0.2s;
  position: relative;
}
.site-header nav a:hover { color: #2c1810; }
.site-header nav a.active { color: #2c1810; }
.site-header nav a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #d4a853;
}
.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; background: none; border: none; color: #2c1810; }

/* Keep legacy header styles for other pages */
header {
  background: #fff;
  border-bottom: 1px solid #ede5da;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2c1810;
}

nav { display: flex; align-items: center; gap: 30px; }
nav a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8a7a6a;
  transition: color 0.2s;
  font-weight: 400;
}
nav a:hover, nav a.active { color: #2c1810; }

/* ============ HERO — Product Showcase (New) ============ */
.hero-alt {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
  background: linear-gradient(160deg, #fdf9f5 0%, #f5ede2 40%, #ede0d0 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}
.shape-1 {
  width: 600px; height: 600px;
  background: #d4a853;
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: #6b4423;
  bottom: -100px; left: -100px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: #b8860b;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b8a898;
  display: block;
  margin-bottom: 20px;
}
.hero-headline { margin-bottom: 20px; }
.hero-headline .thin {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  font-weight: 400;
  font-style: italic;
  color: #6b4423;
  line-height: 1;
}
.hero-headline .accent {
  display: block;
  font-size: 4.5rem;
  font-weight: 200;
  letter-spacing: -2px;
  color: #2c1810;
  line-height: 1;
  margin-top: 4px;
}
.hero-sub {
  font-size: 1.05rem;
  color: #6b5a4a;
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-meta span {
  font-size: 0.8rem;
  color: #8a7a6a;
  letter-spacing: 0.5px;
}

/* Product Showcase */
.product-showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}
.showcase-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(107,68,35,0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-main {
  width: 60%;
  height: 70%;
  top: 5%;
  left: 5%;
  z-index: 3;
  box-shadow: 0 12px 48px rgba(107,68,35,0.18);
}
.card-main:hover { transform: scale(1.02); box-shadow: 0 16px 56px rgba(107,68,35,0.22); }
.card-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(44,24,16,0.75);
  backdrop-filter: blur(8px);
  color: #fdf9f5;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}
.card-side {
  width: 40%;
  height: 35%;
  box-shadow: 0 6px 24px rgba(107,68,35,0.1);
}
.card-side-1 { top: 5%; right: 5%; z-index: 2; }
.card-side-2 { bottom: 5%; left: 30%; z-index: 2; }
.showcase-dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4c4b0;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.dot.active { background: #d4a853; width: 24px; border-radius: 4px; }

/* ============ Trust Bar ============ */
.trust-bar {
  padding: 24px 0;
  background: #fff;
  border-bottom: 1px solid #ede5da;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 40px;
  height: 40px;
  background: #f5ede2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: #6b4423;
}
.trust-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2c1810;
}
.trust-item span {
  font-size: 0.75rem;
  color: #8a7a6a;
}

/* ============ Section ============ */
.section { padding: 90px 0; }
.section-light { background: #fdf9f5; }
.section-cream { background: #faf6f0; }
.section-dark {
  background: #2c1810;
  color: #fdf9f5;
}
.section-head {
  text-align: center;
  margin-bottom: 55px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #d4a853;
  display: block;
  margin-bottom: 10px;
}
.section-head h2 { margin-bottom: 8px; }
.section-head p { color: #8a7a6a; font-size: 0.95rem; }
.section-head.light h2 { color: #fdf9f5; }
.section-head.light p { color: #b8a898; }
.section-title {
  text-align: center;
  margin-bottom: 55px;
}
.section-title h2 { margin-bottom: 8px; color: #2c1810; }
.section-title p { color: #8a7a6a; font-size: 0.95rem; }
.section-divider {
  width: 36px;
  height: 2px;
  background: #d4a853;
  margin: 14px auto;
}

/* ============ Product Cards (New) ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card-alt {
  background: #fff;
  border: 1px solid #ede5da;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}
.product-card-alt:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(107,68,35,0.1); }
.pca-image {
  height: 300px;
  background: #faf6f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.pca-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s;
}
.product-card-alt:hover .pca-image img { transform: scale(1.08); }
.pca-info { padding: 22px 24px 26px; }
.pca-cat {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b8a898;
  display: block;
  margin-bottom: 6px;
}
.pca-info h3 {
  font-size: 1rem;
  color: #2c1810;
  font-weight: 500;
  margin-bottom: 4px;
}
.pca-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: #6b4423;
  display: block;
  margin-bottom: 16px;
}
.pca-info .btn-outline { width: 100%; text-align: center; }

/* Legacy product card */
.product-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid #ede5da;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(107,68,35,0.1); }
.product-card .image-wrap {
  height: 320px;
  background: #faf6f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.product-card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s;
}
.product-card:hover .image-wrap img { transform: scale(1.06); }
.product-card .info { padding: 20px 22px 26px; }
.product-card .category-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b8a898;
  margin-bottom: 6px;
}
.product-card h3 { margin-bottom: 8px; font-size: 1rem; color: #2c1810; font-weight: 500; }
.product-card .price {
  font-size: 1.15rem;
  font-weight: 600;
  color: #6b4423;
  margin-bottom: 18px;
}
.product-card .btn { width: 100%; text-align: center; }

/* ============ Category Cards ============ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.cat-card {
  background: #fff;
  border: 1px solid #ede5da;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.cat-card:hover { border-color: #d4a853; transform: translateY(-4px); box-shadow: 0 12px 40px rgba(107,68,35,0.08); }
.cat-icon { font-size: 2.2rem; margin-bottom: 14px; }
.cat-card h3 { font-size: 0.95rem; margin-bottom: 8px; color: #2c1810; }
.cat-card p { font-size: 0.8rem; color: #8a7a6a; line-height: 1.6; }

/* Legacy category card */
.category-card {
  background: #fff;
  border: 1px solid #ede5da;
  padding: 40px 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.category-card:hover { border-color: #d4a853; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(107,68,35,0.08); }
.category-card .icon { font-size: 2.5rem; margin-bottom: 12px; }

/* ============ Why Us Grid (Dark) ============ */
.why-grid-alt {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card-alt {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: all 0.3s;
}
.why-card-alt:hover { background: rgba(255,255,255,0.06); border-color: rgba(212,168,83,0.3); }
.wc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.3rem;
  color: #d4a853;
}
.why-card-alt h3 { font-size: 0.95rem; color: #fdf9f5; margin-bottom: 10px; }
.why-card-alt p { font-size: 0.8rem; color: #b8a898; line-height: 1.7; }

/* ============ CTA Strip ============ */
.cta-strip {
  background: #faf6f0;
  border-top: 1px solid #ede5da;
  border-bottom: 1px solid #ede5da;
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-inner h3 { font-size: 1.5rem; font-weight: 400; color: #2c1810; margin-bottom: 4px; }
.cta-inner p { color: #8a7a6a; font-size: 0.95rem; }
.cta-inner .btn { flex-shrink: 0; }

/* Legacy CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2c1810 0%, #4a2e15 100%);
  text-align: center;
  padding: 100px 0;
}
.cta-section h2 { font-size: 2.2rem; font-weight: 300; color: #faf6f0; margin-bottom: 16px; }
.cta-section p { color: #b8a898; margin-bottom: 35px; font-size: 1.05rem; }

/* ============ Product Detail ============ */
.product-detail { padding: 80px 0; }
.detail-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.detail-image {
  background: #fff;
  border: 1px solid #ede5da;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}
.detail-image img { max-height: 420px; max-width: 100%; object-fit: contain; }
.detail-info h1 { font-size: 2rem; margin-bottom: 12px; color: #2c1810; }
.detail-info .price { font-size: 1.6rem; font-weight: 600; color: #6b4423; margin-bottom: 20px; }
.detail-info .description { color: #6b5a4a; line-height: 2; margin-bottom: 35px; font-size: 0.95rem; }
.detail-info .meta { color: #b8a898; font-size: 0.85rem; margin-bottom: 8px; }
.detail-image-wrap { position: sticky; top: 100px; }

/* ============ Spec Table ============ */
.spec-table {
  border: 1px solid #ede5da;
  margin-bottom: 25px;
  background: #faf6f0;
}
.spec-row {
  display: flex;
  padding: 12px 18px;
  border-bottom: 1px solid #ede5da;
  font-size: 0.9rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { width: 100px; font-weight: 500; color: #6b4423; flex-shrink: 0; }
.price-label { font-size: 0.7rem; font-weight: 400; color: #b8a898; text-transform: uppercase; letter-spacing: 1px; display: block; }

/* ============ Thumbnails ============ */
.thumbnails { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.thumbnails img { width: 64px; height: 64px; object-fit: cover; border: 1px solid #ede5da; cursor: pointer; transition: border-color 0.2s; }
.thumbnails img:hover { border-color: #d4a853; }

/* ============ Cart ============ */
.cart-page { padding: 80px 0; }
.cart-page h1 { margin-bottom: 40px; }
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid #ede5da;
}
.cart-item .item-info { flex: 1; }
.cart-item .item-info h4 { margin-bottom: 6px; color: #2c1810; }
.cart-item .item-info span { color: #b8a898; font-size: 0.85rem; }
.cart-summary {
  margin-top: 40px;
  padding: 35px;
  background: #fff;
  border: 1px solid #ede5da;
  text-align: right;
}
.cart-summary .total { font-size: 1.4rem; font-weight: 600; color: #6b4423; margin-bottom: 20px; }
.empty-cart { text-align: center; padding: 100px 0; }
.empty-cart p { font-size: 1.1rem; margin-bottom: 25px; color: #8a7a6a; }

/* ============ Checkout + Payment ============ */
.checkout-page { padding: 80px 0; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #4a3a2a; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ede5da;
  background: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #d4a853; }

/* ============ Quantity Selector ============ */
.quantity-selector { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.quantity-selector button {
  width: 40px; height: 40px;
  border: 1px solid #ede5da; background: #fff;
  font-size: 1.1rem; cursor: pointer; transition: all 0.2s;
  color: #4a3a2a;
}
.quantity-selector button:hover { background: #f5ede2; border-color: #d4a853; }
.quantity-selector input {
  width: 64px; height: 40px;
  text-align: center; border: 1px solid #ede5da; font-size: 0.95rem; color: #2c1810;
}

/* ============ Admin ============ */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 250px;
  background: #2c1810;
  color: #faf6f0;
  padding: 30px 0;
}
.admin-sidebar .logo {
  padding: 0 24px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
  font-size: 1rem;
  letter-spacing: 3px;
  color: #d4a853;
}
.admin-sidebar nav a {
  display: block;
  padding: 14px 24px;
  color: #b8a898;
  transition: all 0.2s;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { color: #fff; background: rgba(255,255,255,0.06); }
.admin-main { flex: 1; padding: 40px; background: #fcf8f4; }
.admin-header { margin-bottom: 30px; }
.admin-header h1 { font-size: 1.6rem; color: #2c1810; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.stat-card {
  background: #fff;
  padding: 28px;
  border: 1px solid #ede5da;
}
.stat-card h3 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: #b8a898; margin-bottom: 12px; }
.stat-card .value { font-size: 1.8rem; font-weight: 400; color: #6b4423; }
.data-table {
  width: 100%;
  background: #fff;
  border: 1px solid #ede5da;
}
.data-table th, .data-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #f5ede2; font-size: 0.9rem; }
.data-table th { background: #fcf8f4; font-weight: 500; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #b8a898; }
.data-table tr:hover td { background: #faf6f0; }

/* ============ Modal ============ */
.modal {
  display: none;
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(44,24,16,0.4);
  z-index: 1000;
  align-items: center; justify-content: center;
}
.modal.active { display: flex; }
.modal-content {
  background: #fff;
  padding: 35px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-content h2 { margin-bottom: 25px; color: #2c1810; }

/* ============ Footer ============ */
footer, .site-footer {
  background: #2c1810;
  padding: 80px 0 30px;
}
.footer-grid, .footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}
footer h4, .site-footer h4 {
  margin-bottom: 20px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #d4a853;
  font-weight: 500;
  text-transform: uppercase;
}
footer p, footer a, .site-footer p, .site-footer a { color: #b8a898; font-size: 0.85rem; line-height: 2.2; letter-spacing: 0.3px; }
footer a:hover, .site-footer a:hover { color: #d4a853; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 25px; text-align: center; color: #6b5a4a; font-size: 0.8rem; }
.footer-links a { display: block; }

/* ============ WhatsApp ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ============ About Stats ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin: 40px 0;
  text-align: center;
}
.stat-item { padding: 20px; }
.stat-number { font-size: 2rem; font-weight: 300; color: #6b4423; font-family: 'Playfair Display', Georgia, serif; }
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: #b8a898; margin-top: 4px; }
.cert-list { display: flex; gap: 12px; flex-wrap: wrap; margin: 25px 0; }
.cert-badge { padding: 8px 18px; background: #faf6f0; border: 1px solid #ede5da; font-size: 0.8rem; color: #6b4423; font-weight: 500; }

/* Legacy hero (for other pages) */
.hero {
  background: linear-gradient(145deg, #f5ede2 0%, #e8dccc 35%, #d4c4b0 70%, #c4b098 100%);
  padding: 100px 0 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
  padding: 40px 0;
}
.hero-showcase .hero-text { padding-right: 20px; }
.hero-showcase h1 { font-size: 3.2rem; }
.hero-showcase .hero-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-showcase .hero-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.5s;
}
.hero-showcase .hero-image .img-tall { height: 340px; grid-row: span 2; }

/* ============ Responsive ============ */
@media (max-width: 968px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .product-showcase { max-width: 360px; }
  .hero-headline .thin { font-size: 3rem; }
  .hero-headline .accent { font-size: 3.2rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .why-grid-alt { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .site-header nav { display: none; }
  .site-header nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(253,249,245,0.98); padding: 20px; gap: 16px; border-bottom: 1px solid #ede5da; }
  .mobile-toggle { display: block; }
  .site-header nav a.active::after { display: none; }
  .hero-alt { min-height: auto; padding: 40px 0 60px; }
  .detail-wrap { grid-template-columns: 1fr; gap: 30px; }
  .why-grid-alt { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .product-showcase { max-width: 300px; }
  .hero-headline .thin { font-size: 2.4rem; }
  .hero-headline .accent { font-size: 2.6rem; }
  .hero h1 { font-size: 2rem; }
  .cta-section h2 { font-size: 1.6rem; }
  .hero-showcase { grid-template-columns: 1fr; text-align: center; }
  .hero-showcase .hero-text { padding-right: 0; }
  .hero-showcase .hero-image img { height: 200px; }
  .hero-showcase .hero-image .img-tall { height: 200px; grid-row: auto; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
}
