/* ============================================ Best Gift Ideas â€” Lavender Sanctuary Theme Mobile-first | v1.1 Created by: Main Agent | 2026-08-13 Updated: Hero responsive fix, mobile tweaks ============================================ */
:root {
  --cream: #FAF9F6;
  --cream-warm: #F5F2EC;
  --lavender-soft: #E8E4F0;
  --lavender: #C7B8D9;
  --lavender-deep: #9B89B8;
  --lavender-ink: #6B5B8A;
  --slate: #2D2D35;
  --slate-light: #4A4A55;
  --slate-muted: #6E6E7A;
  --white: #FFFFFF;
  --green-botanical: #7A9B76;
  --green-deep: #5C7A58;
  --gold: #D4A843;
  --red-badge: #C75450;
  --border: #E0DCE8;
  --font-body: 'Georgia', 'Times New Roman', serif;
  --font-head: 'Georgia', 'Times New Roman', serif;
  --font-ui: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --shadow-sm: 0 1px 3px rgba(107, 91, 138, 0.08);
  --shadow-md: 0 4px 12px rgba(107, 91, 138, 0.10);
  --shadow-lg: 0 8px 24px rgba(107, 91, 138, 0.14);
  --max-width: 1200px;
  --gutter: 1rem;
}

/* ---Reset --- */
 *, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---Accessibility --- */
 .skip-link {
  position: absolute;
  top: -44px;
  left: 0;
  background: var(--lavender-ink);
  color: var(--white);
  padding: 12px 20px;
  font-size: 16px;
  z-index: 1000;
  text-decoration: none;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus {
  top: 0;
}
:focus-visible {
  outline: 3px solid var(--lavender-deep);
  outline-offset: 2px;
}

/* ---Layout --- */
 .container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---Header / Nav --- */
 .site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--gutter);
  gap: var(--space-md);
}
.site-logo {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(- -lavender-ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}
.site-logo__icon {
  font-size: 1.375rem;
  line-height: 1;
}
.site-nav {
  display: none;
}
.site-nav__list {
  list-style: none;
  display: flex;
  gap: var(--space-lg);
}
.site-nav__link {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: var(--slate-light);
  text-decoration: none;
  padding: var(--space-sm) 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.site-nav__link:hover, .site-nav__link:focus-visible {
  color: var(--lavender-ink);
  border-bottom-color: var(--lavender);
}
.site-nav__toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--slate-light);
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}
.site-nav--open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.site-nav--open .site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: var(--space-sm) 0;
}
.site-nav--open .site-nav__link {
  padding: var(--space-md) var(--gutter);
  border-bottom: 1px solid var(--border);
}
.back-home {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(- -lavender-ink);
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.back-home:hover, .back-home:focus-visible {
  background: var(--lavender-soft);
  color: var(--lavender-deep);
}

/* ---Hero --- */
 .hero {
  position: relative;
  overflow: hidden;
  background: var(--lavender-soft);
}
.hero__image-wrap {
  position: relative;
  width: 100%;
  height: 52vh;
  min-height: 420px;
  max-height: 600px;
  overflow: hidden;
}
.hero__image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 249, 246, 0.25) 0%, rgba(250, 249, 246, 0.35) 40%, rgba(250, 249, 246, 0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--gutter);
}
.hero__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: var(--space-lg) var(--gutter) var(--space-2xl);
  max-width: 42rem;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lavender-ink);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}
.hero__title {
  font-family: var(--font-head);
  font-size: 1.625rem;
  line-height: 1.2;
  color: var(--slate);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}
.hero__title em {
  color: var(--lavender-ink);
  font-style: italic;
}
.hero__desc {
  font-size: 0.9375rem;
  color: var(--slate-light);
  max-width: 32rem;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}
.hero__cta {
  display: inline-block;
  background: var(--lavender-ink);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-full);
  text-decoration: none;
  min-height: 44px;
  line-height: 1.5;
  transition: background 0.2s ease, transform 0.1s ease;
  box-shadow: var(--shadow-md);
}
.hero__cta:hover, .hero__cta:focus-visible {
  background: var(--lavender-deep);
  transform: translateY(-1px);
}

