/* =====================================================
   THE GIFTED HANDS — MAIN STYLESHEET
   Order: Reset → Variables → Base → Nav → Hero →
          Shop → Cart → Features → Footer → About Modal
          → About Page → Feedback → WhatsApp → Responsive
===================================================== */


/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


/* ── CSS VARIABLES ── */
:root {
  --gold:        #C8A97E;
  --gold-light:  #E8E0D5;
  --terra:       #6B6560;
  --terra-light: #E8E0D5;
  --cream:       #F8F5F0;
  --dark:        #1A1A1A;
  --dark2:       #3D3A36;
  --text:        #1A1A1A;
  --text-muted:  #6B6560;
  --border:      rgba(26,26,26,0.12);
  --card-bg:     #FFFFFF;
}


/* ── BASE ── */
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); }


/* =====================
   NAVIGATION
===================== */
nav {
  background: var(--dark);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(194,168,130,0.25);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 1.2rem; letter-spacing: 0.05em;
  cursor: pointer; text-decoration: none; flex: 1;
}
.nav-logo a { color: inherit; text-decoration: none; }
.nav-logo img { height: 40px; margin-right: 8px; vertical-align: middle; }

.nav-links {
  display: flex; gap: 2rem; align-items: center;
  flex: 1; justify-content: center;
}
.nav-links a {
  color: #C8BDB3; font-size: 0.85rem; text-decoration: none;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-right {
  display: flex; align-items: center; gap: 1.2rem;
  flex: 1; justify-content: flex-end;
}

/* Cart button */
.cart-btn {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(194,168,130,0.4); border-radius: 50px;
  padding: 0.45rem 1.1rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: border-color 0.2s; letter-spacing: 0.03em;
}
.cart-btn:hover { border-color: var(--gold); }
.cart-count {
  background: var(--dark); color: var(--gold); border-radius: 50%;
  width: 18px; height: 18px; display: inline-flex; align-items: center;
  justify-content: center; font-size: 0.7rem; font-weight: 700;
}

/* Shop Now button (about.html nav) */
.nav-btn {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(194,168,130,0.4); border-radius: 50px;
  padding: 0.45rem 1.2rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  text-decoration: none; letter-spacing: 0.03em; transition: border-color 0.2s;
}
.nav-btn:hover { border-color: var(--gold); }

/* Mobile shop button — hidden on desktop, shown on mobile */
.mobile-shop-btn { display: none; }


/* =====================
   HERO (HOME PAGE)
===================== */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #1A1A1A 0%, #3D3A36 60%, #5A5550 100%);
  position: relative; overflow: hidden; padding: 4rem 2rem;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-circles {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 560px; height: 560px; opacity: 0.08;
}
.hero-content { max-width: 580px; position: relative; z-index: 2; }
.hero-tag {
  color: var(--gold); font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 8px;
}
.hero-tag::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem); color: #F9F6F1; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p { color: #A89B8E; font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 440px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Floating stat badges */
.hero-badges {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 1rem; z-index: 2;
}
.badge-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(194,168,130,0.2);
  border-radius: 16px; padding: 1rem 1.4rem; backdrop-filter: blur(10px);
  color: #F9F6F1; min-width: 160px;
}
.badge-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); }
.badge-label { font-size: 0.75rem; color: #A89B8E; letter-spacing: 0.05em; margin-top: 2px; }

/* Shared buttons */
.btn-primary {
  background: var(--gold); color: var(--dark); border: none; border-radius: 50px;
  padding: 0.85rem 2.2rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  font-weight: 600; cursor: pointer; transition: all 0.2s; letter-spacing: 0.02em;
}
.btn-primary:hover { background: #d4bc98; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--gold-light);
  border: 1px solid rgba(194,168,130,0.4); border-radius: 50px;
  padding: 0.85rem 2.2rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; cursor: pointer; transition: all 0.2s; letter-spacing: 0.02em;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }


/* =====================
   SHOP SECTION
===================== */
.section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.8rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--dark); }

/* Category filter pills */
.categories { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.cat-pill {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 50px;
  padding: 0.55rem 1.4rem; font-size: 0.85rem; cursor: pointer;
  transition: all 0.2s; color: var(--text-muted); font-weight: 400;
}
.cat-pill.active,
.cat-pill:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); font-weight: 600; }

/* Product grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.product-card {
  background: var(--card-bg); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.25s; cursor: pointer; position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(194,168,130,0.18); border-color: var(--gold); }

/* Product image */
.product-img { height: 220px; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }

