/* ============================================
   For You Skin Bar — Shared Styles
   ============================================ */

/* ── CSS Variables ── */
:root {
  --bg-color: #F8F5EF;
  --bg-secondary: #FFFDF8;
  --bg-warm: #F8F5EF;
  --text-primary: #3A2E27;
  --text-secondary: #5A4C3A;
  --accent-light: rgba(200, 155, 60, 0.16);
  --accent-base: #C89B3C;
  --accent-dark: #C89B3C;
  --accent-hover: #B0852F;
  --amber-100: rgba(200, 155, 60, 0.16);
  --border-light: rgba(58, 46, 39, 0.1);
  --border-medium: #D1C5B5;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 25px 30px -12px rgba(58, 46, 39, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;
}

/* ── Reset ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .serif-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--text-primary);
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Glass Navigation ── */
.glass-nav {
  background: rgba(248, 245, 239, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s ease;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--accent-dark);
  color: white;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: scale(0.98);
}

/* ── Product Card ── */
.product-card {
  transition: transform 0.25s ease, box-shadow 0.3s ease;
  background: #F8F5EF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-base);
}

/* ── Glow Border Effect ── */
.glow-border { transition: box-shadow 0.2s; }
.glow-border:hover {
  box-shadow: 0 0 0 2px #F1D5A9, 0 8px 20px rgba(0,0,0,0.05);
}

/* ── Cart Drawer ── */
.cart-drawer {
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  transform: translateX(100%);
}
.cart-drawer.open {
  transform: translateX(0);
}

/* ── Mobile Menu Drawer ── */
.mobile-menu-drawer {
  transition: transform 0.3s ease-in-out;
  transform: translateX(-100%);
}
.mobile-menu-drawer.open {
  transform: translateX(0);
}

/* ── Safe Scroll Experience ──
   Content stays visible if JavaScript fails. Animation hiding only starts
   after JS adds body.animations-ready. */