/* ---Section --- */
 .section {
  padding: var(--space-xl) 0;
}
.section--alt {
  background: var(--cream-warm);
}
.section__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--green-deep);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}
.section__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--slate);
  font-weight: 700;
}

/* ---Methodology --- */
 .methodology {
  background: var(--lavender-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.methodology__title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  color: var(--lavender-ink);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}
.methodology__text {
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.7;
}
.methodology__list {
  list-style: none;
  margin-top: var(--space-sm);
}
.methodology__list li {
  padding: var(--space-xs) 0 var(--space-xs) var(- -space-lg);
  position: relative;
  font-size: 0.875rem;
  color: var(--slate-light);
}
.methodology__list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green-deep);
  font-weight: 700;
}

/* ---Product Grid --- */
 .product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s ease, transform 0.15s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--lavender-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}
.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--red-badge);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  z-index: 2;
}
.product-card__badge--editor {
  background: var(--lavender-ink);
}
.product-card__badge--value {
  background: var(--green-deep);
}
.product-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__rank {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  color: var(--lavender-ink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}
.product-card__name {
  font-family: var(--font-head);
  font-size: 1rem;
  line-height: 1.3;
  color: var(--slate);
  margin-bottom: var(--space-xs);
  font-weight: 700;
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
}
.stars {
  display: inline-flex;
  gap: 1px;
  font-size: 0.875rem;
  line-height: 1;
}
.stars__filled {
  color: var(--gold);
}
.stars__empty {
  color: var(--border);
}
.product-card__rating-text {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--slate-muted);
}
.product-card__price {
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--lavender-ink);
  margin-bottom: var(--space-xs);
}
.product-card__best-for {
  font-size: 0.8125rem;
  color: var(--slate-muted);
  margin-bottom: var(--space-sm);
}
.product-card__pros-cons {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
  flex: 1;
}
.pros, .cons {
  font-size: 0.8125rem;
}
.pros__title, .cons__title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}
.pros__title {
  color: var(--green-deep);
}
.cons__title {
  color: var(--red-badge);
}
.pros ul, .cons ul {
  list-style: none;
}
.pros li, .cons li {
  padding-left: var(--space-md);
  position: relative;
  color: var(--slate-light);
  line-height: 1.5;
  font-size: 0.8125rem;
}
.pros li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--green-deep);
  font-weight: 700;
}
.cons li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--red-badge);
  font-weight: 700;
}
.product-card__cta {
  display: block;
  background: var(--lavender-soft);
  color: var(--lavender-ink);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid var(--lavender);
  min-height: 44px;
  line-height: 1.5;
  transition: background 0.2s ease, color 0.2s ease;
}
.product-card__cta:hover, .product-card__cta:focus-visible {
  background: var(--lavender-ink);
  color: var(--white);
}

/* ---E-E-A-T Trust Section --- */
 .trust {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.trust__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.trust__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--slate);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}
.trust__subtitle {
  font-size: 0.875rem;
  color: var(--slate-muted);
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.trust__card {
  text-align: center;
  padding: var(--space-md);
  background: var(--cream-warm);
  border-radius: var(--radius-md);
}
.trust__icon {
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
  line-height: 1;
}
.trust__card-title {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  color: var(--lavender-ink);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}
.trust__card-text {
  font-size: 0.8125rem;
  color: var(--slate-light);
  line-height: 1.5;
}
.author-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  margin-top: var(--space-lg);
}
.author-block__avatar {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--lavender-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--lavender);
  overflow: hidden;
  flex-shrink: 0;
}
.author-block__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}
.author-block__name {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate);
}
.author-block__title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--lavender-ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.author-block__bio {
  font-size: 0.875rem;
  color: var(--slate-light);
  max-width: 30rem;
  line-height: 1.6;
}
.author-block__credentials {
  font-size: 0.75rem;
  color: var(--slate-muted);
  font-style: italic;
}

