/* ===========================
   BRAND TOKENS
   =========================== */

:root {
  --bg:           #FDF5ED;
  --surface:      #FFF9F2;
  --text:         #3D3D3D;
  --muted:        #5B6470;
  --accent:       #C4511A;
  --accent-hover: #E8651A;
  --accent-soft:  #F7E8D8;
  --border:       #EDE1D5;
}

/* ===========================
   RESET & BASE
   =========================== */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Arial Black', sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.65rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--accent-hover); }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

@media (max-width: 768px) {
  .section { padding: 3rem 0; }
}

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

.navbar {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.35rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.nav-logo:hover { opacity: 0.85; }

.nav-logo-img {
  width: auto;
  height: 64px;
  max-width: min(260px, 42vw);
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.3px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.nav-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

@media (max-width: 768px) {
  .navbar { padding: 0.3rem 0; }
  .nav-logo-img {
    width: auto;
    height: 48px;
    max-width: 56vw;
  }
  .nav-container {
    padding: 0 0.35rem;
    align-items: flex-start;
    gap: 0.45rem;
  }
  .nav-logo {
    margin-left: -0.2rem;
  }
  .nav-links {
    width: 100%;
    gap: 0.85rem;
    justify-content: flex-start;
  }
}

/* ===========================
   HERO
   =========================== */

.hero {
  min-height: 530px;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 860px;
}

.hero-logo {
  width: min(360px, 72vw);
  height: auto;
  margin: 0 auto 0.4rem;
  display: block;
}

.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.8px;
  line-height: 1.08;
}

.hero-sub {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.1rem;
}

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

.launch-bonus-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(216, 90, 48, 0.1);
  color: var(--accent-dark);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}

