/* ============================================================
   DRAPE & CO — Premium Curtains Store
   style.css — Shared Stylesheet
   ============================================================ */

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

/* --- CSS Variables --- */
:root {
  --color-white: #FAFAF8;
  --color-beige: #F2EDE6;
  --color-beige-dark: #E8E0D5;
  --color-sand: #D4C9B8;
  --color-gold: #B8975A;
  --color-gold-light: #D4B87A;
  --color-charcoal: #2C2C2C;
  --color-gray: #6B6B6B;
  --color-gray-light: #9B9B9B;
  --color-border: #E2DAD0;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 12px rgba(44,44,44,0.08);
  --shadow-md: 0 8px 32px rgba(44,44,44,0.12);
  --shadow-lg: 0 24px 64px rgba(44,44,44,0.16);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p { font-size: 0.95rem; color: var(--color-gray); }

/* --- Layout Utilities --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--color-gray);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 2.4rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-charcoal);
  color: var(--color-white);
  border: 1.5px solid var(--color-charcoal);
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-charcoal);
}

.btn-outline {
  background: transparent;
  color: var(--color-charcoal);
  border: 1.5px solid var(--color-charcoal);
}
.btn-outline:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-white);
  border: 1.5px solid var(--color-gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--color-gold);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-charcoal);
  border: 1.5px solid var(--color-white);
}
.btn-white:hover {
  background: transparent;
  color: var(--color-white);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  letter-spacing: 0.04em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  font-size: 0.55rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--color-charcoal); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.header-cta {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  background: var(--color-charcoal);
  color: var(--color-white);
  transition: var(--transition);
}
.header-cta:hover { background: var(--color-gold); }

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

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-charcoal);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--color-gold); }
.mobile-nav-close {
  position: absolute;
  top: 1.4rem;
  right: 2rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-gray);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-charcoal);
  color: var(--color-sand);
  padding: 5rem 0 2rem;
}

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

.footer-brand .logo { color: var(--color-white); }
.footer-brand .logo span { color: var(--color-gold-light); }

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(212,201,184,0.75);
  line-height: 1.8;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.8rem;
  color: var(--color-sand);
}
.social-icon:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(184,151,90,0.12);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.2rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(212,201,184,0.75);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-gold-light); }

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(212,201,184,0.75);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.footer-contact strong { color: var(--color-sand); font-weight: 500; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(212,201,184,0.5);
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  color: rgba(212,201,184,0.5);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--color-gold-light); }

/* ============================================================
   HERO — HOME PAGE
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-beige);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=1920&q=90');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(44,44,44,0.62) 0%,
    rgba(44,44,44,0.28) 50%,
    rgba(44,44,44,0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 2rem;
  margin-left: calc((100vw - 1280px)/2 + 2rem);
  animation: heroFadeUp 1s ease 0.3s both;
}

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

.hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.2rem;
  display: block;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.12;
  margin-bottom: 1.4rem;
}

.hero-title em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(250,250,248,0.82);
  max-width: 420px;
  margin-bottom: 2.4rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  animation: bounce 2s ease infinite 2s;
}
.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.6);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(250,250,248,0.5), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   FEATURED PRODUCTS — HOME
   ============================================================ */
.featured-section { background: var(--color-white); }

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

.product-card {
  cursor: pointer;
  position: relative;
  group: true;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-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.06);
}

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,44,44,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-overlay { opacity: 1; }

.product-overlay-btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  background: var(--color-white);
  color: var(--color-charcoal);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.product-overlay-btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.product-info { padding: 1rem 0 0.5rem; }

.product-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
}

.product-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.04em;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--color-beige); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color-gold);
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--color-charcoal);
}

.why-card p {
  font-size: 0.875rem;
  color: var(--color-gray);
  line-height: 1.8;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--color-charcoal); }
.testimonials-section .section-label { color: var(--color-gold-light); }
.testimonials-section .section-title { color: var(--color-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.2rem;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--color-gold); }