/* ---FAQ --- */
 .faq {
  max-width: 48rem;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) 0;
}
.faq__question {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  color: var(--slate);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  min-height: 44px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}
.faq__question::after {
  content: '\25BE';
  font-size: 0.875rem;
  color: var(--lavender-ink);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq__item--open .faq__question::after {
  transform: rotate(180deg);
}
.faq__answer {
  display: none;
  padding-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.6;
}
.faq__item--open .faq__answer {
  display: block;
}

/* ---Footer Disclosure (footer-only, permanent rule) --- */
 
/* PERMANENT SITE RULE: Disclosures belong ONLY in the footer. Never inject into body, hero, or image areas. */
 .footer-disclosure {
  font-size: 0.8rem;
  color: #777;
  text-align: center;
  margin-top: 15px;
}

/* ---Footer --- */
 .site-footer {
  background: var(--slate);
  color: var(--cream-warm);
  padding: var(--space-xl) 0 var(--space-md);
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.site-footer__brand {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lavender-soft);
  margin-bottom: var(--space-xs);
}
.site-footer__desc {
  font-size: 0.8125rem;
  color: var(--slate-muted);
  line-height: 1.5;
  max-width: 24rem;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  list-style: none;
}
.site-footer__nav a {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--cream-warm);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.site-footer__nav a:hover, .site-footer__nav a:focus-visible {
  opacity: 1;
  color: var(--lavender-soft);
}
.site-footer__disclosure {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  font-size: 0.6875rem;
  color: var(--slate-muted);
  line-height: 1.5;
}
.site-footer__disclosure strong {
  color: var(--cream-warm);
}
.site-footer__bottom {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--slate-muted);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__bottom a {
  color: inherit;
}

/* ---Table Wrapper --- */
 .table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-md) 0;
  border-radius: var(--radius-md);
}
.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  min-width: 400px;
}
.table-wrapper th {
  background: var(--lavender-soft);
  color: var(--lavender-ink);
  font-family: var(--font-ui);
  font-weight: 600;
  text-align: left;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.75rem;
}
.table-wrapper td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--border);
  color: var(--slate-light);
}
.table-wrapper tr:last-child td {
  border-bottom: none;
}

/* ---Misc --- */
 .botanical-divider {
  text-align: center;
  padding: var(--space-sm) 0;
  font-size: 1rem;
  color: var(--green-botanical);
  opacity: 0.5;
  letter-spacing: 0.5rem;
}
.last-updated {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--slate-muted);
  text-align: center;
  margin-bottom: var(--space-md);
}

/* ---Legal Content (privacy policy, terms, etc.) --- */
 .legal-content {
  font-size: 0.9375rem;
  color: var(--slate-light);
  line-height: 1.7;
}
.legal-content__heading {
  font-family: var(--font-head);
  font-size: 1.125rem;
  color: var(--slate);
  font-weight: 700;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}
.legal-content__subheading {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  color: var(--lavender-ink);
  font-weight: 700;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}
.legal-content__text {
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.legal-content__text a {
  color: var(--lavender-ink);
  text-decoration: underline;
}
.legal-content__text a:hover, .legal-content__text a:focus-visible {
  color: var(--lavender-deep);
}
.legal-content__list {
  list-style: none;
  margin-bottom: var(--space-sm);
  padding-left: 0;
}
.legal-content__list li {
  padding-left: var(--space-lg);
  position: relative;
  font-size: 0.875rem;
  color: var(- -slate-light);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}
.legal-content__list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--lavender);
  font-weight: 700;
}
.legal-content__list li strong {
  color: var(--slate);
}

/* ---Article Page --- */
 .article-page {
  padding: var(--space-lg) 0;
}
.breadcrumbs {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--slate-muted);
  margin-bottom: var(--space-md);
}
.breadcrumbs a {
  color: var(--lavender-ink);
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.article-breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--slate-muted);
  margin-bottom: var(--space-md);
}
.article-breadcrumb a {
  color: var(--lavender-ink);
  text-decoration: none;
}
.article-breadcrumb a:hover {
  text-decoration: underline;
}
.article-breadcrumb span {
  margin: 0 0.25rem;
}
.article-page__title {
  font-family: var(--font-head);
  font-size: 1.625rem;
  line-height: 1.25;
  color: var(--slate);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

/* ---Article Byline --- */
 .article-byline {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border);
}
.article-byline__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(- -lavender);
}
.article-byline__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-byline__author {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--slate);
  margin: 0;
}
.article-byline__author strong {
  color: var(--lavender-ink);
}
.article-byline__meta {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--slate-muted);
  margin: 0;
}

