/* ============================================
   HER CHARM — SHARED STYLESHEET
   Premium Women's Accessories Brand
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --blush: #f5d6d6;
  --blush-light: #fdf5f5;
  --blush-mid: #eec8c8;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #a8843e;
  --cream: #faf7f2;
  --beige: #f0e8dc;
  --charcoal: #2c2624;
  --mid-gray: #7a6f6c;
  --light-gray: #e8e2df;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --shadow-sm: 0 2px 12px rgba(44,38,36,0.07);
  --shadow-md: 0 6px 28px rgba(44,38,36,0.11);
  --shadow-lg: 0 16px 48px rgba(44,38,36,0.15);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold-dark); }

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.85rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  padding: 0.8rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.85rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: var(--transition);
  border: none;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* --- Container --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.logo span { color: var(--gold); font-style: italic; }

.main-nav { display: flex; align-items: center; gap: 2.2rem; }
.main-nav a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  transition: var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.main-nav a:hover { color: var(--charcoal); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--charcoal); }

.header-actions { display: flex; align-items: center; gap: 1.2rem; }
.header-actions a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  transition: var(--transition);
}
.header-actions a:hover { color: var(--gold-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}
.mobile-nav a:hover { color: var(--gold-dark); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 1.8rem;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.72);
  padding: 5rem 2rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1240px;
  margin: 0 auto 3.5rem;
}
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.55); max-width: 260px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col address { font-style: normal; font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.9; }
.footer-col address a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col address a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.8rem;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ============================================
   PAGE HERO (Interior pages)
   ============================================ */
.page-hero {
  background: var(--blush-light);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--blush);
  opacity: 0.45;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.3;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--charcoal);
  position: relative;
  z-index: 1;
}
.page-hero p {
  margin-top: 0.75rem;
  color: var(--mid-gray);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   HOME HERO
   ============================================ */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 5rem;
  background: var(--blush-light);
  position: relative;
}
.hero-content::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 200px; height: 200px;
  border-radius: 50% 0 0 0;
  background: var(--blush);
  opacity: 0.5;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold-dark); }
.hero-tagline {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 360px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}
.hero-image:hover img { transform: scale(1.04); }
.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-badge-icon { font-size: 1.4rem; }
.hero-badge-text { font-size: 0.78rem; }
.hero-badge-text strong { display: block; font-weight: 600; color: var(--charcoal); }
.hero-badge-text span { color: var(--mid-gray); }

/* ============================================
   HOME — MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: var(--charcoal);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding-right: 3rem;
}
.marquee-track span::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   HOME — FEATURED PRODUCTS
   ============================================ */
.section { padding: 6rem 2rem; }
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p {
  color: var(--mid-gray);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1240px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--beige);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,38,36,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span {
  background: var(--white);
  color: var(--charcoal);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-info { padding: 1.2rem 1.4rem 1.5rem; }
.product-category {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}
.product-desc {
  font-size: 0.8rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gold-dark);
}

/* ============================================
   HOME — CATEGORIES
   ============================================ */
.categories-section {
  background: var(--beige);
  padding: 6rem 2rem;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,38,36,0.75) 0%, transparent 55%);
}
.category-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: var(--white);
}
.category-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.category-info p { font-size: 0.75rem; opacity: 0.75; letter-spacing: 0.08em; }
.category-link {
  margin-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ============================================
   HOME — WHY CHOOSE US
   ============================================ */
.why-section { padding: 6rem 2rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1240px;
  margin: 3rem auto 0;
}
.why-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blush-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold-light); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.85rem; color: var(--mid-gray); line-height: 1.7; }

/* ============================================
   HOME — TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--blush-light); padding: 6rem 2rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blush);
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info strong { display: block; font-size: 0.85rem; font-weight: 600; }
.author-info span { font-size: 0.75rem; color: var(--mid-gray); }

/* ============================================
   HOME — QUOTE BANNER
   ============================================ */
.quote-banner {
  background: var(--charcoal);
  padding: 5rem 2rem;
  text-align: center;
}
.quote-banner blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto 1rem;
  line-height: 1.45;
}
.quote-banner blockquote::before { content: '\201C'; color: var(--gold); font-size: 3rem; line-height: 0.5; vertical-align: -0.5rem; margin-right: 0.25rem; }
.quote-banner blockquote::after { content: '\201D'; color: var(--gold); font-size: 3rem; line-height: 0.5; vertical-align: -0.5rem; margin-left: 0.25rem; }
.quote-banner cite { font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.15em; text-transform: uppercase; }

/* ============================================
   SHOP / NEW ARRIVALS — FILTER BAR
   ============================================ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
}
.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  border: 1.5px solid var(--light-gray);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.about-story img {
  border-radius: 20px;
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-story-text .section-label { margin-bottom: 0.75rem; }
.about-story-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.2rem; }
.about-story-text p { color: var(--mid-gray); line-height: 1.9; margin-bottom: 1rem; font-size: 0.95rem; }

.values-section { background: var(--beige); padding: 6rem 2rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.value-card p { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.8; }

.team-section { padding: 6rem 2rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto 0;
}
.team-card { text-align: center; }
.team-card img {
  width: 100%; height: 320px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.team-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.25rem; }
.team-card span { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.contact-info .section-label { margin-bottom: 0.75rem; }
.contact-info h2 { font-size: 2.4rem; margin-bottom: 1.2rem; }
.contact-info p { color: var(--mid-gray); line-height: 1.9; margin-bottom: 2rem; font-size: 0.95rem; }

.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--blush-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-detail-text strong { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact-detail-text span { font-size: 0.85rem; color: var(--mid-gray); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 2.8rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { font-size: 1.6rem; margin-bottom: 1.8rem; }

.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================
   PRIVACY / TERMS
   ============================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.legal-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--charcoal);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--mid-gray); line-height: 1.9; margin-bottom: 1rem; font-size: 0.92rem; }
.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; list-style: disc; }
.legal-content ul li { color: var(--mid-gray); font-size: 0.92rem; line-height: 1.8; margin-bottom: 0.4rem; }
.legal-content .last-updated {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  display: block;
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,38,36,0.55);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  border-radius: 24px;
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  border: none;
}
.modal-close:hover { background: var(--blush-mid); }

.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-img {
  aspect-ratio: 1;
  background: var(--beige);
  border-radius: 24px 0 0 24px;
  overflow: hidden;
}
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-details { padding: 2.5rem 2rem 2rem; }
.modal-category {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.modal-title { font-size: 1.8rem; margin-bottom: 0.5rem; }
.modal-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-dark); margin-bottom: 1.2rem; }
.modal-desc { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.8; margin-bottom: 2rem; }
.modal-actions { display: flex; flex-direction: column; gap: 0.75rem; }

/* Order popup */
.order-popup {
  background: var(--white);
  border-radius: 24px;
  max-width: 420px;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.94);
  transition: transform 0.3s ease;
}
.modal-overlay.open .order-popup { transform: scale(1); }
.order-popup-icon { font-size: 3rem; margin-bottom: 1rem; }
.order-popup h3 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.order-popup p { font-size: 0.88rem; color: var(--mid-gray); line-height: 1.7; margin-bottom: 1.8rem; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 5rem 3rem; }
  .hero-image { height: 55vw; min-height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story img { height: 340px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-img { border-radius: 24px 24px 0 0; aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { padding: 3.5rem 1.5rem; }
  .section { padding: 4rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