.testimonial-stars {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(250,250,248,0.88);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.testimonial-author {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.testimonial-location {
  font-size: 0.75rem;
  color: rgba(212,201,184,0.5);
}

/* ============================================================
   BANNER / CTA STRIP
   ============================================================ */
.banner-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--color-beige-dark);
  text-align: center;
}
.banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1600&q=85');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.banner-content { position: relative; z-index: 1; }
.banner-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}
.banner-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 7rem 0 5rem;
  text-align: center;
  background: var(--color-beige);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1616594039964-ae9021a400a0?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

.breadcrumb {
  font-size: 0.78rem;
  color: var(--color-gray-light);
  letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--color-gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 3rem;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
}

.filter-tab {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border: 1px solid var(--color-border);
  color: var(--color-gray);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}

.products-count {
  font-size: 0.82rem;
  color: var(--color-gray-light);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

/* ============================================================
   NEW ARRIVALS PAGE
   ============================================================ */
.new-arrivals-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  margin-bottom: 5rem;
}
.new-arrivals-highlight .highlight-img {
  background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb3?w=900&q=85');
  background-size: cover;
  background-position: center;
}
.highlight-content {
  background: var(--color-beige);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}
.highlight-content h2 { margin-bottom: 1rem; font-weight: 300; }
.highlight-content p { margin-bottom: 2rem; line-height: 1.9; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid var(--color-gold);
  z-index: -1;
}

.about-text h2 {
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.about-text p {
  margin-bottom: 1.2rem;
  line-height: 1.9;
  font-size: 0.95rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.stat-item h3 {
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.team-section { background: var(--color-beige); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card { text-align: center; }

.team-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1.2rem;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.team-card:hover .team-img { filter: grayscale(0); }

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.team-card p { font-size: 0.8rem; color: var(--color-gold); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
}

.contact-info h2 { font-weight: 300; margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2.5rem; line-height: 1.9; }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1rem;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: var(--color-charcoal);
}

.contact-detail-text p { font-size: 0.9rem; margin: 0; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
}

.form-group textarea { min-height: 120px; }

/* ============================================================
   LEGAL PAGES (Privacy & Terms)
   ============================================================ */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.legal-content h2 {
  font-size: 1.6rem;
  font-weight: 300;
  margin: 2.5rem 0 0.8rem;
  color: var(--color-charcoal);
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 1.8rem 0 0.6rem;
  color: var(--color-charcoal);
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1rem;
  color: var(--color-gray);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.9;
  margin-bottom: 0.4rem;
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--color-gray-light);
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-border);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,44,44,0.72);
  z-index: 1000;
  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(--color-white);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--color-charcoal);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 1;
  border: none;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--color-gold); }

.modal-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.modal-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.modal-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.modal-price {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
  font-family: var(--font-serif);
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

.modal-specs {
  border-top: 1px solid var(--color-border);
  padding-top: 1.2rem;
  margin-bottom: 1.6rem;
}

.modal-spec {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--color-border);
}
.modal-spec span:first-child { color: var(--color-gray); }
.modal-spec span:last-child  { font-weight: 500; color: var(--color-charcoal); }

/* Order Popup */
.order-popup {
  background: var(--color-white);
  max-width: 420px;
  width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  transform: scale(0.94);
  transition: transform 0.3s ease;
}
.modal-overlay.open .order-popup { transform: scale(1); }

.order-popup-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

.order-popup h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

.order-popup p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.order-popup .btn { width: 100%; text-align: center; }

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

@media (max-width: 900px) {
  .nav-links, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { margin-left: 2rem; }
  .why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .new-arrivals-highlight { grid-template-columns: 1fr; }
  .new-arrivals-highlight .highlight-img { min-height: 320px; }
  .modal { grid-template-columns: 1fr; }
  .modal-img { min-height: 260px; max-height: 320px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .filter-tabs { flex-wrap: wrap; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .shop-controls { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .highlight-content { padding: 2.5rem 1.5rem; }
  .about-img-wrap::before { display: none; }
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.divider {
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  margin: 1.5rem auto;
}

.divider-left { margin: 1.5rem 0; }

.tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

/* Form success */
.form-success {
  display: none;
  background: #f0f7f0;
  border: 1px solid #a8d5a2;
  color: #2d6a27;
  padding: 1rem 1.4rem;
  font-size: 0.88rem;
  margin-top: 0.5rem;
}
.form-success.show { display: block; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--color-charcoal);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  font-size: 1rem;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover { background: var(--color-gold); }