.scroll-reveal,
.reveal-card,
.reveal-panel {
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

body.animations-ready .scroll-reveal,
body.animations-ready .reveal-card,
body.animations-ready .reveal-panel {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(2px);
  will-change: opacity, transform, filter;
}

body.animations-ready .reveal-panel {
  transform: translateY(28px) scale(0.985);
}

body.animations-ready .reveal-card {
  transform: translateY(20px);
  transition-delay: var(--reveal-delay, 0ms);
}

body.animations-ready .scroll-reveal.revealed,
body.animations-ready .reveal-card.revealed,
body.animations-ready .reveal-panel.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Premium-but-safe card polish. These do not change layout. */
.product-card,
.value-card,
.ingredient-card-about,
.ingredient-card,
.faq-item,
.trust-item,
.reward-card {
  backface-visibility: hidden;
}

.product-card img,
.blog-card img {
  transition: transform 0.5s ease;
}

.product-card:hover img,
.blog-card:hover img {
  transform: scale(1.035);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .reveal-card,
  .reveal-panel {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

@media (max-width: 768px) {
  body.animations-ready .scroll-reveal,
  body.animations-ready .reveal-card,
  body.animations-ready .reveal-panel,
  .scroll-reveal,
  .reveal-card,
  .reveal-panel {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ── Float Animation ── */
.floating-icon {
  animation: floatSoft 5s ease-in-out infinite;
}
@keyframes floatSoft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* ── Value / Ingredient Cards ── */
.value-card {
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -12px rgba(90, 50, 25, 0.12);
}

.ingredient-card-about {
  background: #F8F5EF;
  border-radius: 20px;
  padding: 24px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}
.ingredient-card-about:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 25px -8px rgba(90, 50, 25, 0.1);
}

/* ── Reward Card ── */
.reward-card {
  background: linear-gradient(135deg, #F8F5EF 0%, #DDE5D7 100%);
  border: 1px solid var(--border-medium);
}

/* ── Before/After Slider ── */
.before-after-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.ba-image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* ── Ingredient Card (Interactive) ── */
.ingredient-card {
  transition: all 0.2s;
  cursor: pointer;
}
.ingredient-card.active {
  background: var(--bg-secondary);
  border-left: 4px solid #C89B3C;
}

/* ── Filter Styles ── */
.filter-radio:checked + .filter-label {
  background: var(--accent-dark);
  color: white;
  border-color: var(--accent-dark);
}
.filter-label {
  transition: all 0.2s;
}
.filter-label:hover {
  border-color: var(--accent-dark);
}

/* ── Hide Scrollbar ── */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ── Forms ── */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5DDD3;
  border-radius: 12px;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: #F8F5EF;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
}
.form-input::placeholder {
  color: #B8AFA4;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5DDD3;
  border-radius: 12px;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: #F8F5EF;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235A4C3A' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.form-select:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5DDD3;
  border-radius: 12px;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: #F8F5EF;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s;
}
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.1);
}

/* ── FAQ Accordion ── */


/* ── Quiz Styles ── */
.quiz-progress-bar {
  height: 4px;
  background: #E5DDD3;
  border-radius: 2px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--accent-dark);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.quiz-option {
  display: block;
  padding: 16px 20px;
  border: 2px solid #E5DDD3;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.quiz-option:hover {
  border-color: var(--accent-base);
  background: var(--bg-secondary);
}
.quiz-option.selected {
  border-color: var(--accent-dark);
  background: rgba(200, 155, 60, 0.16);
  box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.15);
}

.quiz-option input[type="radio"],
.quiz-option input[type="checkbox"] {
  display: none;
}

/* ── Badge Styles ── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.badge-bestseller {
  background: #FEF3C7;
  color: #92400E;
}
.badge-new {
  background: #D1FAE5;
  color: #065F46;
}
.badge-digital {
  background: #E0E7FF;
  color: #3730A3;
}

/* ── Blog Article Content ── */
.article-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--text-primary);
}
.article-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--text-primary);
}
.article-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.article-content ul, .article-content ol {
  margin: 12px 0 16px 24px;
  color: var(--text-secondary);
}
.article-content li {
  margin-bottom: 8px;
  list-style: disc;
  line-height: 1.7;
}
.article-content ol li {
  list-style: decimal;
}
.article-content img {
  border-radius: var(--radius-md);
  margin: 20px 0;
}
.article-content a {
  color: var(--accent-dark);
  font-weight: 500;
}
.article-content a:hover {
  text-decoration: underline;
}
.article-content blockquote {
  border-left: 3px solid var(--accent-dark);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--bg-secondary);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* ── Trust Bar ── */

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #F8F5EF;
  border-radius: 16px;
  border: 1px solid var(--border-light);
}

/* ── Page Policy Content ── */
.policy-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  margin: 32px 0 12px;
}
.policy-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--text-primary);
}
.policy-content p {
  margin-bottom: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.policy-content ul {
  margin: 8px 0 16px 20px;
}
.policy-content li {
  list-style: disc;
  margin-bottom: 6px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Cart badge animation ── */
#cartCount {
  transition: transform 0.3s ease;
}
#cartCount.scale-125 {
  transform: scale(1.3);
}

/* ================================
   Foryou Skin Bar - Welcome Screen
================================ */

.welcome-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  color: #171312;
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.98) 0%, rgba(251, 247, 239, 0.9) 36%, rgba(251, 247, 239, 0.12) 61%, rgba(251, 247, 239, 0) 100%),
    url("../assets/brand/welcome-founder-bg.jpg") right center / cover no-repeat;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.welcome-screen.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.welcome-screen-pending body {
  overflow: hidden;
}

html.welcome-screen-pending .welcome-screen {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.welcome-screen-skip .welcome-screen {
  display: none;
}

.welcome-screen.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.welcome-screen-active {
  overflow: hidden;
}

.welcome-screen__panel {
  width: min(100%, 1120px);
  min-height: min(62vh, 570px);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3.2rem);
  position: relative;
  padding-bottom: 86px;
}

.welcome-screen__copy {
  text-align: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.welcome-screen__brandmark {
  width: min(430px, 82vw);
  margin: 0 auto clamp(1.35rem, 3vw, 2.2rem);
  display: block;
}

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

.welcome-screen__eyebrow {
  margin: 0 0 0.35rem;
  font-size: clamp(1rem, 2vw, 1.55rem);
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.welcome-screen h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6.1vw, 5.1rem);
  font-weight: 500;
  line-height: 0.92;
  text-transform: uppercase;
  color: #171312;
}