/* ---Quick Summary Box --- */
 .quick-summary {
  background: var(--lavender-soft);
  border: 1px solid var(--lavender);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}
.quick-summary__title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--lavender-ink);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}
.quick-summary__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-summary__list li {
  padding: var(--space-xs) 0;
  font-size: 0.875rem;
  color: var(--slate-light);
  border-bottom: 1px solid var(- -border);
}
.quick-summary__list li:last-child {
  border-bottom: none;
}
.quick-summary__list li a {
  color: var(--lavender-ink);
  text-decoration: underline;
}
.quick-summary__list li a:hover {
  color: var(--lavender-deep);
}

/* ---Article Content Body --- */
 .article-content {
  font-size: 0.9375rem;
  color: var(--slate-light);
  line-height: 1.7;
}
.article-content__lead {
  font-size: 1.0625rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  font-weight: 500;
}

/* ---Video Embeds (responsive, 16:9) --- */
 /* Video cards — thumbnail + link (replaces iframe embeds) */
.video-card {
  max-width: 480px;
  margin: 1.25rem 0;
}
.video-thumb-link {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
}
.video-thumb {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.2s;
}
.video-thumb-link:hover .video-play-btn {
  background: rgba(139, 92, 246, 0.85);
}
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: var(--space-md) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--slate-muted);
  text-align: center;
  margin-top: -0.5rem;
  margin-bottom: var(--space-md);
  font-style: italic;
}
.video-subheading {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lavender-ink);
  margin-bottom: 0.5rem;
}
.article-content__heading {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--slate);
  font-weight: 700;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}
.article-content__subheading {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--lavender-ink);
  font-weight: 700;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}
.article-content__list {
  list-style: none;
  margin-bottom: var(--space-md);
  padding: 0;
}
.article-content__list li {
  padding-left: var(--space-lg);
  position: relative;
  font-size: 0.875rem;
  color: var(--slate-light);
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}
.article-content__list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--lavender);
  font-weight: 700;
}
.article-content__list li strong {
  color: var(--slate);
}
.article-content p {
  margin-bottom: var(--space-sm);
}
.article-content p strong {
  color: var(--slate);
}

/* ---Product Review Section --- */
 .product-review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.product-card__image-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--lavender-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-review__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
.product-review__badge {
  background: var(--red-badge);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: var(--radius-full);
}
.product-review__badge--editor {
  background: var(--lavender-ink);
}
.product-review__badge--value {
  background: var(--green-deep);
}
.product-review__rank {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--lavender-ink);
  font-weight: 700;
}
.product-review__name {
  font-family: var(--font-head);
  font-size: 1.125rem;
  color: var(--slate);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}
.product-review__rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
}
.product-review__rating-text {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--slate-muted);
}
.product-review__price {
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--lavender-ink);
  margin-bottom: var(--space-xs);
}
.product-review__price-note {
  font-size: 0.75rem;
  color: var(--slate-muted);
  font-weight: 400;
}
.product-review__best-for {
  font-size: 0.8125rem;
  color: var(--slate-muted);
  margin-bottom: var(--space-sm);
}
.product-review__specs {
  background: var(--cream-warm);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-sm);
}
.product-review__specs p {
  font-size: 0.75rem;
  color: var(--slate-light);
  margin: 0;
  line-height: 1.6;
}
.product-review__specs strong {
  color: var(--slate);
}
.product-review__pros-cons {
  display: grid;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}
.product-review__cta {
  display: block;
  background: var(--lavender-ink);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-decoration: none;
  min-height: 44px;
  line-height: 1.5;
  transition: background 0.2s ease;
  margin-top: var(--space-sm);
}
.product-review__cta:hover, .product-review__cta:focus-visible {
  background: var(--lavender-deep);
}

