/* ============================================================
   SK GLASS & MIRROR — STYLESHEET
   Theme: Modern with a vintage/artisanal edge
   ============================================================ */

:root {
  --cream: #F7F4EE;
  --cream-dark: #EDE8DE;
  --charcoal: #1C1C1A;
  --charcoal-mid: #3A3A37;
  --charcoal-light: #6B6B66;
  --gold: #9B7C3E;
  --gold-light: #C4A05E;
  --gold-pale: #F0E8D5;
  --white: #FFFEFB;
  --border: rgba(28,28,26,0.1);
  --border-strong: rgba(28,28,26,0.2);
  --shadow: 0 2px 24px rgba(28,28,26,0.08);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
}

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

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

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(247,244,238,0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.logo-icon { color: var(--gold); font-size: 1.1rem; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal-mid);
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: all 0.2s;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(155,124,62,0.08) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(155,124,62,0.05) 0%, transparent 50%);
}
/* Decorative geometric elements */
.hero-bg::before {
  content: '◈';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28vw;
  color: rgba(155,124,62,0.04);
  line-height: 1;
  pointer-events: none;
  font-family: serif;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  bottom: 60px;
  right: max(24px, calc(50% - 580px));
  text-align: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.hero-badge span { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; line-height: 1; color: var(--gold); }
.hero-badge small { font-size: 0.65rem; letter-spacing: 0.06em; color: var(--charcoal-light); text-align: center; }

/* ============================================================
   MARQUEE
============================================================ */
.marquee-wrap {
  overflow: hidden;
  background: var(--charcoal);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.marquee {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee span {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.7);
}
.marquee .dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS
============================================================ */
.section { padding: 80px 0; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
}
.section-sub {
  color: var(--charcoal-light);
  font-size: 1rem;
  font-weight: 300;
  margin-top: 4px;
}
.view-all {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}
.view-all:hover { text-decoration: underline; }

/* ============================================================
   CATEGORIES
============================================================ */
.categories-section { background: var(--cream); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2px;
}
.category-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  display: block;
  transition: background 0.25s;
  border: 1px solid var(--border);
}
.category-card:hover { background: var(--cream); }
.category-card:hover .cat-arrow { transform: translateX(4px); color: var(--gold); }
.cat-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.category-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.category-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.6;
  font-weight: 300;
}
.cat-arrow {
  display: block;
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--charcoal-light);
  transition: all 0.2s;
}

/* ============================================================
   PRODUCT CARDS
============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-placeholder {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
}
.product-card-body { padding: 20px; }
.product-card-cat {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-card-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.product-card-desc {
  font-size: 0.875rem;
  color: var(--charcoal-light);
  margin-bottom: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.stars { display: inline-flex; gap: 1px; }
.star { font-size: 0.8rem; color: var(--border-strong); }
.star.filled { color: var(--gold); }
.rating-count { font-size: 0.78rem; color: var(--charcoal-light); margin-left: 4px; }
.product-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 600;
}

/* ============================================================
   STRIP / WHY US
============================================================ */
.strip-section {
  background: var(--charcoal);
  padding: 56px 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.strip-icon { font-size: 1.5rem; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.strip-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}
.strip-item p { font-size: 0.875rem; color: rgba(247,244,238,0.55); font-weight: 300; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { background: var(--cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--border);
}
.testimonial-stars { margin-bottom: 14px; }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal-mid);
  margin-bottom: 20px;
  line-height: 1.6;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 2px; }
.testimonial-meta strong { font-size: 0.875rem; font-weight: 500; }
.testimonial-meta span { font-size: 0.78rem; color: var(--gold); }

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section { padding: 80px 0; background: var(--gold-pale); }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  margin-bottom: 6px;
}
.cta-inner p { color: var(--charcoal-light); font-weight: 300; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--charcoal); padding: 64px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-text, .footer-brand .logo-icon { color: var(--cream); }
.footer-brand p { font-size: 0.875rem; color: rgba(247,244,238,0.45); font-weight: 300; line-height: 1.6; }
.footer-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(247,244,238,0.55);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  font-size: 0.78rem;
  color: rgba(247,244,238,0.3);
}

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero-sm {
  background: var(--cream);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  border-bottom: 1px solid var(--border);
}
.page-hero-sm .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.page-hero-sm h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: 12px;
}
.page-hero-sm p { color: var(--charcoal-light); font-weight: 300; max-width: 540px; }

/* ============================================================
   PRODUCTS PAGE
============================================================ */
.products-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; }

.filter-sidebar { padding-top: 4px; }
.filter-heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.filter-group { margin-bottom: 28px; }
.filter-group h4 {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.filter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--charcoal-mid);
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.15s;
}
.filter-label:hover { color: var(--charcoal); }
.filter-label input { accent-color: var(--gold); }

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.results-count { font-size: 0.875rem; color: var(--charcoal-light); }
.sort-wrap { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--charcoal-light); }
.sort-wrap select {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  padding: 6px 10px;
  border: 1px solid var(--border-strong);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
}
.no-results { font-size: 0.9rem; color: var(--charcoal-light); padding: 40px 0; }
.no-results button { color: var(--gold); background: none; border: none; cursor: pointer; text-decoration: underline; }

/* ============================================================
   PRODUCT DETAIL
============================================================ */
.breadcrumb-wrap { padding: 16px 0; border-bottom: 1px solid var(--border); margin-top: var(--nav-h); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.825rem; color: var(--charcoal-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--border-strong); }

