/* ===== STOREFRONT.CSS =====
   All styles for inner pages: nav, catalog, product, about, contact.
   Builds on the tokens defined in theme.css.
   ============================ */

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 100px;
  padding: 12px 28px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 112, 63, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--accent-soft);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-size: 0.85rem;
  padding: 9px 20px;
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-large {
  font-size: 1rem;
  padding: 14px 36px;
}
.btn-full {
  width: 100%;
  text-align: center;
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.closing-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ===== COLLECTION CARD LINKS ===== */
.collection-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.collection-card-link:hover .collection-cta {
  color: var(--accent);
}

.collection-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--fg-light);
  transition: color 0.2s;
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(250, 246, 241, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 112, 63, 0.1);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-brand-clay { color: var(--accent); }
.nav-brand-bloom { color: var(--fg); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--fg-light);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--fg);
  background: var(--bg-warm);
}

.nav-chevron {
  font-size: 0.7rem;
  opacity: 0.6;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--accent-soft);
  border-radius: 12px;
  padding: 8px;
  min-width: 160px;
  list-style: none;
  box-shadow: 0 8px 32px rgba(44, 36, 32, 0.12);
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-item {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--fg-light);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-item:hover {
  background: var(--bg-warm);
  color: var(--fg);
}
.nav-dropdown-ember:hover { color: var(--accent); }
.nav-dropdown-petal:hover { color: var(--clay-rose); }
.nav-dropdown-moss:hover { color: var(--clay-sage); }

/* Mobile-only collection links (shown only in hamburger menu) */
.nav-mobile-only { display: none; }

.nav-link-sub {
  font-size: 0.85rem;
  padding: 7px 20px;
  opacity: 0.8;
}
.nav-link-ember:hover { color: var(--accent) !important; }
.nav-link-petal:hover { color: var(--clay-rose) !important; }
.nav-link-moss:hover { color: var(--clay-sage) !important; }

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Offset page content so nav doesn't overlap */
.page-inner {
  padding-top: 72px;
}
.page-home .hero {
  padding-top: 120px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 80px 24px 64px;
  text-align: center;
  background: linear-gradient(170deg, var(--bg) 0%, var(--bg-warm) 60%, #ede0d2 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.page-hero .lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== COLLECTION BADGES ===== */
.collection-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
  text-decoration: none;
}
.collection-badge-ember { background: rgba(196, 112, 63, 0.12); color: var(--accent); border: 1px solid rgba(196, 112, 63, 0.3); }
.collection-badge-petal { background: rgba(212, 135, 127, 0.12); color: var(--clay-rose); border: 1px solid rgba(212, 135, 127, 0.3); }
.collection-badge-moss  { background: rgba(138, 158, 130, 0.12); color: var(--clay-sage); border: 1px solid rgba(138, 158, 130, 0.3); }

/* ===== PRODUCT SWATCHES (visual placeholder until real photos) ===== */
.product-card-swatch {
  width: 100%;
  height: 180px;
  border-radius: 12px 12px 0 0;
  position: relative;
  overflow: hidden;
}
.product-swatch-ember {
  background: linear-gradient(135deg, var(--accent) 0%, var(--clay-ochre) 60%, var(--accent-soft) 100%);
}
.product-swatch-petal {
  background: linear-gradient(135deg, var(--clay-rose) 0%, #e8a89e 50%, var(--accent-soft) 100%);
}
.product-swatch-moss {
  background: linear-gradient(135deg, var(--clay-sage) 0%, var(--clay-slate) 60%, #7a9488 100%);
}

/* Noise texture overlay for tactile feel */
.product-card-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--white);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(196, 112, 63, 0.08);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(44, 36, 32, 0.12);
}

.product-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-meta {
  margin-bottom: 8px;
}
.product-category {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fg-light);
  opacity: 0.7;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--fg);
  line-height: 1.3;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--fg-light);
  line-height: 1.6;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--bg-warm);
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
}

.product-cta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--fg);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 40px;
  z-index: 2;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.product-grid-sm {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* ===== CATALOG PAGE ===== */
.catalog-hero {
  padding-bottom: 56px;
}

.catalog-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--bg-warm);
}
.catalog-section:last-of-type {
  border-bottom: none;
}

.catalog-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 24px;
  gap: 24px;
}

.catalog-section-title h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 4px;
}
.catalog-section-title p {
  color: var(--fg-light);
  font-size: 0.95rem;
}

/* ===== COLLECTION PAGE ===== */
.collection-hero {
  padding-bottom: 56px;
}

.collection-products {
  padding: 64px 0 80px;
}

.collection-nav-strip {
  text-align: center;
  padding: 48px 24px 64px;
  background: var(--bg-warm);
}
.collection-nav-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 16px;
}
.collection-nav-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.collection-pill {
  display: inline-block;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 40px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1.5px solid;
  transition: all 0.2s;
}
.collection-pill-ember { color: var(--accent); border-color: var(--accent); }
.collection-pill-ember:hover { background: var(--accent); color: var(--white); }
.collection-pill-petal { color: var(--clay-rose); border-color: var(--clay-rose); }
.collection-pill-petal:hover { background: var(--clay-rose); color: var(--white); }
.collection-pill-moss  { color: var(--clay-sage); border-color: var(--clay-sage); }
.collection-pill-moss:hover { background: var(--clay-sage); color: var(--white); }
.collection-pill-all { color: var(--fg-light); border-color: var(--fg-light); }
.collection-pill-all:hover { background: var(--fg); color: var(--white); border-color: var(--fg); }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 40px;
  align-items: start;
}

