﻿/* ============================================================
   Petit Panambi — Global Stylesheet
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --bg: #faf8f5;
  --white: #ffffff;
  --text: #1c1c1c;
  --text-muted: #8a8478;
  --gold: #9e6daf;
  --gold-light: #e4cced;
  --border: #e8e3dc;
  --surface: #f4f1ec;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: 'Jost', sans-serif;
  cursor: pointer;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

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

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

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

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px 40px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-menu ul li:last-child a {
  border-bottom: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-decoration: none;
  border-radius: var(--radius);
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  border-radius: var(--radius);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  border-radius: var(--radius);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

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

.section {
  padding: 80px 40px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: -36px;
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */

.page-header {
  padding: 140px 40px 60px;
  text-align: center;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-header p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  margin: 0 8px;
}

/* ============================================================
   HERO (HOME)
   ============================================================ */

.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 245, 0.55);
  z-index: 1;
}

.hero > *:not(.hero-video):not(.hero-overlay) {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1.1;
  max-width: 700px;
  letter-spacing: 0.01em;
}

.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  margin: 20px 0 40px;
  letter-spacing: 0.05em;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   PROMISE BAR
   ============================================================ */

.promise-bar {
  background: var(--surface);
  padding: 40px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.promise-item {
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.promise-icon {
  color: var(--gold);
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

/* ============================================================
   COLLECTIONS GRID
   ============================================================ */

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

.collection-card {
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: outline 0.2s ease;
}

.collection-card:nth-child(1) { background: #f0ece4; }
.collection-card:nth-child(2) { background: #edf0e8; }
.collection-card:nth-child(3) { background: #ece8e4; }
.collection-card:nth-child(4) { background: #e8e4ec; }

.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.18) 0%, transparent 60%);
  transition: opacity 0.3s ease;
}

.collection-card:hover {
  outline: 1px solid var(--gold);
}

.collection-card-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 48px;
  color: rgba(158, 109, 175, 0.22);
  line-height: 1;
  transition: transform 0.4s ease, opacity 0.3s;
}

.collection-card:hover .collection-card-symbol {
  transform: translate(-50%, -65%);
  opacity: 0.4;
}

.collection-info {
  position: relative;
  z-index: 1;
}

.collection-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.collection-desc {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
  line-height: 1.5;
}

.collection-link {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   ABOUT TEASER (HOME)
   ============================================================ */

.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-teaser-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--text);
  position: relative;
  padding-left: 32px;
}

.about-teaser-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 2px;
  height: calc(100% - 16px);
  background: var(--gold);
}

.about-teaser-text p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============================================================
   INSTAGRAM CTA
   ============================================================ */


.instagram-cta {
  text-align: center;
  padding: 80px 40px;
}

.instagram-cta-inner {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 48px 80px;
  max-width: 680px;
}

.social-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.instagram-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
}

.instagram-cta p {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

/* ============================================================
   PRODUCT GRID & CARDS
   ============================================================ */

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

.product-card {
  background: var(--white);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--surface);
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  font-size: 32px;
  color: var(--gold);
  position: absolute;
  inset: 0;
}

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

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 245, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  z-index: 2;
}

.product-badge.bestseller {
  background: var(--text);
}

.product-info {
  padding: 14px 4px 0;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

.product-materials {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.4;
}

.product-price {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  margin-top: 6px;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.btn-etsy {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  text-align: center;
  transition: opacity 0.2s;
}

.btn-etsy:hover {
  opacity: 0.85;
}

.product-inquire {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.product-inquire:hover {
  color: var(--gold);
}

.modal-option-group {
  margin: 16px 0;
}

.modal-option-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.modal-option-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gold);
  background: var(--bg);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239e6daf' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.modal-option-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-light);
}

.modal-option-fixed {
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.04em;
}

.modal-option-note {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: italic;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.btn-secondary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 10px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================================
   COLLECTION GRID (shop browse view)
   ============================================================ */

#collectionGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.coll-card {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.coll-card:hover {
  transform: translateY(-3px);
}

.coll-card-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: var(--surface);
}

.coll-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

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

.coll-card-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--gold);
}