/* Badge & wishlist overlay */
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--dark); font-size: 0.68rem; font-weight: 600;
  padding: 3px 10px; border-radius: 50px; letter-spacing: 0.05em;
}
.wishlist-btn {
  position: absolute; top: 12px; right: 12px; background: white; border: none;
  border-radius: 50%; width: 32px; height: 32px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.wishlist-btn:hover { background: #ffe8e8; }
.wishlist-btn.active { background: #ffe0e0; }

/* Product info */
.product-info { padding: 1.2rem; }
.stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 0.5rem; }
.product-name { font-weight: 600; font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
.product-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--terra); }
.add-btn {
  background: var(--dark); color: var(--gold); border: none; border-radius: 50px;
  padding: 0.45rem 1rem; font-size: 0.8rem; cursor: pointer; transition: all 0.2s;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
}
.add-btn:hover { background: var(--gold); color: var(--dark); }


/* =====================
   CART SIDEBAR
===================== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 200;
  display: none; opacity: 0; transition: opacity 0.3s;
}
.cart-overlay.open { display: flex; justify-content: flex-end; opacity: 1; }
.cart-sidebar {
  background: var(--cream); width: 380px; max-width: 95vw; height: 100%;
  overflow-y: auto; padding: 2rem; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.3s;
}
.cart-overlay.open .cart-sidebar { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.cart-header h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--dark); }
.close-btn {
  background: none; border: 1px solid var(--border); border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: 1rem;
  color: var(--text-muted); transition: all 0.2s;
}
.close-btn:hover { border-color: var(--terra); color: var(--terra); }
.cart-items { flex: 1; }
.cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); align-items: center; }

/* Cart product thumbnail */
.cart-item-icon { width: 64px; height: 64px; border-radius: 12px; background: var(--terra-light); flex-shrink: 0; overflow: hidden; padding: 0; }
.cart-item-icon img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }

.cart-item-name { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.cart-item-price { font-size: 0.85rem; color: var(--terra); font-weight: 500; margin-top: 2px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-btn {
  background: var(--border); border: none; border-radius: 50%;
  width: 22px; height: 22px; cursor: pointer; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; color: var(--dark); font-weight: 500;
}
.qty-btn:hover { background: var(--gold); color: var(--dark); }
.qty-num { font-size: 0.85rem; font-weight: 500; min-width: 16px; text-align: center; }
.remove-item { margin-left: auto; background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 0.8rem; }
.remove-item:hover { color: #c0392b; }
.cart-footer { padding-top: 1.5rem; border-top: 1px solid var(--border); margin-top: auto; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 1rem; }
.cart-total span { font-weight: 600; color: var(--dark); }
.cart-total .amount { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--terra); }
.checkout-btn {
  width: 100%; background: var(--gold); color: var(--dark); border: none; border-radius: 50px;
  padding: 1rem; font-size: 1rem; font-weight: 600; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s; margin-bottom: 0.75rem;
}
.checkout-btn:hover { background: #d4bc98; }
.empty-cart { text-align: center; padding: 3rem 0; color: var(--text-muted); }
.empty-cart .icon { font-size: 3rem; margin-bottom: 1rem; }


/* =====================
   FEATURES STRIP
===================== */
.features-strip {
  background: var(--dark2); padding: 2.5rem 2rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem; text-align: center;
}
.feature-item { color: #C8BDB3; }
.feature-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.feature-title { font-size: 0.9rem; font-weight: 600; color: #F9F6F1; margin-bottom: 4px; }
.feature-text { font-size: 0.78rem; opacity: 0.7; }


/* =====================
   TOAST NOTIFICATION
===================== */
.toast {
  position: fixed; bottom: 5rem; right: 2rem; background: var(--dark);
  color: #F9F6F1; border: 1px solid var(--gold); border-radius: 14px;
  padding: 0.9rem 1.5rem; font-size: 0.9rem; z-index: 300;
  transform: translateY(100px); opacity: 0; transition: all 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.toast.show { transform: translateY(0); opacity: 1; }


/* =====================
   FOOTER
===================== */
footer {
  background: var(--dark); color: #7A6A5A; text-align: center;
  padding: 2rem; font-size: 0.82rem; border-top: 1px solid rgba(194,168,130,0.15);
}
footer span { color: var(--gold); }


/* =====================
   ABOUT MODAL (home page popup)
===================== */
.about-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200;
  display: none; opacity: 0; transition: opacity 0.35s;
  align-items: center; justify-content: center; padding: 2rem;
}
.about-overlay.open { display: flex; opacity: 1; }
.about-modal {
  background: var(--cream); border-radius: 28px; max-width: 720px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(30px); opacity: 0;
  transition: transform 0.35s, opacity 0.35s; border: 1px solid var(--border);
}
.about-overlay.open .about-modal { transform: translateY(0); opacity: 1; }
.about-modal-top {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-radius: 28px 28px 0 0; padding: 2.5rem 2.5rem 2rem;
  position: relative; overflow: hidden;
}
.about-modal-top::before {
  content: ''; position: absolute; inset: 0; opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.about-modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(194,168,130,0.2);
  border-radius: 50%; width: 36px; height: 36px; cursor: pointer;
  color: var(--gold-light); font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s; z-index: 2;
}
.about-modal-close:hover { background: rgba(194,168,130,0.2); color: var(--gold); }
.about-modal-eyebrow {
  color: var(--gold); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 0.8rem; display: flex; align-items: center; gap: 8px; position: relative; z-index: 2;
}
.about-modal-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
.about-modal-top h2 {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: #F9F6F1; line-height: 1.15; position: relative; z-index: 2;
}
.about-modal-top h2 em { color: var(--gold); font-style: italic; }
.about-modal-body { padding: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.about-portrait-row { display: flex; gap: 2rem; align-items: flex-start; }
.about-portrait {
  flex-shrink: 0; width: 150px; height: 180px; border-radius: 18px;
  background: linear-gradient(135deg, var(--dark2) 0%, #7a6040 100%);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; }
.about-portrait-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; height: 100%; }
.about-portrait-placeholder span { font-size: 2.5rem; }
.about-portrait-placeholder p { font-size: 0.65rem; color: #A89B8E; text-align: center; letter-spacing: 0.08em; text-transform: uppercase; padding: 0 8px; }
.about-intro-text { font-size: 0.97rem; line-height: 1.85; color: var(--text-muted); }
.about-story-block { background: #FFFFFF; border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem 1.8rem; transition: border-color 0.2s; }
.about-story-block:hover { border-color: rgba(194,168,130,0.4); }
.about-story-block-title { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--dark); margin-bottom: 0.75rem; }
.about-story-block p { font-size: 0.92rem; line-height: 1.85; color: var(--text-muted); }
.about-divider { height: 1px; background: var(--border); }

/* Shared block icon (used in modal and about page) */
.block-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--dark2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0; border: 1px solid rgba(194,168,130,0.2);
}


/* =====================
   ABOUT PAGE (about.html)
===================== */
.about-hero {
  position: relative; overflow: hidden; min-height: 70vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #5A4A3A 100%);
  padding: 5rem 2rem;
}
.hero-ring {
  position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(194,168,130,0.12); pointer-events: none;
}
.hero-ring::before { content: ''; position: absolute; inset: 40px; border-radius: 50%; border: 1px solid rgba(194,168,130,0.08); }
.hero-ring::after { content: ''; position: absolute; inset: 100px; border-radius: 50%; background: radial-gradient(circle, rgba(194,168,130,0.06) 0%, transparent 70%); }
.about-hero-inner {
  position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.hero-left { animation: fadeUp 0.8s ease both; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-left h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5.5vw, 5rem); line-height: 1.05; color: #F9F6F1; margin-bottom: 1.8rem; }
.hero-left h1 em { color: var(--gold); font-style: italic; display: block; }
.hero-left p { color: #A89B8E; font-size: 1.05rem; line-height: 1.8; max-width: 420px; margin-bottom: 2.5rem; }
.hero-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--dark); border-radius: 50px; padding: 0.85rem 2rem; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.2s; letter-spacing: 0.03em; }
.hero-cta:hover { background: #d4bc98; transform: translateY(-2px); }

/* Mosaic grid */
.hero-right { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 12px; animation: fadeUp 0.8s 0.2s ease both; }
.mosaic-card { border-radius: 20px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; }
.mosaic-card:nth-child(1) { grid-column: 1 / 3; height: 200px; background: linear-gradient(135deg, #3D3530 0%, #4A3D35 100%); border: 1px solid rgba(194,168,130,0.18); }
.mosaic-card:nth-child(2) { height: 160px; background: linear-gradient(135deg, #4A3D35 0%, #5A4A3A 100%); border: 1px solid rgba(194,168,130,0.15); }
.mosaic-card:nth-child(3) { height: 160px; background: linear-gradient(135deg, #8A6A4A 0%, #C2A882 100%); border: 1px solid rgba(194,168,130,0.2); }
.mosaic-label { position: absolute; bottom: 12px; left: 12px; background: rgba(43,43,43,0.75); color: var(--gold-light); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; backdrop-filter: blur(6px); }

/* Stats bar */
.stats-bar { background: var(--dark2); padding: 2rem; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(194,168,130,0.12); border-bottom: 1px solid rgba(194,168,130,0.12); }
.stat-item { text-align: center; padding: 1rem; border-right: 1px solid rgba(194,168,130,0.12); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.78rem; color: #A89B8E; margin-top: 6px; letter-spacing: 0.05em; }

/* Story section */
.story-section { max-width: 1100px; margin: 0 auto; padding: 6rem 2rem; display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.story-sidebar { position: sticky; top: 90px; }
.sidebar-tag { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 8px; }
.sidebar-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.sidebar-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dark); line-height: 1.2; margin-bottom: 1.5rem; }
.sidebar-title em { color: var(--terra); font-style: italic; }
.sidebar-line { width: 48px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--terra)); border-radius: 2px; margin-bottom: 1.5rem; }
.sidebar-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--text-muted); line-height: 1.7; border-left: 2px solid var(--gold); padding-left: 1.2rem; }
.story-body { display: flex; flex-direction: column; gap: 2.5rem; }
.story-block { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 2rem 2.2rem; transition: border-color 0.3s, box-shadow 0.3s; }
.story-block:hover { border-color: rgba(194,168,130,0.45); box-shadow: 0 8px 32px rgba(194,168,130,0.1); }
.story-block .block-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--dark2), #5A4A3A); font-size: 1.3rem; margin-bottom: 1rem; }
.block-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--dark); margin-bottom: 0.75rem; }
.block-text { font-size: 0.97rem; line-height: 1.85; color: var(--text-muted); }

/* Materials */
.materials-section { background: var(--dark); padding: 5rem 2rem; position: relative; overflow: hidden; }
.materials-section::before { content: ''; position: absolute; inset: 0; opacity: 0.05; background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.materials-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.materials-header { text-align: center; margin-bottom: 3rem; }
.materials-header .tag { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.8rem; }
.materials-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: #F9F6F1; }
.materials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.material-pill { background: rgba(255,255,255,0.04); border: 1px solid rgba(194,168,130,0.18); border-radius: 16px; padding: 1.4rem 1rem; text-align: center; transition: all 0.25s; }
.material-pill:hover { background: rgba(194,168,130,0.1); border-color: rgba(194,168,130,0.45); transform: translateY(-3px); }
.material-emoji { font-size: 1.8rem; margin-bottom: 0.6rem; }
.material-name { font-size: 0.85rem; color: #C8BDB3; font-weight: 500; }

/* Values */
.values-section { max-width: 1100px; margin: 0 auto; padding: 6rem 2rem; }
.values-header { text-align: center; margin-bottom: 3.5rem; }
.values-header .tag { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.8rem; }
.values-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--dark); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.value-card { border-radius: 20px; padding: 2rem; border: 1px solid var(--border); background: var(--card-bg); transition: all 0.25s; }
.value-card:hover { border-color: var(--gold); box-shadow: 0 12px 32px rgba(194,168,130,0.14); transform: translateY(-4px); }
.value-num { font-family: 'Playfair Display', serif; font-size: 3rem; color: rgba(194,168,130,0.18); line-height: 1; margin-bottom: 0.5rem; }
.value-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--dark); margin-bottom: 0.75rem; }
.value-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* CTA banner */
.cta-banner { background: linear-gradient(135deg, var(--dark2) 0%, #5A4A3A 100%); margin: 0 2rem 4rem; border-radius: 28px; padding: 4rem 3rem; text-align: center; position: relative; overflow: hidden; border: 1px solid rgba(194,168,130,0.18); }
.cta-banner::before { content: ''; position: absolute; inset: 0; opacity: 0.05; background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%); background-size: 20px 20px; }
.cta-banner-inner { position: relative; z-index: 2; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); color: #F9F6F1; margin-bottom: 1rem; }
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p { color: #A89B8E; font-size: 1rem; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: var(--dark); border: none; border-radius: 50px; padding: 0.9rem 2.2rem; font-size: 0.95rem; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; transition: all 0.2s; }
.btn-gold:hover { background: #d4bc98; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--gold-light); border: 1px solid rgba(194,168,130,0.4); border-radius: 50px; padding: 0.9rem 2.2rem; font-size: 0.95rem; cursor: pointer; font-family: 'DM Sans', sans-serif; text-decoration: none; transition: all 0.2s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* =====================
   FEEDBACK SECTION
===================== */
.feedback-section { background: var(--cream); padding: 5rem 2rem; border-top: 1px solid var(--border); }
.feedback-inner { max-width: 1200px; margin: 0 auto; }
.feedback-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 1rem; }
.feedback-col-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--dark); margin-bottom: 1.5rem; }

/* Review cards */
.review-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 1.4rem; margin-bottom: 1rem; transition: border-color 0.2s, box-shadow 0.2s; }
.review-card:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(194,168,130,0.12); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.6rem; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--dark); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; flex-shrink: 0; }
.review-name { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.review-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 1px; }

/* Leave a review */
.leave-review { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 1.4rem; margin-top: 1.5rem; }
.leave-review-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--dark); margin-bottom: 0.8rem; }
.star-picker { display: flex; gap: 4px; margin-bottom: 0.8rem; }
.star-pick { font-size: 1.6rem; color: var(--border); cursor: pointer; transition: color 0.15s; line-height: 1; }
.star-pick.active,
.star-pick:hover { color: var(--gold); }

/* Shared form inputs */
.feedback-input { width: 100%; background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 0.75rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--text); margin-bottom: 0.75rem; transition: border-color 0.2s; outline: none; resize: vertical; }
.feedback-input:focus { border-color: var(--gold); }
.feedback-input::placeholder { color: var(--text-muted); }