.launch-bonus-note::before {
  content: "Gift with order";
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(216, 90, 48, 0.16);
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.launch-bonus-note-hero {
  margin: 1rem auto 0;
  justify-content: center;
}

.launch-bonus-note-inline {
  margin-top: 0.9rem;
}

@media (max-width: 768px) {
  .hero { min-height: 445px; }
  .hero-logo {
    width: min(280px, 64vw);
    margin-bottom: 0.35rem;
  }
  .hero-tagline { font-size: 1.65rem; }
  .hero-sub { font-size: 0.78rem; letter-spacing: 2px; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .launch-bonus-note {
    font-size: 0.88rem;
    border-radius: 22px;
    padding: 0.85rem 0.95rem;
    text-align: left;
  }

  .launch-bonus-note::before {
    white-space: normal;
    text-align: center;
  }
}

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

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}

.btn-primary {
  background-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(196, 81, 26, 0.18);
}
.btn-primary:hover {
  background-color: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(196, 81, 26, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-instagram {
  background-color: #ffffff;
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.btn-instagram:hover {
  background-color: var(--text);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .btn, .btn-instagram { padding: 0.75rem 1.6rem; font-size: 0.9rem; }
}

/* ===========================
   SECTION TITLE
   =========================== */

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 2px;
  margin: 0.85rem auto 0;
}

.section-lead {
  max-width: 720px;
  margin: -1.4rem auto 2.25rem;
  text-align: center;
  color: var(--muted);
}

.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-breadcrumbs a {
  color: var(--accent);
  font-weight: 600;
}

.page-breadcrumbs span {
  color: var(--border-strong);
}

.seo-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.seo-page-copy {
  background-color: var(--surface);
  padding: 2.1rem 2.2rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(61, 61, 61, 0.05);
}

.seo-page-copy h1 {
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.seo-page-copy p:last-child {
  margin-bottom: 0;
}

.seo-page-image {
  background: linear-gradient(180deg, #FFF9F2 0%, #F7E8D8 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 12px 30px rgba(61, 61, 61, 0.04);
}

.seo-page-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.gift-guides-intro-section {
  padding-top: 1.65rem;
  padding-bottom: 0.6rem;
}

.gift-guides-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 0;
}

.gift-guides-hero .seo-page-copy {
  max-width: 72rem;
  padding: 1.5rem 1.65rem;
}

.gift-guides-intro-section + .gift-finder-section {
  padding-top: 0.75rem;
}

.gift-guides-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.gift-guides-pill-row span {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(196, 81, 26, 0.11) 0%, rgba(255, 255, 255, 0.92) 100%);
  border: 1px solid rgba(196, 81, 26, 0.18);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.seo-link-list {
  display: grid;
  gap: 0.9rem;
}

.seo-link-list a {
  display: block;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.seo-link-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 81, 26, 0.35);
  box-shadow: 0 10px 24px rgba(61, 61, 61, 0.05);
}

.seo-link-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.seo-link-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.seo-checklist {
  display: grid;
  gap: 0.9rem;
}

.seo-checklist li {
  list-style: none;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  color: var(--muted);
}

.seo-checklist li strong {
  color: var(--text);
}

.article-intro {
  max-width: 760px;
  margin: 0 auto 2rem;
}

.article-intro h1 {
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.article-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.article-content {
  max-width: 760px;
  margin: 0 auto;
  background-color: var(--surface);
  padding: 2.5rem 2.75rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(61, 61, 61, 0.05);
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.85rem;
}

.article-content p,
.article-content li {
  color: var(--muted);
  line-height: 1.85;
}

.article-content ul {
  margin: 0 0 1rem;
  padding: 0;
}

.article-content li + li {
  margin-top: 0.75rem;
}

.article-content .order-panel {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .section-title { font-size: 1.7rem; margin-bottom: 2rem; }
  .section-lead { margin: -0.8rem auto 1.75rem; }
  .seo-page-hero { grid-template-columns: 1fr; }
  .seo-page-copy { padding: 1.75rem 1.5rem; }
  .article-content { padding: 2rem 1.5rem; }
  .gift-guides-intro-section {
    padding-top: 1.1rem;
    padding-bottom: 0.5rem;
  }
  .gift-guides-hero {
    gap: 0.75rem;
  }
  .gift-guides-hero .seo-page-copy {
    padding: 1.25rem;
  }
  .gift-guides-pill-row {
    gap: 0.55rem;
  }
  .gift-guides-intro-section + .gift-finder-section {
    padding-top: 0.5rem;
  }
}

/* ===========================
   SITE INTRO
   =========================== */

.site-intro-section {
  background: var(--surface);
  padding: 2.25rem 1.5rem;
}

.site-intro-text {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .site-intro-section { padding: 1.75rem 1.25rem; }
  .site-intro-text { font-size: 1rem; }
}

/* ===========================
   HOW IT WORKS
   =========================== */

.how-it-works { background-color: var(--surface); }

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

.step-card {
  text-align: center;
  padding: 2.25rem 1.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background-color: var(--surface);
  box-shadow: 0 10px 26px rgba(61, 61, 61, 0.04);
  cursor: default;
}

.step-circle {
  width: 52px;
  height: 52px;
  background: rgba(205, 90, 28, 0.12);
  border: 1px solid rgba(205, 90, 28, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
}

.step-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 0.875rem;
  display: block;
  opacity: 0.65;
}

.step-card h3 { font-size: 1.05rem; }
.step-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .step-card { padding: 1.5rem; }
}

/* ===========================
   WHAT WE MAKE
   =========================== */

.what-we-make { background-color: var(--bg); }

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background-color: var(--surface);
  padding: 2rem 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  box-shadow: 0 10px 26px rgba(61, 61, 61, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}
.category-card h3 { color: var(--text); font-size: 1.1rem; }
.category-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.5rem; }
.price-range {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.875rem;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
}

.section-micro-links {
  max-width: 860px;
  margin: 1.5rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-micro-links a {
  font-weight: 600;
}

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

/* ===========================
   GIFTING SECTION
   =========================== */

.gifting-section {
  background-color: var(--surface);
}

.gift-finder-section {
  background-color: var(--surface);
}

.gift-finder-builder {
  display: grid;
  gap: 1.75rem;
}

.gift-finder-builder-copy .section-title {
  margin-bottom: 0.75rem;
}

.gift-finder-builder-copy .section-lead {
  max-width: 64ch;
  margin: 0;
}

.gift-finder-success {
  border: 1px solid rgba(29, 143, 90, 0.22);
  background: linear-gradient(180deg, rgba(29, 143, 90, 0.08) 0%, rgba(255, 255, 255, 0.9) 100%);
  color: #166a44;
  border-radius: 16px;
  padding: 1rem 1.15rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(22, 106, 68, 0.08);
}

.gift-finder-quiz-card {
  background: linear-gradient(135deg, #FFF9F2 0%, #FFFFFF 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 14px 30px rgba(61, 61, 61, 0.05);
}

.gift-finder-quiz-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.gift-finder-question {
  display: grid;
  gap: 0.7rem;
}

.gift-finder-question-wide {
  grid-column: 1 / -1;
}

.gift-finder-question-head h3,
.gift-finder-question-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.gift-finder-question-head p,
.gift-finder-question small {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.gift-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.gift-choice-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gift-choice-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  border-radius: 999px;
  padding: 0.82rem 1rem;
  font: inherit;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
}

.gift-choice-chip:hover,
.gift-choice-input:checked + .gift-choice-chip,
.gift-choice-chip.is-active {
  border-color: var(--accent);
  background-color: var(--accent);
  color: #ffffff;
  transform: translateY(-1px);
}

.gift-choice-input:focus-visible + .gift-choice-chip {
  outline: 3px solid rgba(196, 81, 26, 0.22);
  outline-offset: 2px;
}

.gift-choice-chip-soft {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.gift-finder-select,
.gift-finder-textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background-color: #ffffff;
}

.gift-finder-select:focus,
.gift-finder-textarea:focus {
  outline: 2px solid rgba(196, 81, 26, 0.18);
  border-color: var(--accent);
}

.gift-finder-textarea {
  min-height: 120px;
  resize: vertical;
}

.gift-finder-message {
  margin: 1rem 0 0;
  border-left: 4px solid var(--accent);
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background-color: var(--accent-soft);
  color: var(--text);
  font-weight: 600;
}

.gift-finder-quiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.gift-finder-results {
  display: grid;
  gap: 1.5rem;
}

.gift-finder-results-head {
  max-width: 68ch;
}

.gift-finder-results-head h3 {
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}

.gift-finder-results-head p:last-child {
  margin-bottom: 0;
}

.gift-finder-results-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.gift-finder-results-meta span,
.gift-finder-selected-list span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background-color: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.gift-finder-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.idea-card {
  display: grid;
  gap: 1.1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 10px 26px rgba(61, 61, 61, 0.04);
}

.idea-card-visual {
  display: grid;
  gap: 0.8rem;
}

.idea-card-type {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
}

.idea-card-placeholder {
  min-height: 188px;
  border-radius: 16px;
  border: 1px solid rgba(196, 81, 26, 0.16);
  padding: 0;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 24px rgba(61, 61, 61, 0.06);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.8), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, #fbf3ea 0%, #f4e8d8 100%);
}

.idea-card-placeholder::before,
.idea-card-placeholder::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.55;
}

.idea-card-placeholder::before {
  width: 148px;
  height: 148px;
  top: -30px;
  right: -28px;
  background: rgba(255, 255, 255, 0.42);
}

.idea-card-placeholder::after {
  width: 120px;
  height: 120px;
  left: -30px;
  bottom: -34px;
  background: rgba(255, 255, 255, 0.28);
}

.idea-card-photo {
  background: #f7efe6;
}

.idea-card-photo::before,
.idea-card-photo::after {
  display: none;
}

.idea-card-photo img {
  display: block;
  width: 100%;
  min-height: 188px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.idea-card-scene,
.idea-card-art-copy,
.idea-card-art-label,
.idea-card-art-tags,
.idea-card-scene-note {
  position: relative;
  z-index: 1;
}

.idea-card-scene {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 188px;
  isolation: isolate;
  overflow: hidden;
}

.idea-card-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.72), transparent 20%);
  pointer-events: none;
}