/* ---Featured Gift Guides (index.html) --- */
 .featured-guides {
  padding: var(--space-lg) 0;
}
.featured-guides__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.featured-guide-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s ease, transform 0.15s ease;
}
.featured-guide-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.featured-guide-card__media {
  aspect-ratio: 16 / 9;
  background: var(--lavender-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.featured-guide-card__body {
  padding: var(--space-md);
}
.featured-guide-card__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.featured-guide-card__title {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--slate);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-xs);
}
.featured-guide-card__desc {
  font-size: 0.8125rem;
  color: var(--slate-muted);
  line-height: 1.5;
}

/* ============================================ Tablet (>= 600px) ============================================ */
 @media (min-width: 600px) {
  :root {
    --gutter: 1.5rem;
  }
  .hero__image-wrap {
    height: 32vh;
    min-height: 260px;
    max-height: 340px;
  }
  .hero__inner {
    padding: var(--space-xl) var(--gutter) var(--space-2xl);
  }
  .hero__eyebrow {
    font-size: 0.8125rem;
  }
  .hero__title {
    font-size: 2.25rem;
  }
  .hero__desc {
    font-size: 1.0625rem;
    max-width: 36rem;
  }
  .hero__cta {
    font-size: 1rem;
  }
  .section {
    padding: var(--space-2xl) 0;
  }
  .section__header {
    margin-bottom: var(--space-xl);
  }
  .section__title {
    font-size: 1.875rem;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  .product-card__body {
    padding: var(--space-lg);
  }
  .product-card__name {
    font-size: 1.125rem;
  }
  .product-card__price {
    font-size: 1.25rem;
  }
  .trust {
    padding: var(--space-xl);
  }
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust__title {
    font-size: 1.5rem;
  }
  .methodology {
    padding: var(--space-xl);
  }
  .methodology__title {
    font-size: 1.25rem;
  }
  .methodology__text {
    font-size: 0.9375rem;
  }
  .methodology__list li {
    font-size: 0.9375rem;
  }
  .author-block__avatar {
    width: 80px;
    height: 80px;
  }
  .author-block__name {
    font-size: 1.125rem;
  }
  .author-block__bio {
    font-size: 0.9375rem;
    max-width: 32rem;
  }
  .faq__question {
    font-size: 1.0625rem;
  }
  .faq__answer {
    font-size: 0.9375rem;
  }
  .footer-disclosure {
    font-size: 0.8rem;
  }
  .legal-content {
    font-size: 1rem;
  }
  .legal-content__heading {
    font-size: 1.25rem;
  }
  .legal-content__subheading {
    font-size: 1rem;
  }
  .legal-content__text {
    font-size: 0.9375rem;
  }
  .legal-content__list li {
    font-size: 0.9375rem;
  }
  .article-page__title {
    font-size: 2rem;
  }
  .article-content {
    font-size: 1rem;
  }
  .article-content__lead {
    font-size: 1.125rem;
  }
  .article-content__heading {
    font-size: 1.375rem;
  }
  .article-content__subheading {
    font-size: 1.125rem;
  }
  .article-content__list li {
    font-size: 0.9375rem;
  }
  .product-review {
    padding: var(--space-xl);
  }
  .product-review__name {
    font-size: 1.25rem;
  }
  .quick-summary {
    padding: var(--space-lg);
  }
  .featured-guides__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  .featured-guide-card__title {
    font-size: 1.125rem;
  }
  .botanical-divider {
    font-size: 1.25rem;
    padding: var(--space-md) 0;
  }
  .last-updated {
    font-size: 0.8125rem;
  }
}

/* ============================================ Desktop (>= 900px) ============================================ */
 @media (min-width: 900px) {
  .site-header__inner {
    padding: var(--space-md) 0;
  }
  .site-logo {
    font-size: 1.25rem;
  }
  .site-nav {
    display: block;
  }
  .site-nav__toggle {
    display: none;
  }
  .hero__image-wrap {
    height: 35vh;
    min-height: 300px;
    max-height: 420px;
  }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(250, 249, 246, 0.10) 0%, rgba(250, 249, 246, 0.40) 50%, rgba(250, 249, 246, 0.88) 100%);
  }
  .hero__inner {
    padding: var(--space-3xl) var(--gutter) var(--space-3xl);
  }
  .hero__title {
    font-size: 3rem;
  }
  .hero__desc {
    font-size: 1.25rem;
    max-width: 36rem;
  }
  .section__title {
    font-size: 2.25rem;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .site-footer__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .site-footer__brand {
    font-size: 1.25rem;
  }
  .site-footer__desc {
    font-size: 0.875rem;
  }
  .site-footer__nav a {
    font-size: 0.875rem;
  }
  .site-footer__disclosure {
    font-size: 0.75rem;
  }
  .footer-disclosure {
    font-size: 0.8rem;
  }
  .site-footer__bottom {
    font-size: 0.75rem;
  }
  .author-block {
    flex-direction: row;
    text-align: left;
  }
}