.welcome-screen__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: clamp(1.1rem, 2.4vw, 1.8rem) auto;
  color: #b08a55;
}

.welcome-screen__rule span {
  width: min(150px, 28vw);
  height: 1px;
  background: #b08a55;
}

.welcome-screen__subhead {
  max-width: 760px;
  margin: 0 auto clamp(1.2rem, 3vw, 1.85rem);
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  line-height: 1.45;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.welcome-screen__proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 720px;
  margin: 0 auto;
}

.welcome-screen__proof div {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(176, 138, 85, 0.35);
  color: #2c211b;
  font-size: 0.78rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
}

.welcome-screen__proof div:last-child {
  border-right: 0;
}

.welcome-screen__proof i {
  color: #3f5137;
  font-size: 1.55rem;
}

.welcome-screen__lifestyle {
  min-height: 450px;
  position: relative;
}


.welcome-screen__tagline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  background: #111111;
  color: #b08a55;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
}

.welcome-mobile-break {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .welcome-screen.is-visible .welcome-screen__copy {
    animation: welcomeCopyIn 900ms ease both;
  }

  .welcome-screen.is-visible .welcome-screen__lifestyle {
    animation: welcomeStillLifeIn 1000ms ease both;
  }
}

@keyframes welcomeCopyIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes welcomeStillLifeIn {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 900px) {
  .welcome-screen {
    justify-content: center;
    padding: 1rem;
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.9) 0%, rgba(251, 247, 239, 0.6) 52%, rgba(251, 247, 239, 0.28) 100%),
      url("../assets/brand/welcome-founder-bg.jpg") 69% center / cover no-repeat;
    overflow: hidden;
  }

  .welcome-screen__panel {
    width: min(100%, 560px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-bottom: 76px;
  }

  .welcome-screen__copy {
    padding: 3rem 0.5rem 0;
  }

  .welcome-screen__lifestyle {
    min-height: 245px;
    width: min(100%, 410px);
    margin: -0.25rem auto 0;
  }

  .welcome-screen__proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 500px;
  }

  .welcome-screen__proof div {
    min-height: 64px;
    font-size: 0.62rem;
    padding: 0.35rem;
  }

  .welcome-screen__proof i {
    font-size: 1.25rem;
  }

}

@media (max-width: 560px) {
  .welcome-screen {
    padding: 0.65rem;
  }

  .welcome-screen__brandmark {
    width: min(260px, 72vw);
    max-width: calc(100vw - 4rem);
    margin-bottom: 0.9rem;
  }

  .welcome-screen h1 {
    font-size: clamp(2.45rem, 11vw, 3.15rem);
    line-height: 0.94;
  }

  .welcome-screen__eyebrow,
  .welcome-screen__subhead {
    letter-spacing: 0.08em;
  }

  .welcome-screen__subhead {
    max-width: min(310px, 82vw);
    font-size: 0.78rem;
  }

  .welcome-screen__proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(330px, 86vw);
  }

  .welcome-screen__proof div:nth-child(2) {
    border-right: 0;
  }

  .welcome-screen__proof div:nth-child(1),
  .welcome-screen__proof div:nth-child(2) {
    border-bottom: 1px solid rgba(176, 138, 85, 0.35);
  }

  .welcome-screen__proof div {
    min-height: 58px;
    font-size: 0.54rem;
    padding-inline: 0.25rem;
  }

  .welcome-screen__lifestyle {
    min-height: 205px;
  }

  .welcome-screen__tagline {
    min-height: 64px;
    font-size: 0.9rem;
    line-height: 1.2;
    justify-content: center;
    text-align: center;
    padding-inline: 1rem;
    white-space: normal;
  }

  .welcome-mobile-break {
    display: block;
  }

}

@media (max-width: 390px), (max-height: 760px) {
  .welcome-screen h1 {
    font-size: clamp(2.15rem, 10vw, 2.8rem);
  }

  .welcome-screen__brandmark {
    width: min(230px, 68vw);
    margin-bottom: 0.7rem;
  }

  .welcome-screen__rule {
    margin-block: 0.85rem;
  }

  .welcome-screen__subhead {
    margin-bottom: 0.9rem;
    font-size: 0.82rem;
  }

  .welcome-screen__lifestyle {
    min-height: 170px;
  }
}