.product-visual {
  position: sticky;
  top: 100px;
}

.product-swatch-large {
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.product-swatch-large.product-swatch-ember {
  background: linear-gradient(135deg, var(--accent) 0%, var(--clay-ochre) 60%, var(--accent-soft) 100%);
}
.product-swatch-large.product-swatch-petal {
  background: linear-gradient(135deg, var(--clay-rose) 0%, #e8a89e 50%, var(--accent-soft) 100%);
}
.product-swatch-large.product-swatch-moss {
  background: linear-gradient(135deg, var(--clay-sage) 0%, var(--clay-slate) 60%, #7a9488 100%);
}
.product-swatch-large::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.product-visual-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-category-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-light);
}

.product-info {
  padding-top: 8px;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 12px;
  margin-top: 12px;
}

.product-price-large {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.product-description {
  font-size: 1.05rem;
  color: var(--fg-light);
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-story {
  background: var(--bg-warm);
  border-left: 3px solid var(--accent-soft);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.product-story-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.product-story p {
  font-size: 0.95rem;
  color: var(--fg-light);
  line-height: 1.7;
  font-style: italic;
}

.product-details-list {
  margin-bottom: 32px;
  border-top: 1px solid var(--bg-warm);
}
.product-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-warm);
  font-size: 0.9rem;
}
.detail-label {
  color: var(--fg-light);
  font-weight: 400;
}
.detail-value {
  color: var(--fg);
  font-weight: 400;
  text-align: right;
}
.detail-value a {
  color: var(--accent);
  text-decoration: none;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.product-badge-large {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
}

.product-note {
  font-size: 0.82rem;
  color: var(--fg-light);
  opacity: 0.8;
  line-height: 1.6;
  font-style: italic;
}

/* Related products */
.related-products {
  padding: 64px 0 80px;
  background: var(--bg-warm);
}
.related-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}
.related-title em {
  font-style: italic;
  color: var(--accent);
}

/* ===== ABOUT PAGE ===== */
.about-story {
  padding: 80px 24px;
  background: var(--white);
}
.about-story-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 40px;
}
.about-story-line {
  background: linear-gradient(to bottom, var(--accent), var(--clay-rose), var(--clay-sage));
  border-radius: 2px;
}
.about-story-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}
.about-story-content p {
  font-size: 1.05rem;
  color: var(--fg-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-process-section {
  padding: 100px 24px;
  background: var(--fg);
  color: var(--bg);
}

.about-values {
  padding: 100px 24px;
  background: var(--bg);
}
.about-values-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.about-values h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 48px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.value-item {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(196, 112, 63, 0.08);
}
.value-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.value-item h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.value-item p {
  font-size: 0.92rem;
  color: var(--fg-light);
  line-height: 1.7;
}

.about-cta {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(170deg, var(--bg-warm) 0%, var(--bg) 100%);
}
.about-cta h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.about-cta p {
  color: var(--fg-light);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.about-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 64px 24px 100px;
}
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--bg-warm);
}
.contact-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-block h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.contact-block p {
  font-size: 0.95rem;
  color: var(--fg-light);
  line-height: 1.7;
  margin-bottom: 8px;
}
.contact-turnaround {
  font-size: 0.82rem !important;
  color: var(--accent) !important;
  font-style: italic;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(196, 112, 63, 0.1);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-row-two .form-field {
  margin-bottom: 0;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--accent-soft);
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--fg-light);
  opacity: 0.5;
}

.form-error-banner {
  background: rgba(212, 135, 127, 0.15);
  border: 1px solid var(--clay-rose);
  color: #a85048;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.contact-success {
  text-align: center;
  padding: 20px 0;
}
.contact-success-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.contact-success h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.contact-success p {
  color: var(--fg-light);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ===== FOOTER (extended) ===== */
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  text-align: center;
}
.footer-tagline {
  color: var(--fg-light);
  font-size: 0.8rem;
  margin-top: 4px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--fg-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-light);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
  }
  .product-visual {
    position: static;
  }
  .product-swatch-large {
    padding-bottom: 60%;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 14px 24px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--accent-soft);
    box-shadow: 0 8px 24px rgba(44,36,32,0.1);
    gap: 4px;
  }
  .nav-open .nav-links {
    display: flex;
  }
  .nav-mobile-only {
    display: list-item;
  }
  .nav-mobile-toggle {
    display: flex;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--bg-warm);
    display: none !important; /* simplified for mobile — dropdown items shown inline */
  }
  .nav-link-collections {
    display: none; /* hide collections dropdown on mobile; links are all in the main list */
  }
  /* Inject collection links for mobile */
  .nav-links::after {
    content: '';
  }

  .catalog-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .form-row-two {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .hero-actions,
  .closing-actions,
  .about-cta-actions,
  .product-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 60px 20px 48px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .catalog-section {
    padding: 48px 0;
  }
  .catalog-section-header {
    padding: 0 16px;
  }
}