.idea-card-scene::after {
  content: '';
  position: absolute;
  inset: auto 9% 10% 9%;
  height: 26%;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(184, 145, 110, 0.08), rgba(184, 145, 110, 0.18)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.scene-print,
.scene-print-soft,
.scene-print-alt,
.scene-metal,
.scene-drift,
.scene-space-star,
.scene-photo-image {
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.scene-print,
.scene-print-soft,
.scene-print-alt,
.scene-metal {
  box-shadow:
    0 12px 18px rgba(76, 55, 35, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.scene-print,
.scene-print-soft,
.scene-print-alt {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.03)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03) 0 2px,
      rgba(0, 0, 0, 0.03) 2px 3px
    );
}

.scene-print {
  background-color: var(--scene-print-main, #d47143);
}

.scene-print-soft {
  background-color: var(--scene-print-soft, #f7eadb);
}

.scene-print-alt {
  background-color: var(--scene-print-alt, #95a285);
}

.scene-metal {
  background: linear-gradient(180deg, #f8f8f8 0%, #bfbfbf 100%);
  box-shadow: 0 8px 12px rgba(61, 61, 61, 0.14);
}

.scene-drift {
  border-radius: 999px;
  background: rgba(214, 143, 90, 0.18);
  filter: blur(1px);
}

.scene-drift-one {
  width: 44%;
  height: 4px;
  top: 18%;
  left: 10%;
  transform: rotate(18deg);
}

.scene-drift-two {
  width: 34%;
  height: 4px;
  top: 26%;
  right: 10%;
  transform: rotate(-16deg);
}

.idea-card-art-copy {
  display: grid;
  gap: 0.6rem;
}

.idea-card-art-label {
  display: block;
  max-width: 28ch;
  color: #3d3d3d;
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
}

.idea-card-art-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.idea-card-art-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(61, 61, 61, 0.08);
  color: rgba(61, 61, 61, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.idea-card-scene-note {
  position: absolute;
  left: 0.85rem;
  bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.64rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(61, 61, 61, 0.08);
  color: rgba(61, 61, 61, 0.88);
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.idea-card-placeholder.art-dragon {
  --scene-print-main: #d06c49;
  --scene-print-soft: #f8e8d8;
  --scene-print-alt: #a693d1;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.86), transparent 25%),
    linear-gradient(180deg, #fbf1eb 0%, #f1e0d4 100%);
}

.idea-card-placeholder.art-dino {
  --scene-print-main: #c3d364;
  --scene-print-soft: #f3e1b8;
  --scene-print-alt: #a2d4c6;
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(180deg, #eef7e2 0%, #dbe9cd 100%);
}

.idea-card-placeholder.art-fidget {
  --scene-print-main: #d96e4d;
  --scene-print-soft: #f2d66f;
  --scene-print-alt: #a8bdd7;
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(180deg, #f8efe5 0%, #efdcca 100%);
}

.idea-card-placeholder.art-bookmark {
  --scene-print-main: #1f496e;
  --scene-print-soft: #efe7dc;
  --scene-print-alt: #b08ee8;
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.84), transparent 24%),
    linear-gradient(180deg, #faf4ec 0%, #f3e5d6 100%);
}

.idea-card-placeholder.art-photo {
  --scene-print-main: #c7674b;
  --scene-print-soft: #f7ead8;
  --scene-print-alt: #d9b590;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.86), transparent 22%),
    linear-gradient(180deg, #fbf1ea 0%, #efe0d0 100%);
}

.idea-card-placeholder.art-sign {
  --scene-print-main: #c7643f;
  --scene-print-soft: #f5e8d9;
  --scene-print-alt: #d8916a;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.86), transparent 24%),
    linear-gradient(180deg, #fcf0e6 0%, #f3e2d2 100%);
}

.idea-card-placeholder.art-desk {
  --scene-print-main: #d88454;
  --scene-print-soft: #f1e3d3;
  --scene-print-alt: #8b987f;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(180deg, #faf1e8 0%, #efe1d3 100%);
}

.idea-card-placeholder.art-keychain {
  --scene-print-main: #c96d45;
  --scene-print-soft: #f2e2cf;
  --scene-print-alt: #9ca883;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.84), transparent 26%),
    linear-gradient(180deg, #faf2e8 0%, #f0e3d4 100%);
}

.idea-card-placeholder.art-space {
  --scene-print-main: #d36c4f;
  --scene-print-soft: #f2ebe2;
  --scene-print-alt: #8fb2d1;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.84), transparent 26%),
    linear-gradient(180deg, #f6efe8 0%, #ebddd2 100%);
}

.idea-card-placeholder.art-sports {
  --scene-print-main: #d26d4d;
  --scene-print-soft: #efe4d5;
  --scene-print-alt: #9ea995;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(180deg, #f9f0e8 0%, #eddccd 100%);
}

.idea-card-placeholder.art-music {
  --scene-print-main: #c86d4a;
  --scene-print-soft: #f2e4d4;
  --scene-print-alt: #ab8fd6;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(180deg, #faf0e9 0%, #f0e0d3 100%);
}

.idea-card-placeholder.art-spooky {
  --scene-print-main: #c96a45;
  --scene-print-soft: #f3e7da;
  --scene-print-alt: #8b8a9c;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.84), transparent 26%),
    linear-gradient(180deg, #f8efe7 0%, #eee1d5 100%);
}

.idea-card-placeholder.art-bundle {
  --scene-print-main: #ce704a;
  --scene-print-soft: #f4e7d6;
  --scene-print-alt: #8fa38a;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.84), transparent 26%),
    linear-gradient(180deg, #faf1e8 0%, #efe1d1 100%);
}

.idea-card-placeholder.art-animal {
  --scene-print-main: #d26d49;
  --scene-print-soft: #efe5d7;
  --scene-print-alt: #9ec7b8;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.84), transparent 26%),
    linear-gradient(180deg, #f8f0e6 0%, #eee0d1 100%);
}

.idea-card-placeholder.art-default {
  --scene-print-main: #d2734d;
  --scene-print-soft: #f1e4d7;
  --scene-print-alt: #8fa28b;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.84), transparent 26%),
    linear-gradient(180deg, #faf2e8 0%, #eee1d3 100%);
}

.scene-dragon-coil {
  width: 63%;
  height: 28%;
  left: 14%;
  top: 34%;
  border-radius: 999px;
  border: 10px solid transparent;
  box-shadow: inset 0 0 0 9px var(--scene-print-main, #d47143), 0 12px 18px rgba(76, 55, 35, 0.14);
  background: transparent;
}

.scene-dragon-head {
  width: 26%;
  height: 15%;
  left: 12%;
  bottom: 20%;
  border-radius: 22px 12px 26px 12px;
  transform: rotate(-12deg);
}

.scene-dragon-crystal {
  width: 15%;
  height: 23%;
  right: 18%;
  top: 24%;
  clip-path: polygon(50% 0, 100% 40%, 82% 100%, 18% 100%, 0 40%);
}

.scene-dino-body {
  width: 36%;
  height: 27%;
  left: 27%;
  bottom: 18%;
  border-radius: 48% 48% 42% 42%;
}

.scene-dino-neck {
  width: 10%;
  height: 24%;
  left: 47%;
  bottom: 34%;
  border-radius: 16px;
}

.scene-dino-head {
  width: 24%;
  height: 18%;
  left: 40%;
  top: 28%;
  border-radius: 48% 44% 42% 40%;
}

.scene-dino-eye {
  width: 8px;
  height: 8px;
  left: 53%;
  top: 34%;
  border-radius: 999px;
  background: rgba(61, 61, 61, 0.82);
  position: absolute;
  z-index: 2;
}

.scene-dino-arm {
  width: 10%;
  height: 8%;
  left: 38%;
  bottom: 26%;
  border-radius: 999px;
  transform: rotate(26deg);
}

.scene-dino-tail {
  width: 22%;
  height: 8%;
  left: 17%;
  bottom: 26%;
  border-radius: 999px;
  transform: rotate(-30deg);
}

.scene-dino-egg {
  width: 14%;
  height: 18%;
  right: 17%;
  bottom: 20%;
  border-radius: 48% 48% 42% 42%;
}

.scene-fidget-piece {
  width: 28%;
  height: 16%;
  border-radius: 20px;
}

.scene-fidget-piece-a {
  left: 12%;
  bottom: 27%;
  transform: rotate(-18deg);
}

.scene-fidget-piece-b {
  left: 39%;
  top: 28%;
  transform: rotate(16deg);
}

.scene-fidget-piece-c {
  right: 12%;
  bottom: 24%;
  transform: rotate(12deg);
}

.scene-fidget-button {
  position: absolute;
  width: 18%;
  height: 10%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.scene-fidget-button-a {
  left: 17%;
  bottom: 31%;
  transform: rotate(-18deg);
}

.scene-fidget-button-b {
  left: 45%;
  top: 32%;
  transform: rotate(16deg);
}

.scene-fidget-cube {
  width: 16%;
  height: 16%;
  right: 21%;
  top: 34%;
  border-radius: 14px;
  transform: rotate(16deg);
}

.scene-bookmark-strip {
  width: 18%;
  height: 52%;
  border-radius: 14px;
  top: 22%;
}

.scene-bookmark-strip-a { left: 18%; transform: rotate(-18deg); }
.scene-bookmark-strip-b { left: 40%; transform: rotate(4deg); }
.scene-bookmark-strip-c { right: 18%; transform: rotate(16deg); }

.scene-photo-frame {
  width: 42%;
  height: 46%;
  left: 30%;
  top: 18%;
  border-radius: 10px;
  border: 10px solid rgba(255, 255, 255, 0.6);
}

.scene-photo-image {
  width: 28%;
  height: 30%;
  left: 37%;
  top: 25%;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 205, 128, 0.9), rgba(217, 111, 69, 0.85)),
    radial-gradient(circle at 60% 32%, rgba(255, 247, 205, 0.9), transparent 24%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.scene-photo-base {
  width: 34%;
  height: 12%;
  left: 34%;
  bottom: 18%;
  border-radius: 18px;
}

.scene-photo-glow {
  position: absolute;
  width: 34%;
  height: 34%;
  left: 34%;
  top: 18%;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(255, 217, 153, 0.28), transparent 68%);
}

.scene-sign-word {
  position: absolute;
  left: 15%;
  bottom: 24%;
  color: #c7674b;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-shadow: 0 10px 12px rgba(76, 55, 35, 0.12);
}

.scene-key-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem;
  height: 2.1rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(61, 61, 61, 0.84);
  box-shadow: 0 10px 16px rgba(76, 55, 35, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.scene-key-tag-a { left: 14%; top: 18%; }
.scene-key-tag-b { right: 14%; top: 26%; }

.scene-vase { border-radius: 26px 26px 18px 18px; }
.scene-vase-a { width: 20%; height: 54%; left: 12%; top: 18%; }
.scene-vase-b { width: 16%; height: 38%; left: 39%; top: 28%; }
.scene-vase-c { width: 18%; height: 42%; right: 16%; top: 24%; }
.scene-vase-d { width: 20%; height: 18%; left: 32%; bottom: 14%; border-radius: 999px 999px 14px 14px; }

.scene-keychain-ring {
  width: 24%;
  height: 24%;
  right: 22%;
  top: 22%;
  border-radius: 999px;
  border: 6px solid #b8b8b8;
  background: transparent;
  box-shadow: none;
}

.scene-keychain-tag { width: 18%; height: 28%; left: 36%; top: 34%; border-radius: 18px 18px 14px 14px; }
.scene-keychain-secondary { width: 16%; height: 20%; left: 20%; bottom: 18%; border-radius: 16px; transform: rotate(-18deg); }

.scene-space-moon {
  width: 24%;
  height: 24%;
  left: 16%;
  top: 22%;
  border-radius: 999px;
}

.scene-space-rocket {
  width: 18%;
  height: 42%;
  left: 46%;
  top: 24%;
  clip-path: polygon(50% 0, 80% 28%, 80% 86%, 50% 100%, 20% 86%, 20% 28%);
}

.scene-space-fin { width: 14%; height: 14%; left: 56%; bottom: 26%; clip-path: polygon(0 100%, 50% 0, 100% 100%); }

.scene-space-star {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.84);
  clip-path: polygon(50% 0, 61% 36%, 100% 36%, 68% 57%, 79% 100%, 50% 73%, 21% 100%, 32% 57%, 0 36%, 39% 36%);
}

.scene-space-star-a { top: 22%; right: 20%; }
.scene-space-star-b { top: 34%; right: 30%; }

.scene-sports-tag { width: 28%; height: 16%; left: 15%; bottom: 24%; border-radius: 999px; }
.scene-sports-ball { width: 18%; height: 18%; left: 44%; top: 32%; border-radius: 999px; }
.scene-sports-token { width: 16%; height: 16%; right: 17%; bottom: 22%; border-radius: 12px; transform: rotate(14deg); }

.scene-music-note { width: 10%; height: 38%; left: 33%; top: 24%; border-radius: 10px; }
.scene-music-note-head { width: 16%; height: 16%; left: 26%; bottom: 24%; border-radius: 999px; }
.scene-music-bookmark { width: 18%; height: 48%; right: 23%; top: 20%; border-radius: 14px; }

.scene-spooky-moon { width: 20%; height: 20%; right: 18%; top: 18%; border-radius: 999px; }
.scene-spooky-mushroom-cap { width: 24%; height: 18%; left: 22%; bottom: 32%; border-radius: 999px 999px 30px 30px; }
.scene-spooky-mushroom-stem { width: 10%; height: 24%; left: 29%; bottom: 18%; border-radius: 14px; }
.scene-spooky-creature { width: 20%; height: 20%; right: 22%; bottom: 20%; border-radius: 46% 46% 42% 42%; }

.scene-bundle-piece { border-radius: 18px; }
.scene-bundle-piece-a { width: 18%; height: 18%; left: 22%; top: 30%; }
.scene-bundle-piece-b { width: 14%; height: 14%; left: 40%; top: 24%; }
.scene-bundle-piece-c { width: 18%; height: 18%; right: 24%; top: 30%; }
.scene-bundle-piece-d { width: 16%; height: 16%; left: 44%; bottom: 18%; }

.scene-animal-body { width: 28%; height: 24%; left: 35%; bottom: 20%; border-radius: 46% 46% 38% 38%; }
.scene-animal-head { width: 18%; height: 18%; left: 30%; top: 28%; border-radius: 999px; }
.scene-animal-ear { width: 8%; height: 12%; left: 30%; top: 22%; border-radius: 999px 999px 4px 4px; }
.scene-animal-tail { width: 18%; height: 8%; right: 24%; bottom: 28%; border-radius: 999px; transform: rotate(22deg); }

.scene-default-piece { border-radius: 26px; }
.scene-default-piece-a { width: 18%; height: 40%; left: 18%; top: 24%; }
.scene-default-piece-b { width: 20%; height: 26%; left: 40%; bottom: 18%; }
.scene-default-piece-c { width: 16%; height: 34%; right: 18%; top: 28%; }

.idea-card-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background-color: rgba(196, 81, 26, 0.1);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.idea-card-copy {
  display: grid;
  gap: 0.75rem;
}

.idea-card-copy h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.idea-card-description,
.idea-card-why,
.idea-card-match {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.idea-card-match {
  color: var(--accent);
  font-weight: 600;
}

.idea-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.idea-card-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background-color: #F8F1E7;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.idea-select-button {
  margin-top: 0.25rem;
}

.gift-finder-fallback {
  margin: 0;
  color: var(--muted);
}

.gift-finder-lead {
  display: grid;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #FFF9F2 0%, #FFFFFF 100%);
  box-shadow: 0 14px 30px rgba(61, 61, 61, 0.05);
}

.gift-finder-lead-copy h3 {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.gift-finder-lead-copy p:last-child {
  margin-bottom: 0;
}

.gift-finder-selected {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.gift-finder-selected-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.gift-finder-selected-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

@media (max-width: 768px) {
  .gift-finder-quiz-card,
  .gift-finder-lead {
    padding: 1.4rem;
  }

  .gift-finder-quiz-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .gift-finder-quiz-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gift-finder-results-head h3 {
    font-size: 1.3rem;
  }

  .gift-finder-results-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gifting-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ===========================
   RECENT MAKES
   =========================== */

.recent-makes-section {
  background-color: var(--bg);
}

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

.recent-make-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.9rem;
  box-shadow: 0 10px 26px rgba(61, 61, 61, 0.04);
}

.recent-make-label {
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.recent-make-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
}

.recent-make-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.recent-makes-cta {
  margin-top: 1.5rem;
  padding: 1.4rem 1.6rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background-color: var(--surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.recent-makes-cta p {
  margin-bottom: 0;
  color: var(--muted);
  max-width: 52ch;
}

@media (max-width: 768px) {
  .recent-makes-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .recent-makes-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===========================
   MADE TO ORDER BANNER
   =========================== */

.made-to-order-banner {
  background-color: var(--accent);
  padding: 3rem 0;
}
.made-to-order-banner h2 { color: #ffffff; }
.made-to-order-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.9); margin-bottom: 0; }
.made-to-order-banner a {
  color: #ffffff;
  font-weight: 700;
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transition: border-color 0.2s ease;
}
.made-to-order-banner a:hover { border-bottom-color: #ffffff; }

/* ===========================
   ORDER SECTION
   =========================== */

.order-panel {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.25rem;
  box-shadow: 0 12px 30px rgba(61, 61, 61, 0.05);
}

.order-copy {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.order-eyebrow {
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.order-copy h2 {
  margin-bottom: 0.75rem;
}

.order-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.order-step {
  display: grid;
  align-content: start;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem;
}

.order-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background-color: rgba(205, 90, 28, 0.1);
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.order-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

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

.order-form {
  margin-top: 1.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-field span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  background-color: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(196, 81, 26, 0.18);
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

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

.honeypot-field {
  display: none;
}

@media (max-width: 768px) {
  .order-panel {
    padding: 1.5rem;
  }
  .order-steps {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

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

.faq-section { background-color: var(--bg); }

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

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

details.faq-item summary {
  list-style: none;
  padding: 1.25rem 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color 0.2s ease;
  user-select: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 1.25rem;
  line-height: 1;
}
details.faq-item[open] summary { color: var(--accent); }
details.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 0;
}

/* ===========================
   INSTAGRAM STRIP
   =========================== */

.instagram-strip {
  background-color: var(--accent);
  padding: 3rem 0;
}
.instagram-strip-copy {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  text-align: center;
}
.instagram-strip-eyebrow {
  color: rgba(255,255,255,0.78);
  margin-bottom: 0.55rem;
}
.instagram-strip h2 { color: #ffffff; font-size: 1.7rem; margin-bottom: 0.5rem; }
.instagram-strip p { color: rgba(255,255,255,0.88); margin-bottom: 0; font-size: 0.98rem; }

.instagram-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.3rem 0 0.8rem;
  margin-bottom: 1.5rem;
  scroll-snap-type: x proximity;
}

.instagram-card {
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 12px 28px rgba(96, 43, 16, 0.14);
}

.instagram-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #fff7f0;
}

.instagram-card-copy {
  padding: 1rem 1rem 1.05rem;
}

.instagram-card-label {
  margin-bottom: 0.3rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.instagram-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.instagram-strip-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-instagram-secondary {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.36);
  color: #ffffff;
}

.btn-instagram-secondary:hover {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  border-color: rgba(255,255,255,0.48);
}

/* ===========================
   SHOP SECTION
   =========================== */

.shop-section { background-color: var(--bg); }

.shop-intro {
  background-color: var(--surface);
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  margin-bottom: 1.4rem;
  font-size: 1rem;
  color: var(--muted);
}
.shop-intro strong { color: var(--text); }
.shop-intro p { margin-bottom: 0; }
.shop-intro h1 { margin-bottom: 0; max-width: 14ch; }

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

.shop-jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.shop-jump-link {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background-color: var(--accent-soft);
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.shop-jump-link:hover {
  background-color: var(--accent);
  color: #ffffff;
  transform: translateY(-1px);
}

.checkout-cart-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 1.5rem;
  align-items: start;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 14px 32px rgba(61, 61, 61, 0.06);
}

.shop-cart-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 14px 32px rgba(61, 61, 61, 0.06);
}

.shop-cart-summary-copy p:last-child {
  margin-bottom: 0;
}

.shop-cart-summary-actions {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem;
  background: linear-gradient(180deg, #FFF9F2 0%, #FFFFFF 100%);
  display: grid;
  gap: 0.85rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.shop-cart-summary-actions.cart-updated {
  border-color: rgba(205, 90, 28, 0.45);
  box-shadow: 0 0 0 4px rgba(205, 90, 28, 0.12);
  transform: translateY(-1px);
}

.shop-cart-dock {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 78;
  display: grid;
  gap: 0.85rem;
  width: min(320px, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid rgba(205, 90, 28, 0.22);
  border-radius: 18px;
  background: rgba(255, 249, 242, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px rgba(61, 61, 61, 0.14);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.shop-cart-dock.cart-updated {
  border-color: rgba(205, 90, 28, 0.5);
  box-shadow: 0 0 0 4px rgba(205, 90, 28, 0.12), 0 16px 32px rgba(61, 61, 61, 0.16);
  transform: translateY(-2px);
}

.shop-cart-dock-copy {
  display: grid;
  gap: 0.18rem;
}

.shop-cart-dock-label,
.shop-cart-dock-count {
  margin: 0;
}

.shop-cart-dock-label {
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.shop-cart-dock-count {
  font-size: 0.96rem;
  color: var(--text);
  font-weight: 600;
}

.shop-cart-dock-subtotal,
.shop-cart-dock-note,
.shop-cart-summary-subtotal {
  margin: 0;
}

.shop-cart-dock-subtotal,
.shop-cart-summary-subtotal {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}

.shop-cart-dock-note {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.shop-cart-dock-link {
  width: 100%;
  justify-content: center;
}

.shop-cart-summary-count {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.shop-cart-summary-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.shop-intro .launch-bonus-note {
  margin-top: 1rem;
}

.checkout-cart-copy p:last-child {
  margin-bottom: 0;
}

.checkout-cart-subcopy {
  color: var(--muted);
}

.checkout-cart-shell {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem;
  background: linear-gradient(180deg, #FFF9F2 0%, #FFFFFF 100%);
}

.checkout-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.checkout-cart-header h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.checkout-cart-count {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.checkout-cart-empty {
  color: var(--muted);
  margin-bottom: 0;
}

.checkout-cart-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.8rem;
}

.checkout-cart-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background-color: #ffffff;
}

.checkout-cart-item-copy {
  display: grid;
  gap: 0.2rem;
}

.checkout-cart-item-copy strong {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}

.checkout-cart-item-copy span {
  color: var(--muted);
  font-size: 0.88rem;
}

.checkout-cart-item-meta {
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cart-qty-button,
.cart-remove-button {
  border: 1px solid var(--border);
  background-color: #ffffff;
  color: var(--text);
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
}

.cart-qty-button {
  width: 34px;
  height: 34px;
  font-size: 1.1rem;
  line-height: 1;
}

.cart-remove-button {
  padding: 0.45rem 0.8rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.cart-qty-value {
  min-width: 1.2rem;
  text-align: center;
  font-weight: 700;
}

.checkout-fulfillment {
  border: 0;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.65rem;
}

.checkout-fulfillment legend {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.checkout-fulfillment-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background-color: #ffffff;
  color: var(--text);
}

.checkout-totals {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.checkout-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-total-row {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.checkout-minimum-note,
.checkout-message {
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout-actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

#checkout-button.btn-disabled,
#checkout-button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  box-shadow: none;
}

.product-checkout-note {
  margin-top: 0.8rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.btn-add-to-cart {
  min-width: 180px;
}

.btn-add-to-cart.is-added {
  background: #1d8f5a;
  border-color: #1d8f5a;
  color: #ffffff;
}

.cart-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 8.5rem;
  z-index: 80;
  max-width: min(320px, calc(100vw - 2rem));
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(41, 41, 41, 0.94);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 600;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-option-dialog {
  width: min(520px, calc(100vw - 2rem));
  border: 0;
  border-radius: 22px;
  padding: 0;
  box-shadow: 0 28px 60px rgba(31, 24, 20, 0.22);
}

.product-option-dialog::backdrop {
  background: rgba(35, 30, 27, 0.48);
  backdrop-filter: blur(2px);
}

.product-option-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--surface);
}

.product-option-form [hidden] {
  display: none !important;
}

.product-option-form label[hidden],
.product-option-form .product-option-grid[hidden] {
  display: none !important;
}

.product-option-copy {
  display: grid;
  gap: 0.45rem;
}

.product-option-copy h2 {
  margin: 0;
}

.product-option-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 600;
}

.product-option-form input,
.product-option-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: #ffffff;
}

.product-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-option-error {
  margin: 0;
  color: #a73b12;
  font-size: 0.88rem;
  font-weight: 600;
}

.product-option-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.featured-gift-card {
  display: grid;
  gap: 1.35rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 14px 32px rgba(61, 61, 61, 0.06);
  margin-bottom: 2rem;
}

.featured-gift-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  align-items: start;
  gap: 1rem;
}

.featured-gift-photo,
.featured-gift-preview {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #FFF9F2 0%, #F7E8D8 100%);
}

.featured-gift-photo {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.featured-gift-photo img,
.featured-gift-preview video {
  width: 100%;
  height: 100%;
  display: block;
}

.featured-gift-photo img {
  object-fit: contain;
  object-position: center center;
}

.featured-gift-preview video {
  object-fit: cover;
  object-position: center 58%;
}

.featured-gift-preview {
  aspect-ratio: 4 / 5;
  max-height: 420px;
  border: 1px solid var(--border);
}

.featured-gift-preview-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin-bottom: 0;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background-color: rgba(61, 61, 61, 0.72);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.featured-gift-copy {
  padding: 0.2rem 0.2rem 0;
}

.featured-gift-copy h2 {
  margin-bottom: 0.8rem;
}

.featured-gift-copy p:not(.order-eyebrow):not(.product-price) {
  color: var(--muted);
}

.featured-gift-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 1.2rem;
}

.featured-gift-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background-color: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.shop-groups {
  display: grid;
  gap: 3rem;
}

.shop-group-header {
  max-width: 760px;
  margin-bottom: 1.35rem;
}

.shop-group-header h2 {
  margin-bottom: 0.6rem;
}

.shop-group-header p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.product-card {
  background-color: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.product-photo {
  height: 165px;
  background-color: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='110' viewBox='0 0 108 132' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M 16,72 L 16,27 Q 16,10 30,10 L 70,10 Q 84,10 84,27 L 84,32 Q 87,29 91,31 Q 103,36 103,52 Q 103,68 91,71 Q 87,73 84,71 L 84,72 Z' fill='%23D97706' opacity='0.1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center 28%;
  background-size: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 0.875rem;
  gap: 0.35rem;
}
.product-photo svg { opacity: 0.45; }
.product-photo span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.75px;
  text-transform: uppercase;
  color: #B8927A;
  font-family: 'Poppins', sans-serif;
}

.product-photo-real {
  height: 210px;
  padding: 1rem;
  background: linear-gradient(180deg, #FFF9F2 0%, #F7E8D8 100%);
  background-image: none;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.product-photo-real img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  flex-shrink: 0;
}

.product-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-body .btn { margin-top: auto; align-self: flex-start; }

.product-card-kickers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  background-color: var(--accent-soft);
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.product-name {
  font-size: 1.08rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.product-description {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.875rem;
  line-height: 1.62;
  flex-grow: 1;
}
.product-credit {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--muted);
  margin-top: -0.15rem;
  margin-bottom: 0.85rem;
}
.product-price {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

/* Custom orders card */
.custom-orders-card {
  background-color: var(--accent-soft);
  border-color: var(--accent);
}
.custom-orders-card .product-name { color: var(--accent); }
.custom-orders-card .product-description { color: var(--text); }
.custom-card-body {
  padding: 2rem 1.75rem;
  justify-content: center;
}

/* Color swatches */
.swatches-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-family: 'Poppins', sans-serif;
}
.color-swatches {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}
.swatch {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
  cursor: default;
  transition: transform 0.15s ease;
  flex-shrink: 0;
}
.swatch:hover { transform: scale(1.3); }

@media (max-width: 768px) {
  .shop-cart-summary,
  .checkout-cart-panel {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }

  .shop-cart-summary-actions,
  .checkout-cart-shell {
    padding: 1rem;
  }

  .checkout-cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-cart-item-controls {
    justify-content: flex-start;
  }

  .shop-cart-dock {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
  }

  .cart-toast {
    left: 1rem;
    right: 1rem;
    bottom: 7.75rem;
    max-width: none;
  }

  .product-option-grid {
    grid-template-columns: 1fr;
  }

  .product-option-actions {
    justify-content: stretch;
  }

  .product-option-actions .btn {
    flex: 1 1 180px;
  }

  .product-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .shop-intro { padding: 1.25rem 1.5rem; margin-bottom: 1.25rem; }
  .shop-intro h1 { max-width: none; }
  .shop-intro-actions { margin-top: 1rem; }
  .shop-jump-links { margin-top: 1rem; }
  .shop-groups { gap: 2.25rem; }
  .featured-gift-card { padding: 1.1rem; }
  .featured-gift-media { grid-template-columns: 1fr; }
  .featured-gift-photo { max-height: 380px; }
  .featured-gift-preview { max-height: 340px; }
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about-section { background-color: var(--bg); }

.about-header { text-align: center; margin-bottom: 3rem; }
.about-logo { width: 280px; height: auto; margin: 0 auto; display: block; max-width: 90vw; }

.about-content {
  max-width: 760px;
  margin: 0 auto;
  background-color: var(--surface);
  padding: 3rem 3.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 32px rgba(61, 61, 61, 0.05);
}
.about-content h1 { color: var(--accent); font-size: 2.2rem; margin-bottom: 1.5rem; }
.about-content h2 {
  color: var(--text);
  margin-top: 2.25rem;
  margin-bottom: 0.875rem;
  font-size: 1.3rem;
}
.about-content p { margin-bottom: 1.1rem; line-height: 1.9; color: var(--muted); }
.about-content p:first-of-type { color: var(--text); }

.link-coral { color: var(--accent); font-weight: 600; }
.link-coral:hover { color: var(--accent-hover); }

.about-tagline {
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-weight: 600;
  text-align: center;
  margin-top: 2rem;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-logo { width: 120px; }
  .about-content { padding: 2rem 1.5rem; }
  .about-content h1 { font-size: 1.8rem; }
}

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

.footer {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.65rem 2rem;
  align-items: start;
}

.footer-brand {
  min-width: 0;
  display: block;
  grid-column: 1;
  grid-row: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  color: var(--text);
  transition: opacity 0.2s ease;
  text-decoration: none;
}
.footer-logo:hover { opacity: 0.75; }
.footer-badge-image { width: 84px; height: auto; display: block; }
.footer-logo-img { width: 81px; height: auto; display: block; }
.footer-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.2px;
  color: var(--text);
  text-transform: uppercase;
}

.footer-logo {
  display: none;
}

.footer-tagline {
  color: var(--text);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 0;
}

.footer-links {
  display: contents;
}

.footer-link {
  color: var(--text);
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
  text-decoration: none;
}
.footer-link:hover { color: var(--accent-hover); }

.footer-link[href^="mailto:"] {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.footer-link[href*="instagram.com"] {
  grid-column: 3;
  grid-row: 1;
}

.footer-link[href*="facebook.com"] {
  grid-column: 3;
  grid-row: 2;
}

.footer-link[href*="contact.html"] {
  grid-column: 3;
  grid-row: 3;
}

.footer-link[href*="returns-policy.html"] {
  grid-column: 3;
  grid-row: 4;
}

.footer-copyright {
  color: var(--muted);
  font-size: 0.86rem;
  margin-bottom: 0;
  margin-top: 0;
  grid-column: 1 / 3;
  grid-row: 7;
  padding-top: 1rem;
}

.footer-contact,
.footer-location {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.footer-contact a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.94rem;
  text-decoration: none;
}

.footer-location {
  max-width: 24rem;
  grid-column: 1;
  grid-row: 2;
  font-size: 0.9rem;
}

.footer-license {
  color: #8d857d;
  font-size: 0.74rem;
  letter-spacing: 0.15px;
  margin-bottom: 0;
  grid-column: 3;
  grid-row: 7;
  padding-top: 1rem;
  text-align: right;
}

.footer-contact {
  grid-column: 2;
  grid-row: 2;
}

.footer-content::after {
  content: '';
  grid-column: 1 / -1;
  grid-row: 6;
  width: 100%;
  border-top: 1px solid var(--border);
  margin-top: 0.4rem;
}

.policy-list {
  margin: 1rem 0 1.5rem 1.25rem;
  color: var(--muted);
}

.policy-list li {
  margin-bottom: 0.75rem;
}

.policy-note,
.checkout-policy-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.checkout-policy-note a,
.policy-note a {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .footer { padding: 2rem 0 1.5rem; margin-top: 2rem; }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .footer-brand {
    grid-column: 1;
    grid-row: 1;
  }
  .footer-location {
    grid-column: 1;
    grid-row: 2;
  }
  .footer-link[href^="mailto:"] { grid-column: 1; grid-row: 3; }
  .footer-contact { grid-column: 1; grid-row: 4; }
  .footer-link[href*="instagram.com"] { grid-column: 1; grid-row: 5; }
  .footer-link[href*="facebook.com"] { grid-column: 1; grid-row: 6; }
  .footer-link[href*="contact.html"] { grid-column: 1; grid-row: 7; }
  .footer-link[href*="returns-policy.html"] { grid-column: 1; grid-row: 8; }
  .footer-content::after { grid-column: 1; grid-row: 9; margin-top: 0.7rem; }
  .footer-copyright {
    grid-column: 1;
    grid-row: 10;
    padding-top: 0.8rem;
  }
  .footer-license {
    grid-column: 1;
    grid-row: 11;
    text-align: left;
    padding-top: 0;
  }
  .footer-contact a {
    font-size: 1rem;
  }
  .footer-location,
  .footer-license,
  .footer-copyright {
    max-width: 100%;
  }
}

.footer-instagram-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.6rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #D85A30 0%, #B94B27 100%);
  color: #fff;
}

.footer-instagram-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-instagram-pill {
  border-radius: 999px;
  box-shadow: none;
  white-space: nowrap;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem 2rem;
  align-items: start;
}

.footer-brand-col,
.footer-contact-col,
.footer-links-col {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.footer-contact-col .footer-link,
.footer-links-col .footer-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.footer-bottom-bar {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reviews-feed-shell {
  display: grid;
  gap: 1.4rem;
}

.reviews-feed-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.8fr);
  gap: 1.2rem;
  align-items: end;
}

.reviews-feed-overview-copy {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.reviews-feed-summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 32px rgba(216, 90, 48, 0.08);
}

.reviews-feed-score {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 800;
}

.reviews-feed-stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.reviews-feed-summary-copy {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.reviews-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reviews-feed-card {
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(67, 42, 24, 0.06);
}

.reviews-feed-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.reviews-feed-meta {
  display: flex;
  gap: 0.8rem;
  min-width: 0;
}

.reviews-feed-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  flex-shrink: 0;
}

.reviews-feed-avatar.theme-peach { background: #FAECE7; color: #993C1D; }
.reviews-feed-avatar.theme-mint { background: #E1F5EE; color: #0F6E56; }
.reviews-feed-avatar.theme-lilac { background: #EEEDFE; color: #5346B3; }

.reviews-feed-name-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.reviews-feed-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--text);
}

.reviews-feed-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: #E1F5EE;
  color: #0F6E56;
  font-size: 0.68rem;
  font-weight: 700;
}

.reviews-feed-product,
.reviews-feed-variant,
.reviews-feed-date {
  margin: 0.16rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.reviews-feed-product {
  color: var(--text);
  font-weight: 600;
}

.reviews-feed-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.reviews-feed-rating-number {
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 600;
}

.reviews-feed-text {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.reviews-feed-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.reviews-feed-photo-button {
  border: none;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.reviews-feed-photo-button img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(67, 42, 24, 0.08);
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .reviews-feed-overview,
  .reviews-feed-grid,
  .footer-main-grid {
    grid-template-columns: 1fr;
  }

  .footer-instagram-strip,
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===========================
   BACK TO TOP
   =========================== */

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease, background 0.2s ease;
  z-index: 200;
  box-shadow: 0 4px 14px rgba(196, 81, 26, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* ===========================
   PRINT
   =========================== */

@media print {
  .navbar, .footer { display: none; }
  body { background: white; }
}
