/* ============================================
   COLOR 
   Gold main    : #B8860B
   Gold light   : #D4A017
   Gold hover   : #9A7209
   Card bg      : #FDF5E0
   Cream        : #FAF7F2
   White        : #FFFFFF
   Black        : #111111
   Text dark    : #1A1A1A
   Text mid     : #444444
   Text muted   : #6B6B6B
   Border       : #E8E3D8
   Nav border   : #E8E8E8
   Tag bg       : #F0EBE0

   FONT REFERENCE
   Main font    : 'Poppins', sans-serif
   Body font    : 'Montserrat', sans-serif

   SIZE REFERENCE
   Nav height   : 80px
   Card radius  : 16px
   Radius small : 8px
   Radius mid   : 12px
   Transition   : 0.25s ease
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #FFFFFF;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
}

a      { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: 'Poppins', sans-serif; }
img    { display: block; max-width: 100%; }
ul     { list-style: none; }

/* Offset sections so sticky navbar doesn't hide the top */
section[id] { scroll-margin-top: 80px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 80px;
  background: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon { width: 40px; height: 32px; }

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.3px;
  color: #1A1A1A;
}

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

.nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #1A1A1A;
  position: relative;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #B8860B;
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link:hover  { color: #B8860B; }
.nav-link.active { color: #B8860B; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-action-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #1A1A1A;
  font-size: 1.25rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-action-btn:hover {
  background: #F0F0EA;
  color: #B8860B;
}

.action-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  background: #B8860B;
  border-radius: 50%;
  font-size: 0.45rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  border: 1.5px solid #FFFFFF;
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
  background: #FAF7F2;
  padding: 64px 60px;
  text-align: center;
  border-bottom: 1px solid #E8E3D8;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%);
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 70%);
}

.page-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #1A1A1A;
}

.breadcrumb {
  font-size: 0.875rem;
  color: #6B6B6B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.breadcrumb span { color: #B8860B; font-weight: 600; }

/* ============================================
   SECTION HELPERS
   ============================================ */
.section-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: #B8860B;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #1A1A1A;
  line-height: 1.2;
}

.section-desc {
  font-size: 0.925rem;
  line-height: 1.75;
  color: #6B6B6B;
  max-width: 520px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #B8860B;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 8px;
  border: 2px solid #B8860B;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold:hover {
  background: #9A7209;
  border-color: #9A7209;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #B8860B;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 8px;
  border: 2px solid #B8860B;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: #B8860B;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #111111;
  color: rgba(255,255,255,0.75);
  padding: 64px 60px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo .logo-text { color: #FFFFFF; font-size: 1.3rem; }

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 220px;
}

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-col li + li { margin-top: 12px; }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s ease;
}

.footer-col a:hover { color: #D4A017; }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #B8860B;
  border-color: #B8860B;
  color: #FFFFFF;
}

/* ============================================
   HERO  (#home)
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 540px;
  overflow: hidden;
  background: #F5F5F0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 60px;
}

.hero-bg   { position: absolute; inset: 0; z-index: 0; }

.hero-img  { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(245,245,240,0.05) 0%, rgba(245,245,240,0.22) 55%, rgba(245,245,240,0.05) 100%);
}

.hero-card {
  position: relative;
  z-index: 2;
  background: #FDF5E0;
  border-radius: 16px;
  padding: 52px 48px 56px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 12px 48px rgba(0,0,0,0.10);
  animation: cardSlideIn 0.75s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.1s;
}

.hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  color: #6B6B6B;
  text-transform: uppercase;
  margin-bottom: 14px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.3s;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  line-height: 1.18;
  color: #B8860B;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.42s;
}

.hero-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.925rem;
  line-height: 1.7;
  color: #1A1A1A;
  opacity: 0.85;
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.54s;
}

.hero-btn {
  display: inline-block;
  background: #B8860B;
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  padding: 18px 52px;
  border-radius: 4px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.66s;
}

.hero-btn:hover {
  background: #9A7209;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,0.35);
}

@keyframes cardSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SHOP  (#shop)
   ============================================ */
.shop-main-full {
  padding: 48px 60px;
  background: #FFFFFF;
}

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