/* ================================
   ForYou Skin Bar - Bliss Hero
================================ */

.bliss-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 118px);
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 155, 60, 0.14), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(90, 107, 83, 0.16), transparent 35%),
    linear-gradient(115deg, #fbf6ed 0%, #f8efe2 46%, #efe2cd 100%);
  color: #2c211b;
}

.bliss-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.72), rgba(255,255,255,0.18)),
    url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%235A6B53' stroke-opacity='.08' stroke-width='1.2'%3E%3Cpath d='M40 160C88 132 93 85 160 50'/%3E%3Cpath d='M72 143c-18-17-28-33-30-55 22 4 39 15 52 34'/%3E%3Cpath d='M122 86c18 2 33 10 45 26-19 7-37 5-53-7'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}

.bliss-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(102deg, rgba(251,246,237,0.96) 0%, rgba(251,246,237,0.91) 43%, rgba(251,246,237,0) 43.2%);
  z-index: 1;
  pointer-events: none;
}

.bliss-hero-shell {
  position: relative;
  z-index: 2;
  width: 45vw;
  padding: 76px 24px 138px;
  margin: 0;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bliss-hero-copy {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  padding-left: 0;
  transform: translateY(-10px);
}

.bliss-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #5a6b53;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
}

.bliss-eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 74px;
  height: 2px;
  background: linear-gradient(90deg, #c89b3c, rgba(200,155,60,0));
}

.bliss-eyebrow i {
  color: #c89b3c;
}

.bliss-hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 7.2vw, 7.9rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  font-weight: 600;
  color: #2c211b;
  margin: 26px 0 28px;
}

.bliss-hero-copy h1 em {
  color: #5a6b53;
  font-style: italic;
  font-weight: 500;
}

.bliss-hero-copy p {
  max-width: 575px;
  color: #46392f;
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.8;
  margin: 0;
}

.bliss-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.bliss-btn {
  min-height: 58px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 2px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
  transition: all 0.28s ease;
}

.bliss-btn-primary {
  background: linear-gradient(135deg, #5a6b53, #354232);
  color: #f8f5ef;
  box-shadow: 0 18px 34px rgba(53,66,50,0.22);
}

.bliss-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 42px rgba(53,66,50,0.28);
}

.bliss-btn-secondary {
  background: rgba(255,255,255,0.48);
  color: #b0852f;
  border: 1px solid rgba(200,155,60,0.78);
  backdrop-filter: blur(14px);
}

.bliss-btn-secondary:hover {
  background: rgba(200,155,60,0.09);
  transform: translateY(-3px);
}

.bliss-mini-proof {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 520px;
  gap: 18px;
}

.bliss-mini-proof div {
  padding: 18px 20px;
  border-left: 3px solid rgba(200,155,60,0.75);
  background: rgba(255,255,255,0.42);
  box-shadow: 0 20px 40px rgba(58,46,39,0.06);
  backdrop-filter: blur(12px);
}

.bliss-mini-proof strong {
  display: block;
  color: #354232;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.bliss-mini-proof span {
  display: block;
  color: #6b5d50;
  font-size: 0.9rem;
}

.bliss-hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 55vw;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  border-left: 2px solid rgba(255,255,255,0.72);
  isolation: isolate;
  z-index: 1;
}

.bliss-image-card {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(239,226,205,0.08), rgba(255,255,255,0.05)),
    url("../assets/hero/natural_glow_skincare_hero_banner.png");
  background-size: cover;
  background-position: 78% center;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.015);
}

.bliss-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 16%, rgba(255,255,255,0.62), transparent 27%),
    linear-gradient(90deg, rgba(251,246,237,0.15), rgba(251,246,237,0.05));
  z-index: 2;
  pointer-events: none;
}

.bliss-hero-visual::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.95), transparent);
  z-index: 3;
}

.bliss-orb {
  position: absolute;
  border-radius: 999px;
  z-index: 4;
  pointer-events: none;
  border: 1px solid rgba(200,155,60,0.22);
}

.bliss-orb-one {
  width: 390px;
  height: 390px;
  right: -160px;
  top: 52px;
}