.product-detail-section { padding-top: 40px; }
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-images .main-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.product-images .main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-placeholder-lg { font-size: 6rem; color: var(--gold); opacity: 0.3; }
.thumb-row { display: flex; gap: 8px; }
.thumb {
  width: 80px;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  border: 1.5px solid var(--border);
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}
.thumb.active, .thumb:hover { opacity: 1; border-color: var(--gold); }

.product-cat-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.product-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.1;
}
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.rating-avg { font-weight: 500; font-size: 0.9rem; }
.product-price-block { margin-bottom: 24px; }
.product-price-lg {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.product-price-note { font-size: 0.82rem; color: var(--charcoal-light); }
.product-description { font-size: 0.95rem; color: var(--charcoal-mid); line-height: 1.75; margin-bottom: 28px; font-weight: 300; }
.product-description p { margin-bottom: 12px; }
.product-actions { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.product-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.badge { font-size: 0.75rem; padding: 4px 12px; border-radius: 2px; }
.badge-green { background: #e8f3e2; color: #2d6e1f; }
.badge-orange { background: #fef0e3; color: #a0530a; }
.badge-neutral { background: var(--cream); color: var(--charcoal-mid); border: 1px solid var(--border); }

/* TABS */
.specs-section { padding-top: 0; }
.tabs-wrap { border-top: 1px solid var(--border); }
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); }
.tab {
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  color: var(--charcoal-light);
  transition: all 0.2s;
  margin-bottom: -1px;
}
.tab:hover { color: var(--charcoal); }
.tab.active { color: var(--charcoal); border-bottom-color: var(--gold); }
.tab-content { padding: 40px 0; }
.tab-content.hidden { display: none; }

/* SPECS TABLE */
.specs { width: 100%; border-collapse: collapse; }
.specs th, .specs td { padding: 14px 0; border-bottom: 1px solid var(--border); text-align: left; font-size: 0.9rem; }
.specs th { font-weight: 400; color: var(--charcoal-light); width: 200px; font-family: var(--font-sans); }
.specs td { color: var(--charcoal); }

/* REVIEWS */
.reviews-wrap { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.review-card { padding: 24px; border: 1px solid var(--border); }
.review-header { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; flex-wrap: wrap; }
.reviewer-name { font-weight: 500; font-size: 0.9rem; }
.review-date { font-size: 0.8rem; color: var(--charcoal-light); margin-left: auto; }
.review-text { font-size: 0.9rem; color: var(--charcoal-mid); line-height: 1.65; font-weight: 300; }

.review-form-wrap h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.star-picker { display: flex; gap: 4px; }
.star-picker span {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--border-strong);
  transition: color 0.1s;
  line-height: 1;
}
.star-picker span.hovered, .star-picker span.selected { color: var(--gold); }

/* FAQs */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-size: 0.95rem;
  font-weight: 400;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-toggle { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; }
.faq-a { padding: 0 0 18px; font-size: 0.9rem; color: var(--charcoal-light); line-height: 1.65; }

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }
.lead-text { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 300; color: var(--charcoal); line-height: 1.65; margin-bottom: 20px; }
.about-text p { font-size: 0.95rem; color: var(--charcoal-light); margin-bottom: 16px; font-weight: 300; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 40px; }
.stat {
  background: var(--cream);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat strong { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; color: var(--gold); }
.stat span { font-size: 0.8rem; color: var(--charcoal-light); text-transform: uppercase; letter-spacing: 0.06em; }

.about-image-placeholder {
  background: var(--cream);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gold);
}
.about-image-placeholder span { font-size: 3rem; opacity: 0.4; }
.about-image-placeholder p { font-family: var(--font-serif); font-size: 1.1rem; color: var(--charcoal-light); }
.about-image-placeholder small { font-size: 0.78rem; color: var(--charcoal-light); opacity: 0.6; }

.values-card { background: var(--charcoal); padding: 28px; }
.values-card h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; color: var(--cream); margin-bottom: 20px; }
.values-list { display: flex; flex-direction: column; gap: 12px; }
.values-list li { display: flex; align-items: center; gap: 12px; font-size: 0.875rem; color: rgba(247,244,238,0.65); }
.values-list li span { color: var(--gold); }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 64px; }
.contact-form-wrap h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 28px; }

.form-row { display: flex; gap: 16px; }
.form-row.two-col > * { flex: 1; }
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--charcoal-mid); letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px;
  border: 1px solid var(--border-strong);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.req { color: var(--gold); }
.form-note { font-size: 0.8rem; color: var(--charcoal-light); margin-top: 12px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #e8f3e2;
  color: #2d6e1f;
  font-size: 0.9rem;
  margin-top: 16px;
  border-radius: 2px;
}

.contact-info-card {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.contact-info-card h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 10px; }
.contact-info-card p { font-size: 0.9rem; color: var(--charcoal-light); font-weight: 300; }
.contact-info-card a { color: var(--gold); }
.hours { margin-top: 8px; font-size: 0.85rem; }
.whatsapp-btn { margin-top: 12px; display: inline-flex; }

.map-placeholder {
  background: var(--cream);
  border: 1px solid var(--border);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.map-placeholder span { font-size: 1.5rem; }
.map-placeholder p { font-size: 0.9rem; color: var(--charcoal-mid); }
.map-placeholder small { font-size: 0.75rem; color: var(--charcoal-light); }

/* MISC */
.muted { color: var(--charcoal-light); font-size: 0.9rem; }
.loading-state { padding: 40px; color: var(--charcoal-light); }
.eyebrow { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .product-detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-side { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-image-placeholder { aspect-ratio: 16/9; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }

  .hero-title { font-size: 3rem; }
  .hero-badge { display: none; }
  .section { padding: 56px 0; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row.two-col { flex-direction: column; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .about-side { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 400px) {
  .product-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
}