.product-card {
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid #E8E3D8;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: #FAF7F2;
  aspect-ratio: 1 / 1;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.badge-new  { background: #B8860B; color: #FFFFFF; }
.badge-sale { background: #D64545; color: #FFFFFF; }

.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .product-actions { transform: translateY(0); }

.add-to-cart-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: #B8860B;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.add-to-cart-btn:hover { color: #9A7209; }

.action-icons { display: flex; gap: 10px; }

.action-icons button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F0EBE0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #1A1A1A;
  transition: all 0.25s ease;
}

.action-icons button:hover {
  background: #B8860B;
  color: #FFFFFF;
}

.product-info     { padding: 18px 20px; }

.product-category {
  font-size: 0.75rem;
  color: #6B6B6B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.product-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.product-price  { display: flex; align-items: center; gap: 10px; }

.price-current {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #B8860B;
}

.price-old {
  font-size: 0.85rem;
  color: #6B6B6B;
  text-decoration: line-through;
}

.product-rating { display: flex; align-items: center; gap: 4px; margin-top: 6px; }

.stars        { color: #B8860B; font-size: 0.8rem; }
.rating-count { font-size: 0.75rem; color: #6B6B6B; }

.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 48px 0 16px;
}

.page-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1A1A1A;
  border: 1px solid #E8E3D8;
  background: #FFFFFF;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover,
.page-btn.active {
  background: #B8860B;
  color: #FFFFFF;
  border-color: #B8860B;
}

/* ============================================
   ABOUT  (#about)
   ============================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 88px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.story-text .section-title { margin-bottom: 20px; }

.story-text p {
  font-size: 0.925rem;
  line-height: 1.85;
  color: #444444;
  margin-bottom: 16px;
}

.story-img-wrap { position: relative; }

.story-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
}

.story-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #B8860B;
  color: #FFFFFF;
  padding: 24px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(184,134,11,0.35);
}

.story-img-badge .big-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
}

.story-img-badge .big-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.about-stats {
  background: #FAF7F2;
  border-top: 1px solid #E8E3D8;
  border-bottom: 1px solid #E8E3D8;
  padding: 56px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #B8860B;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { font-size: 0.875rem; color: #6B6B6B; font-weight: 500; }

.about-values { padding: 88px 60px; background: #FFFFFF; }

.about-values .section-header { text-align: center; margin-bottom: 56px; }

.about-values .section-header .section-desc { margin: 14px auto 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: #FAF7F2;
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid #E8E3D8;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #B8860B 0%, #D4A017 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(184,134,11,0.3);
}

.value-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.value-card p { font-size: 0.875rem; line-height: 1.75; color: #6B6B6B; }

.about-team { padding: 88px 60px; background: #FAF7F2; }

.about-team .section-header { text-align: center; margin-bottom: 56px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  border: 1px solid #E8E3D8;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

.team-img-wrap { position: relative; overflow: hidden; }

.team-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-img-wrap img { transform: scale(1.05); }

.team-social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(184,134,11,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.team-card:hover .team-social-overlay { opacity: 1; }

.team-social-overlay a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1rem;
  transition: background 0.25s ease;
}

.team-social-overlay a:hover { background: rgba(255,255,255,0.4); }

.team-info    { padding: 20px 16px; }

.team-info h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.team-info p { font-size: 0.8rem; color: #B8860B; font-weight: 600; letter-spacing: 0.06em; }

/* ============================================
   CONTACT  (#contact)
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}

.contact-info-panel {
  background: #FAF7F2;
  padding: 72px 56px;
  border-right: 1px solid #E8E3D8;
}

.contact-info-panel .section-title { margin-bottom: 12px; }

.contact-info-panel > p {
  font-size: 0.925rem;
  line-height: 1.75;
  color: #6B6B6B;
  margin-bottom: 48px;
}

.contact-info-items { display: flex; flex-direction: column; gap: 28px; }

.contact-info-item  { display: flex; gap: 18px; align-items: flex-start; }

.contact-info-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: #B8860B;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(184,134,11,0.25);
}

.contact-info-content h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.contact-info-content p { font-size: 0.875rem; color: #6B6B6B; line-height: 1.6; }

.contact-socials { display: flex; gap: 12px; margin-top: 48px; }

.contact-socials a {
  width: 42px;
  height: 42px;
  border: 2px solid #E8E3D8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #444444;
  transition: all 0.25s ease;
}

.contact-socials a:hover {
  background: #B8860B;
  border-color: #B8860B;
  color: #FFFFFF;
}

.contact-form-panel { padding: 72px 64px; background: #FFFFFF; }

.contact-form-panel .section-title { margin-bottom: 8px; }

.contact-form-panel > p { font-size: 0.9rem; color: #6B6B6B; margin-bottom: 40px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1A1A1A;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  padding: 14px 18px;
  border: 1.5px solid #E8E3D8;
  border-radius: 8px;
  background: #FAF7F2;
  color: #1A1A1A;
  outline: none;
  resize: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #BCBAB4; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #B8860B;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}

.form-group textarea { min-height: 130px; }
.form-submit { margin-top: 8px; }
.form-submit .btn-gold { padding: 16px 48px; font-size: 0.9rem; }

/* ============================================
   FAQ  (#faq)
   ============================================ */
.contact-faq { padding: 80px 60px; background: #FAF7F2; }

.contact-faq .section-header { text-align: center; margin-bottom: 48px; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #E8E3D8;
  cursor: pointer;
  transition: box-shadow 0.25s ease;
}

.faq-item:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.07); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.faq-icon   { color: #B8860B; font-size: 1.2rem; flex-shrink: 0; }

.faq-answer { font-size: 0.875rem; line-height: 1.75; color: #6B6B6B; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .navbar             { padding: 0 32px; }
  .nav-links          { gap: 28px; }
  .shop-main-full     { padding: 32px; }
  .about-story        { grid-template-columns: 1fr; gap: 48px; padding: 64px 32px; }
  .about-stats        { grid-template-columns: repeat(2, 1fr); padding: 48px 32px; }
  .contact-layout     { grid-template-columns: 1fr; }
  .contact-info-panel { border-right: none; border-bottom: 1px solid #E8E3D8; padding: 48px 32px; }
  .contact-form-panel { padding: 48px 32px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .navbar          { padding: 0 20px; }
  .nav-links       { display: none; }
  .hero            { padding: 20px; align-items: flex-end; justify-content: center; }
  .hero-card       { padding: 32px 28px 36px; margin-bottom: 32px; max-width: 100%; }
  .product-grid    { grid-template-columns: repeat(2, 1fr); }
  .values-grid     { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr 1fr; }
  .about-values, .about-team, .contact-faq { padding: 56px 20px; }
  .footer          { padding: 48px 20px 24px; }
  .footer-grid     { grid-template-columns: 1fr; gap: 24px; }
  .form-row        { grid-template-columns: 1fr; }
  .faq-grid        { grid-template-columns: 1fr; }
  .page-banner     { padding: 48px 20px; }
  .shop-main-full  { padding: 20px; }
}

@media (max-width: 480px) {
  .team-grid   { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; padding: 36px 20px; }
}