.bliss-orb-two {
  width: 190px;
  height: 190px;
  left: 18%;
  bottom: 90px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}

.bliss-feature-strip {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  width: min(1370px, calc(100% - 72px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(248,245,239,0.82);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(58,46,39,0.16);
  overflow: hidden;
}

.bliss-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  min-height: 116px;
  border-right: 1px solid rgba(200,155,60,0.18);
}

.bliss-feature:last-child {
  border-right: none;
}

.bliss-feature i {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(176,133,47,0.55);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b0852f;
  font-size: 1.28rem;
  flex: 0 0 auto;
}

.bliss-feature strong {
  display: block;
  color: #3a2e27;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.9rem;
  line-height: 1.35;
}

.bliss-feature span {
  display: block;
  color: #6b5d50;
  font-size: 0.82rem;
  margin-top: 5px;
}

/* Tablet */
@media (max-width: 1100px) {
  .bliss-hero-shell {
    display: block;
    width: 100%;
    padding: 54px 24px 40px;
    min-height: auto;
  }

  .bliss-hero-bg {
    background: linear-gradient(180deg, rgba(251,246,237,0.96), rgba(251,246,237,0.55));
  }

  .bliss-hero-copy {
    width: 100%;
    max-width: 760px;
    padding-left: 0;
    text-align: left;
  }

  .bliss-hero-visual {
    position: relative;
    width: calc(100% - 48px);
    max-width: 1440px;
    margin: 0 auto 220px auto;
    height: auto;
    min-height: 520px;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    border-left: none;
    border-top: 2px solid rgba(255,255,255,0.72);
    border-radius: 34px;
    overflow: hidden;
  }

  .bliss-image-card {
    background-position: 78% center;
  }

  .bliss-feature-strip {
    grid-template-columns: repeat(2, 1fr);
    bottom: 34px;
  }

  .bliss-feature:nth-child(2) {
    border-right: none;
  }

  .bliss-feature:nth-child(1),
  .bliss-feature:nth-child(2) {
    border-bottom: 1px solid rgba(200,155,60,0.18);
  }
}

/* Mobile */
@media (max-width: 700px) {
  .bliss-hero {
    min-height: auto;
  }

  .bliss-hero-shell {
    width: 100%;
    padding: 42px 24px 32px;
  }

  .bliss-hero-copy h1 {
    font-size: clamp(3.35rem, 17vw, 4.9rem);
    line-height: 0.92;
    margin-bottom: 20px;
  }

  .bliss-hero-copy p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .bliss-hero-actions {
    gap: 12px;
  }

  .bliss-btn {
    width: 100%;
    min-height: 56px;
  }

  .bliss-mini-proof {
    grid-template-columns: 1fr;
  }

  .bliss-hero-visual {
    width: calc(100% - 32px);
    margin: 0 auto 410px auto;
    min-height: 430px;
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
  }

  .bliss-image-card {
    background-position: 78% center;
  }

  .bliss-feature-strip {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    border-radius: 26px;
    bottom: 22px;
  }

  .bliss-feature {
    min-height: auto;
    padding: 18px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(200,155,60,0.18);
  }

  .bliss-feature:last-child {
    border-bottom: none;
  }

  .bliss-feature i {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }
}

/* Homepage trust-building story */
.home-proof-strip {
  background: #354232;
  color: #fffdf8;
}

.home-stat-card {
  min-height: 126px;
  padding: 22px 20px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.home-stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.92;
  font-weight: 600;
  color: #f8f5ef;
}

.home-stat-card span {
  display: block;
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  color: #e8dfcf;
}

.home-story-section {
  position: relative;
}

.home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.home-section-heading p,
.home-kicker {
  color: #5a6b53;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-section-heading h2 {
  max-width: 730px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7b5f23;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-text-link:hover {
  color: #354232;
}

.home-concern-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.home-concern-card {
  position: relative;
  min-height: 430px;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border-radius: 8px;
  color: #fffdf8;
  background: #354232;
  box-shadow: 0 18px 38px rgba(58, 46, 39, 0.12);
}

.home-concern-card:nth-child(1),
.home-concern-card:nth-child(2) {
  grid-column: span 3;
}

.home-concern-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.home-concern-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 48, 37, 0.05), rgba(37, 48, 37, 0.76));
}