/* Contact form */
.contact-intro { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 1.4rem; }

/* Submit button */
.feedback-btn { width: 100%; background: var(--dark); color: var(--gold); border: none; border-radius: 50px; padding: 0.85rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.2s; letter-spacing: 0.03em; margin-top: 0.25rem; }
.feedback-btn:hover { background: var(--gold); color: var(--dark); }


/* =====================
   WHATSAPP FLOATING BUTTON
===================== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 400;
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  background: var(--dark); border: 1px solid var(--border); border-radius: 50px;
  padding: 0.6rem 1.2rem 0.6rem 0.6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12); transition: all 0.25s;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); border-color: var(--gold); }
.whatsapp-float:hover .whatsapp-icon { background: var(--gold); }
.whatsapp-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.25s; }
.whatsapp-icon svg { width: 20px; height: 20px; fill: var(--dark); }
.whatsapp-label { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.03em; white-space: nowrap; }


/* =====================
   RESPONSIVE — TABLET (max 768px)
===================== */
@media (max-width: 768px) {
  /* About page layout */
  .about-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .story-section { grid-template-columns: 1fr; gap: 2rem; }
  .story-sidebar { position: static; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-banner { margin: 0 1rem 3rem; padding: 3rem 1.5rem; }

  /* Feedback */
  .feedback-grid { grid-template-columns: 1fr; gap: 2rem; }
}


/* =====================
   RESPONSIVE — MOBILE (max 700px)
===================== */
@media (max-width: 700px) {
  /* Nav */
  nav {
    padding: 0 1rem;
    height: 64px;
    flex-wrap: nowrap;
  }

  .nav-logo {
    font-size: 0.85rem;   /* small but readable */
    letter-spacing: 0.04em;
    flex: unset;
  }

  .nav-logo img {
    height: 40px;         /* slightly smaller image */
  }

  .nav-right {
    flex: unset;
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .nav-links { display: none; }

  .cart-btn { padding: 0.45rem 0.6rem; }
  .cart-btn .cart-text { display: none; }

  /* Show mobile shop button */
  .mobile-shop-btn {
    display: flex; align-items: center; gap: 5px;
    background: transparent; border: 1px solid rgba(194,168,130,0.3);
    color: var(--gold); border-radius: 50px; padding: 0.4rem 0.85rem;
    font-size: 0.78rem; cursor: pointer; font-family: 'DM Sans', sans-serif;
    font-weight: 600; letter-spacing: 0.03em; transition: all 0.2s;
  }
  .mobile-shop-btn:hover { background: var(--gold); color: var(--dark); }

  /* Hide hero badges */
  .hero-badges,
  .badge-card { display: none; }

  /* WhatsApp — icon only circle */
  .whatsapp-float { padding: 0.6rem; border-radius: 50%; bottom: 1.5rem; right: 1.5rem; }
  .whatsapp-icon { width: 48px; height: 48px; }
  .whatsapp-icon svg { width: 24px; height: 24px; }
  .whatsapp-label { display: none; }
}


/* =====================
   RESPONSIVE — SMALL MOBILE (max 560px)
===================== */
@media (max-width: 560px) {
  /* About modal portrait */
  .about-portrait-row { flex-direction: column; align-items: center; }
  .about-portrait { width: 120px; height: 150px; }
  .about-modal-body { padding: 1.5rem; }
  .about-modal-top { padding: 2rem 1.5rem 1.5rem; }
}