/* ============================================ Large Desktop (>= 1200px) ============================================ */
 @media (min-width: 1200px) {
  .hero__image-wrap {
    height: 35vh;
    max-height: 460px;
  }
  .hero__title {
    font-size: 3.25rem;
  }
}

/* ============================================ Reduced Motion ============================================ */
 @media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================ Print ============================================ */
 @media print {
  .site-header, .site-footer, .hero__cta, .product-card__cta, .faq__question::after {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .hero__overlay {
    background: none;
  }
}

/* ============================================ Preserved from prior theme Classes used in index.html that have no equivalent in the new stylesheet ============================================ */

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.navbar .brand {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lavender-deep);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.navbar nav a {
  color: var(--slate-light);
  text-decoration: none;
  font-size: 0.85rem;
  margin-left: 1.5rem;
  transition: color 0.2s ease;
}

.navbar nav a:hover {
  color: var(--lavender-deep);
}

/* --- Navbar Dropdowns --- */
.nav-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 1.5rem;
}

.nav-dropdown__toggle {
  background: none;
  border: none;
  color: var(--slate-light);
  font-size: 0.85rem;
  font-family: var(--font-ui);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
}

.nav-dropdown__toggle::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.15em);
  margin-left: 0.3em;
}

.nav-dropdown__toggle:hover {
  color: var(--lavender-deep);
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 280px;
  max-width: 320px;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
  z-index: 1100;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  display: block;
}

.nav-dropdown__menu a {
  display: block;
  color: var(--slate-light);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  margin-left: 0;
  white-space: nowrap;
  overflow: visible;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown__menu a:hover {
  background: var(--lavender-soft);
  color: var(--lavender-deep);
}

/* --- Spotlight Section --- */
.spotlight-section {
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.spotlight-card {
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.spotlight-card.premier {
  border: 2px solid var(--lavender);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--lavender-soft) 100%);
  box-shadow: var(--shadow-lg);
}

.spotlight-image-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-media {
  width: 100%;
  height: 220px;
  max-height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-md);
}

.spotlight-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-content h2 {
  font-size: 1.35rem;
  margin: 0.5rem 0;
  color: var(--slate);
  font-weight: 700;
}

.spotlight-content p {
  color: var(--slate-light);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* --- Spotlight GIF/Media Clamp --- */
.spotlight,
[class*="spotlight"] {
  max-width: 800px;
  max-height: 280px;
}

[class*="spotlight"] img,
[class*="spotlight"] video,
[class*="spotlight"] picture,
[class*="spotlight"] svg {
  max-height: 160px;
  object-fit: contain;
  width: auto;
}

/* --- Section Title --- */
.section-title {
  font-size: 1.2rem;
  color: var(--slate);
  margin: 2.5rem 0 1.25rem 0;
  border-left: 4px solid var(--lavender);
  padding-left: 0.75rem;
  font-weight: 600;
}

/* --- Card Thumbnail --- */
.card-thumb {
  width: 100% !important;
  height: 130px !important;
  max-height: 130px !important;
  background: var(--lavender-light, #f3edf7) !important;
  border-radius: 6px !important;
  border: 1px solid var(--border) !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--slate-muted) !important;
  font-size: 0.75rem !important;
  text-align: center !important;
  margin-bottom: 0.85rem !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  aspect-ratio: auto !important;
}

.card-thumb img,
.card-thumb svg,
.card-thumb video,
.card-thumb picture {
  max-width: 100% !important;
  max-height: 130px !important;
  object-fit: contain !important;
}

/* --- Badge --- */
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lavender-deep);
  margin-bottom: 0.35rem;
  letter-spacing: 0.05em;
}