.home-concern-card span,
.home-concern-card small {
  position: relative;
  z-index: 1;
  margin-inline: 22px;
}

.home-concern-card span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}

.home-concern-card small {
  display: block;
  max-width: 330px;
  margin-bottom: 22px;
  color: #f4ecdf;
  font-size: 0.92rem;
  line-height: 1.45;
}

.home-concern-card:hover img {
  transform: scale(1.05);
}

.home-concern-card--quiz::after {
  background: linear-gradient(180deg, rgba(176, 133, 47, 0.1), rgba(58, 46, 39, 0.82));
}

.home-social-proof {
  background:
    linear-gradient(90deg, rgba(248, 245, 239, 0.96), rgba(248, 245, 239, 0.82)),
    url("../assets/brand/welcome-lifestyle-clean-branded-v2.png") right center / cover no-repeat;
}

.home-customer-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(58, 46, 39, 0.12);
}

.home-ingredient-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid rgba(58, 46, 39, 0.09);
  border-radius: 8px;
  background: #fffdf8;
  color: #3a2e27;
  box-shadow: 0 10px 28px rgba(58, 46, 39, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(58, 46, 39, 0.1);
}

.home-ingredient-card img {
  width: 132px;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.home-ingredient-card div {
  padding: 20px;
}

.home-ingredient-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.home-ingredient-card p {
  color: #6b5d50;
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-shop-cta {
  background:
    linear-gradient(135deg, rgba(53, 66, 50, 0.98), rgba(90, 107, 83, 0.94)),
    url("../assets/brand/about-hero.png") center / cover no-repeat;
}

.home-shop-cta .home-kicker {
  color: #f3e6c7;
}

.home-cta-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(255, 253, 248, 0.75);
  border-radius: 999px;
  color: #fffdf8;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.home-cta-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 253, 248, 0.12);
}

.home-cta-btn--light {
  background: #fffdf8;
  color: #354232;
}

.home-cta-btn--light:hover {
  background: #f3e6c7;
}

@media (max-width: 1024px) {
  .home-concern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-concern-card,
  .home-concern-card:nth-child(1),
  .home-concern-card:nth-child(2) {
    grid-column: span 1;
    min-height: 360px;
  }
}

@media (max-width: 700px) {
  .home-section-heading {
    display: block;
  }

  .home-section-heading h2 {
    margin: 8px 0 18px;
  }

  .home-concern-grid {
    grid-template-columns: 1fr;
  }

  .home-concern-card,
  .home-concern-card:nth-child(1),
  .home-concern-card:nth-child(2) {
    min-height: 330px;
  }

  .home-ingredient-card {
    grid-template-columns: 112px 1fr;
  }

  .home-ingredient-card img {
    width: 112px;
  }
}

/* Homepage clean visual pass */
.bliss-hero {
  min-height: 640px;
  background: linear-gradient(90deg, #fbf6ed 0%, #fbf6ed 47%, #efe2cd 100%);
}

.bliss-hero::before {
  opacity: 0.18;
}

.bliss-hero-bg {
  background: linear-gradient(90deg, rgba(251, 246, 237, 0.98) 0%, rgba(251, 246, 237, 0.96) 47%, rgba(251, 246, 237, 0) 47.1%);
}

.bliss-hero-shell {
  width: 48vw;
  min-height: 640px;
  padding: 64px 24px 80px;
}

.bliss-hero-copy {
  max-width: 620px;
  transform: none;
}

.bliss-eyebrow {
  color: #354232;
}

.bliss-hero-copy h1 {
  font-size: clamp(3.7rem, 6.2vw, 6.45rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 24px 0 24px;
}

.bliss-hero-copy p {
  max-width: 560px;
  color: #2c211b;
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.72;
}

.bliss-hero-visual {
  width: 52vw;
  clip-path: none;
  border-left: none;
}

.bliss-image-card {
  background-image: url("../assets/brand/welcome-lifestyle-clean-branded-v2.png");
  background-position: 62% center;
  filter: none;
  transform: none;
}

.bliss-hero-visual::before {
  display: none;
  content: none;
  background: none;
}

@media (min-width: 1101px) {
  .bliss-image-card {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.22) 4%,
      rgba(0, 0, 0, 0.72) 11%,
      #000 19%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.22) 4%,
      rgba(0, 0, 0, 0.72) 11%,
      #000 19%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

.bliss-hero-visual::after,
.bliss-orb,
.bliss-feature-strip {
  display: none;
}

.bliss-mini-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  gap: 12px;
}

.bliss-mini-proof div {
  padding: 14px 16px;
  background: transparent;
  border-left: 1px solid rgba(53, 66, 50, 0.26);
  box-shadow: none;
  backdrop-filter: none;
}

.home-proof-strip {
  background: #f8f5ef;
  padding-top: 30px;
  padding-bottom: 50px;
}

.home-proof-strip > .max-w-7xl {
  padding: 18px;
  border: 1px solid rgba(58, 46, 39, 0.08);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 42px rgba(58, 46, 39, 0.07);
}

.home-stat-card {
  min-height: 118px;
  padding: 18px 14px;
  border: 0;
  border-right: 1px solid rgba(58, 46, 39, 0.09);
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.home-stat-card:last-child {
  border-right: 0;
}

.home-stat-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border: 1px solid rgba(53, 66, 50, 0.2);
  border-radius: 999px;
  color: #354232;
  font-size: 0.95rem;
}

.home-stat-card strong {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  line-height: 1;
  color: #171312;
}

.home-stat-card span {
  margin-top: 8px;
  color: #5a4c3a;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.home-story-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.home-section-heading {
  align-items: flex-start;
  margin-bottom: 26px;
}

.home-section-heading h2 {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.home-concern-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-concern-card,
.home-concern-card:nth-child(1),
.home-concern-card:nth-child(2) {
  grid-column: auto;
  min-height: 0;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(58, 46, 39, 0.08);
  border-radius: 8px;
  background: #fffdf8;
  color: #2c211b;
  box-shadow: 0 12px 28px rgba(58, 46, 39, 0.06);
}

.home-concern-card::after {
  display: none;
}

.home-concern-card img {
  position: static;
  width: 100%;
  height: 218px;
  object-fit: cover;
  transform: none;
}

.home-concern-card span,
.home-concern-card small {
  margin-inline: 0;
}

.home-concern-card span {
  padding: 18px 20px 0;
  color: #253025;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.home-concern-card small {
  padding: 7px 20px 20px;
  margin-bottom: 0;
  max-width: none;
  color: #5a4c3a;
  font-size: 0.92rem;
}

.home-concern-card:hover img {
  transform: none;
}

.home-social-proof {
  background: #efe8da;
}

.home-customer-img {
  aspect-ratio: 5 / 4;
  max-height: 245px;
  object-position: center;
}

.home-ingredient-card {
  min-height: 132px;
}

.home-ingredient-card img {
  min-height: 132px;
}

.home-shop-cta {
  padding-top: 58px;
  padding-bottom: 58px;
}

@media (max-width: 1100px) {
  .bliss-hero {
    min-height: 0;
  }

  .bliss-hero-shell {
    width: 100%;
    min-height: auto;
    padding: 48px 24px 26px;
  }

  .bliss-hero-copy {
    max-width: 780px;
  }

  .bliss-hero-visual {
    position: relative;
    width: calc(100% - 48px);
    min-height: 420px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
  }
}

@media (max-width: 900px) {
  .home-concern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stat-card:nth-child(2) {
    border-right: 0;
  }

  .home-stat-card:nth-child(1),
  .home-stat-card:nth-child(2) {
    border-bottom: 1px solid rgba(58, 46, 39, 0.09);
  }
}

@media (max-width: 700px) {
  .bliss-hero-shell {
    padding: 38px 18px 22px;
  }

  .bliss-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .bliss-mini-proof {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .bliss-hero-visual {
    width: calc(100% - 28px);
    min-height: 340px;
  }

  .home-proof-strip > .max-w-7xl {
    padding: 10px;
  }

  .home-stat-card {
    min-height: 108px;
  }

  .home-concern-grid {
    grid-template-columns: 1fr;
  }

  .home-concern-card img {
    height: 210px;
  }

  .home-story-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-customer-img {
    max-height: none;
  }
}