.coll-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.38);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coll-card:hover .coll-card-overlay {
  opacity: 1;
}

.coll-card-cta {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 2px;
}

.coll-card-info {
  padding: 16px 0 0;
  text-align: center;
}

.coll-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.coll-card-count {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Collection products view — nav bar */
.collection-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.back-btn {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  white-space: nowrap;
}

.back-btn:hover {
  color: var(--gold);
}

.collection-view-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--text);
}

/* ============================================================
   FILTER BAR
   ============================================================ */

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 999px;
}

.filter-pill:hover,
.filter-pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.sort-select {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: transparent;
  padding: 8px 14px;
  cursor: pointer;
  outline: none;
  border-radius: var(--radius);
}

.sort-select:focus {
  border-color: var(--gold);
}

/* ============================================================
   PRODUCT MODAL
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 28, 0.55);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  max-width: 800px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  max-height: 90vh;
  overflow: auto;
}

.modal-img-wrap {
  aspect-ratio: 1 / 1;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--gold);
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-badge {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 8px;
}

.modal-price {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.modal-materials {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.modal-desc {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  transition: color 0.2s;
  z-index: 5;
}

.modal-close:hover {
  color: var(--text);
}

/* ============================================================
   COLLECTIONS PAGE
   ============================================================ */

.collection-section {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}

.collection-section:last-child {
  border-bottom: none;
}

.collection-header {
  margin-bottom: 48px;
}

.collection-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1;
}

.collection-tag {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.collection-story {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

/* Collection hero — split layout */
.collection-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.collection-hero-text {
  max-width: 480px;
}

.collection-hero-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1;
}

.collection-hero-photos {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
}

.chp-main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface);
}

.chp-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.chp-main:hover img {
  transform: scale(1.03);
}

.chp-secondary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 130px;
}

.chp-sm {
  flex: 1;
  overflow: hidden;
  background: var(--surface);
}

.chp-sm img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.chp-sm:hover img {
  transform: scale(1.04);
}

.collection-grid-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-img-placeholder {
  background: var(--surface);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(158, 109, 175, 0.3);
}

.story-img-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.story-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.2;
}

.story-text p {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
}

.value-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.value-text {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.logo-showcase {
  text-align: center;
  padding: 60px 40px;
  background: var(--surface);
}

.logo-showcase img {
  max-height: 160px;
  width: auto;
  margin: 0 auto 16px;
}

.logo-showcase-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text);
}

/* ============================================================
   CUSTOM PAGE
   ============================================================ */

.how-it-works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.step-text {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.customization-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.custom-option-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  transition: border-color 0.2s;
}

.custom-option-card:hover {
  border-color: var(--gold);
}

.custom-option-icon {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.custom-option-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.custom-option-text {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.custom-note {
  background: var(--surface);
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  margin-top: 40px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   FORMS
   ============================================================ */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: var(--radius);
  -webkit-appearance: none;
  appearance: none;
}

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

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

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

/* ============================================================
   CARE PAGE
   ============================================================ */

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.care-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s;
}

.care-card:hover {
  border-color: var(--gold);
}

.care-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.care-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}

.care-text {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.materials-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0;
}

.materials-table th {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 14px 20px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  background: var(--surface);
}