.badge-featured {
  color: #fbbf24 !important;
}

/* --- Product Card Typography (index.html uses h3/p inside .product-card) --- */
.product-card h2,
.product-card h3 {
  font-size: 0.825rem !important;
  margin-bottom: 0.5rem !important;
  color: var(--slate) !important;
  line-height: 1.4 !important;
}

.product-card h2 a,
.product-card h3 a {
  color: var(--slate) !important;
  text-decoration: none !important;
}

.product-card h2 a:hover,
.product-card h3 a:hover {
  color: var(--lavender-deep) !important;
}

.product-card p {
  color: var(--slate-light) !important;
  font-size: 0.825rem !important;
  line-height: 1.4 !important;
  margin-bottom: 1.25rem !important;
}

/* --- Button Link --- */
.btn-link {
  display: inline-block;
  text-align: center;
  background: var(--lavender);
  color: var(--slate) !important;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  text-decoration: none !important;
  border: 1px solid var(--lavender-deep);
  align-self: center;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn-link:hover {
  background: var(--lavender-deep);
  color: #fff !important;
  transform: translateY(-1px);
}

/* --- Footer (bare element, index.html uses <footer> not .site-footer) --- */
footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--slate-muted);
}

footer p {
  margin-bottom: 0.35rem;
}

/* --- Responsive (preserved) --- */
@media (max-width: 768px) {
  .spotlight-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .navbar {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem 1.25rem;
  }

  .navbar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .navbar nav a,
  .nav-dropdown {
    margin-left: 0;
  }

  .nav-dropdown__menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }

  .navbar nav a {
    margin-right: 1rem;
    font-size: 0.8rem;
  }

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

@media (max-width: 480px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .navbar .brand {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.05rem;
  }

  .spotlight-content h2 {
    font-size: 1.15rem;
  }
}

/* --- Gift Finder Widget --- */
.gift-finder {
  background: linear-gradient(135deg, var(--lavender-soft) 0%, var(--cream-warm) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  margin: 0 0 var(--space-2xl);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.gift-finder__title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--lavender-ink);
  margin-bottom: var(--space-xs);
}

.gift-finder__subtitle {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--slate-muted);
  margin-bottom: var(--space-xl);
}

.gift-finder__steps {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.gift-finder__step {
  flex: 1 1 200px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gift-finder__step-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lavender-deep);
  margin-bottom: var(--space-xs);
}

.gift-finder__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--lavender);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.gift-finder__select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--slate);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%239B89B8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.gift-finder__select:focus {
  outline: none;
  border-color: var(--lavender-deep);
  box-shadow: 0 0 0 3px rgba(155, 137, 184, 0.15);
}

.gift-finder__select:invalid {
  color: var(--slate-muted);
}

.gift-finder__btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-2xl);
  background: var(--lavender-ink);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.gift-finder__btn:hover {
  background: var(--lavender-deep);
}

.gift-finder__btn:active {
  transform: scale(0.98);
}

.gift-finder__btn:disabled {
  background: var(--lavender);
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .gift-finder {
    padding: var(--space-xl) var(--space-md);
  }

  .gift-finder__title {
    font-size: 1.3rem;
  }

  .gift-finder__steps {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
  }

  .gift-finder__step {
    max-width: 100%;
  }

  .gift-finder__select {
    font-size: 0.9rem;
  }
}
/* About page portrait */
.about-portrait {
  display: block;
  max-width: 240px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}
/* Gift finder overlaid on hero */
.gift-finder--overlay {
  background: rgba(255, 255, 255, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/* Visually hidden (for screen readers only) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}