.materials-table td {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.materials-table tr:last-child td {
  border-bottom: none;
}

.care-level {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.care-level.easy { background: #e8f5e9; color: #388e3c; }
.care-level.moderate { background: #fff8e1; color: #f9a825; }
.care-level.gentle { background: #fce4ec; color: #c2185b; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-style: normal;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px 24px;
}

.contact-card-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
}

.contact-card-sub {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
}

.social-card {
  border: 1px solid var(--gold);
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

.social-card:hover {
  background: var(--gold);
  color: var(--white);
}

.social-card svg {
  width: 24px;
  height: 24px;
}

.social-card:hover svg path,
.social-card:hover svg rect,
.social-card:hover svg circle {
  fill: var(--white);
}

.social-card-name {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--text);
  color: #e8e3dc;
  padding: 60px 40px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.footer-tagline {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: rgba(232, 227, 220, 0.6);
  letter-spacing: 0.05em;
  font-style: italic;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.footer-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 227, 220, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold-light);
}

.footer-socials {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  color: rgba(232, 227, 220, 0.7);
}

.footer-social-link:hover {
  border-color: var(--gold);
  background: rgba(158, 109, 175, 0.1);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-phone {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: rgba(232, 227, 220, 0.55);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-phone:hover {
  color: var(--gold-light);
}

.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: rgba(232, 227, 220, 0.45);
  letter-spacing: 0.04em;
}

.footer-fine-print {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  color: rgba(232, 227, 220, 0.35);
  font-style: italic;
}

/* ============================================================
   DIVIDERS & MISC
   ============================================================ */

.gold-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

.intro-text {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #collectionGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    grid-column: 1 / -1;
  }

  .footer-socials {
    justify-content: flex-end;
  }
}

/* ============================================================
   POEM — I AM FROM
   ============================================================ */

.poem-section {
  background: var(--text);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.poem-section::before {
  content: '❧';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 180px;
  color: rgba(158, 109, 175, 0.06);
  pointer-events: none;
  line-height: 1;
}

.poem-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.poem-header {
  margin-bottom: 56px;
}

.poem-thread {
  display: block;
  font-size: 32px;
  margin-bottom: 20px;
}

.poem-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.poem-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.poem-body {
  margin-bottom: 52px;
}

.poem-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  padding: 2px 0;
}

.poem-body p + p {
  margin-top: 0;
}

.poem-body p:empty {
  display: block;
  height: 20px;
}

/* Add spacing between stanzas — every 3rd line group */
.poem-body p:nth-child(3),
.poem-body p:nth-child(10),
.poem-body p:nth-child(15),
.poem-body p:nth-child(22),
.poem-body p:nth-child(27) {
  margin-bottom: 28px;
}

.poem-line-highlight {
  color: #fff !important;
  font-weight: 500 !important;
  font-style: italic;
}

.poem-flags {
  font-size: 32px;
  letter-spacing: 8px;
  margin-bottom: 16px;
}

.poem-heritage {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

.poem-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.poem-author-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.poem-author-line em {
  color: #fff;
  font-style: normal;
}

.poem-author-role {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 768px) {
  .poem-section { padding: 72px 24px; }
  .poem-title { font-size: 36px; }
  .poem-body p { font-size: 17px; }
}

/* ============================================================
   SHOP FILTER BAR (new collection-based)
   ============================================================ */

.shop-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.collection-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cf-btn {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cf-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cf-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.sort-label {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-right: 6px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */

.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-zoom {
  font-size: 28px;
  color: #fff;
  line-height: 1;
}

.gallery-play-icon {
  font-size: 42px;
  color: #fff;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.gallery-empty {
  text-align: center;
  padding: 80px 0;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.open {
  display: flex;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  text-align: center;
  white-space: nowrap;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover { color: #fff; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 56px;
  cursor: pointer;
  line-height: 1;
  padding: 0 16px;
  transition: color 0.2s;
}

.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }
.lightbox-prev:hover,
.lightbox-next:hover { color: #fff; }

@media (max-width: 768px) {
  .gallery-grid { columns: 2; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .navbar {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 48px;
  }

  .section {
    padding: 60px 24px;
  }

  .page-header {
    padding: 110px 24px 48px;
  }

  .page-header h1 {
    font-size: 40px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-teaser {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .modal-box {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .customization-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works {
    grid-template-columns: 1fr;
  }

  .promise-bar {
    gap: 40px;
  }

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

  .instagram-cta-inner {
    padding: 36px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .collection-section {
    padding: 60px 24px;
  }

  .collection-header h2 {
    font-size: 40px;
  }

  .collection-hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .collection-hero-text {
    max-width: 100%;
  }

  .collection-hero-text h2 {
    font-size: 40px;
  }

  .chp-secondary {
    width: 100px;
  }
}

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

  #collectionGrid {
    grid-template-columns: 1fr;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
  }

  .section-title {
    font-size: 32px;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .customization-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-overlay {
    padding: 16px;
  }
}
