/**
 * SophEva Secondary Pages Stylesheet
 * Ingredients Library, About Us, How It Works, FAQs, Contact & Single Ingredient Templates
 * 100% tokenized with CSS custom properties from variables.css
 *
 * @package SophEva
 */

/* ==========================================================================
   1. Shared Page Hero & Breadcrumbs
   ========================================================================== */
.page-hero {
  padding: 64px 0 40px;
  background: linear-gradient(180deg, var(--color-sand) 0%, var(--color-cream) 100%);
  border-bottom: 1px solid var(--color-line);
}

.page-hero h1 {
  font-size: var(--text-h1);
  margin-top: 10px;
}

.page-hero p {
  font-size: var(--text-lead);
  line-height: var(--lh-relaxed);
  color: var(--color-muted);
}

.ingredient-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-caption);
  color: var(--color-muted);
}

.ingredient-breadcrumb a {
  color: var(--color-ink);
  font-weight: var(--fw-semibold);
  transition: color var(--trans-fast);
}

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

/* ==========================================================================
   2. Ingredients Library & Filter Bar
   ========================================================================== */
.ing-filter-section {
  padding: 48px 0 64px;
}

.ingredients-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.ing-catalog-card {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast), border-color var(--trans-fast);
}

.ing-catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-terra-2);
}

.ing-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.ing-qty-pill {
  font-size: var(--text-mini);
  font-weight: var(--fw-extrabold);
  color: var(--color-terra);
  background: rgba(var(--color-terra-rgb), 0.08);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.ing-catalog-title {
  font-size: var(--text-h3);
  margin-bottom: 6px;
}

.ing-catalog-desc {
  font-size: var(--text-body-sm);
  color: var(--color-muted);
  line-height: var(--lh-normal);
  margin: 10px 0 16px;
  flex-grow: 1;
}

.ing-card-footer {
  padding-top: 14px;
  border-top: 1px solid var(--color-line);
}

.ing-deep-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-caption);
  font-weight: var(--fw-bold);
  color: var(--color-terra);
  transition: transform var(--trans-fast);
}

.ing-deep-link:hover {
  transform: translateX(3px);
}

.ing-deep-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-terra);
}

/* Quality Standards Banner */
.ing-standards-section {
  padding: 32px 0 72px;
}

.standards-box {
  background: var(--color-sand);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

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

.standard-pill-card {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.standard-pill-card svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-terra);
}

.standard-pill-card b {
  font-size: var(--text-body);
  color: var(--color-ink);
}

.standard-pill-card p {
  font-size: var(--text-body-sm);
  color: var(--color-muted);
  line-height: var(--lh-normal);
  margin: 0;
}

/* ==========================================================================
   3. About Page
   ========================================================================== */
.about-story-section {
  padding: var(--pad) 0;
}

.about-story-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--color-sand);
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-floating-quote {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(32, 22, 15, 0.90);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  color: var(--color-white);
}

.about-floating-quote p {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
  color: #f7efe7;
  margin: 0 0 8px;
}

.quote-by {
  font-family: var(--font-sans);
  font-size: var(--text-mini);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-terra-light);
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}

.about-stat b {
  font-family: var(--font-serif);
  font-size: var(--text-h2);
  color: var(--color-terra);
  display: block;
  line-height: 1.1;
}

.about-stat span {
  font-size: var(--text-caption);
  color: var(--color-muted);
  line-height: 1.35;
  margin-top: 4px;
  display: block;
}

.about-pillars-section {
  padding: var(--pad) 0;
  background: var(--color-paper);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

/* Our Promises Grid */
.about-promises-section {
  padding: var(--pad) 0;
  background: var(--color-paper);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

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

.promise-card {
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast), border-color var(--trans-fast);
}

.promise-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-terra-2);
}

.promise-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-peach);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.promise-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-terra);
}

.promise-card h4 {
  font-size: var(--text-h4);
  margin-bottom: 8px;
}

.promise-card p {
  font-size: var(--text-body-sm);
  color: var(--color-muted);
  line-height: var(--lh-normal);
  margin: 0;
}

/* Comparison Table */
.about-compare-section {
  padding: var(--pad) 0;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  margin-top: 40px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-body-sm);
}

.compare-table thead tr {
  background: var(--color-sand);
}

.compare-table th {
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  text-align: left;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-line);
}

.compare-table th.col-sopheva {
  color: var(--color-terra);
  background: rgba(var(--color-terra-rgb), 0.05);
}

.compare-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-ink);
  vertical-align: middle;
}

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

.compare-table tbody tr:nth-child(even) {
  background: var(--color-paper);
}

.compare-table td.col-sopheva {
  background: rgba(var(--color-terra-rgb), 0.04);
}

.cmp-yes {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-terra);
  font-weight: var(--fw-semibold);
}

.cmp-yes svg {
  width: 15px;
  height: 15px;
  stroke: var(--color-terra);
  flex-shrink: 0;
}

.cmp-no {
  color: var(--color-muted);
  font-weight: var(--fw-medium);
}

.about-cta-section {
  padding: var(--pad) 0;
  background: var(--color-sand);
  border-top: 1px solid var(--color-line);
}

/* ==========================================================================
   4. How It Works Protocol & Roadmap
   ========================================================================== */
.how-protocol-section {
  padding: var(--pad) 0;
}

.protocol-steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.protocol-step-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: flex-start;
}

.step-time-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-body);
  font-weight: var(--fw-extrabold);
  width: fit-content;
}

.step-time-badge svg {
  width: 18px;
  height: 18px;
}

.step-time-badge.am {
  background: var(--color-peach);
  color: var(--color-terra);
}

.step-time-badge.day {
  background: var(--color-green-bg);
  color: var(--color-green);
}

.step-time-badge.pm {
  background: var(--color-navy-bg);
  color: var(--color-navy);
}

.step-time-label {
  font-size: var(--text-caption);
  font-weight: var(--fw-bold);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.protocol-card {
  background: var(--color-paper);
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.protocol-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-terra-2);
}

.protocol-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: var(--fw-bold);
  color: var(--color-terra);
  line-height: 1;
}

.protocol-card-header h3 {
  font-size: var(--text-h3);
}

.protocol-action-tag {
  font-size: var(--text-caption);
  font-weight: var(--fw-semibold);
  color: var(--color-terra);
  display: block;
  margin-top: 2px;
}

.protocol-card-text {
  font-size: var(--text-body);
  color: var(--color-ink);
  line-height: var(--lh-relaxed);
  margin-bottom: 20px;
}

.protocol-benefits-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-caption);
  font-weight: var(--fw-bold);
  color: var(--color-ink);
  background: var(--color-cream);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-line);
}

.benefit-chip svg {
  width: 13px;
  height: 13px;
  stroke: var(--color-terra);
}

.how-roadmap-section {
  padding: var(--pad) 0;
  background: var(--color-paper);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.roadmap-card {
  background: var(--color-card);
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.roadmap-card.featured {
  border-color: var(--color-terra);
  background: linear-gradient(180deg, #fffcf9 0%, #fff4ed 100%);
  box-shadow: var(--shadow-sm);
}

.roadmap-phase-tag {
  font-size: var(--text-mini);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-terra);
  display: block;
  margin-bottom: 6px;
}

.roadmap-card h3 {
  font-size: var(--text-h3);
  margin-bottom: 12px;
}

.roadmap-desc {
  font-size: var(--text-body-sm);
  color: var(--color-muted);
  line-height: var(--lh-normal);
  margin-bottom: 20px;
  flex-grow: 1;
}

.roadmap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.roadmap-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-body-sm);
  color: var(--color-ink);
}

.roadmap-list li svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-terra);
}

/* ==========================================================================
   5. FAQs & Safety Guide Page
   ========================================================================== */
.faq-main-section {
  padding: 48px 0 64px;
}

.faq-category-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

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

.faq-concierge-section {
  padding: 16px 0 72px;
}

/* ==========================================================================
   6. Contact Page
   ========================================================================== */
.contact-main-section {
  padding: var(--pad) 0;
}

.contact-form-card {
  background: var(--color-paper);
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.form-subtext {
  font-size: var(--text-body-sm);
  color: var(--color-muted);
  margin: 6px 0 24px;
}

/* Scoped to the contact card specifically — "form-row" is also the class
   WooCommerce uses on every account/login/address form row, and a bare
   .form-row{display:grid} rule was silently hijacking all of those. */
.contact-form-card .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: var(--text-caption);
  font-weight: var(--fw-bold);
  color: var(--color-ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--color-line-strong);
  font-family: var(--font-sans);
  font-size: var(--text-body-sm);
  background: var(--color-cream);
  color: var(--color-ink);
  outline: none;
  transition: border-color var(--trans-fast), background var(--trans-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-terra);
  background: var(--color-white);
}

.concierge-highlight-card {
  background: linear-gradient(135deg, var(--color-sand) 0%, #faede3 100%);
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: var(--color-peach);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.highlight-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-terra);
}

.concierge-highlight-card h4 {
  font-size: var(--text-h3);
  margin-bottom: 8px;
}

.concierge-highlight-card p {
  font-size: var(--text-body-sm);
  color: var(--color-muted);
  line-height: var(--lh-normal);
  margin-bottom: 12px;
}

.highlight-sub {
  font-size: var(--text-mini);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-terra);
}

.contact-channels-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-card {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.channel-card svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-terra);
  flex-shrink: 0;
}

.channel-card b {
  font-size: var(--text-body-sm);
  display: block;
  color: var(--color-ink);
}

.channel-card a,
.channel-card span {
  font-size: var(--text-body-sm);
  color: var(--color-terra);
  font-weight: var(--fw-semibold);
  display: block;
}

.channel-card small {
  font-size: var(--text-mini);
  color: var(--color-muted);
  display: block;
  margin-top: 2px;
}

/* ==========================================================================
   7. Single Ingredient Template
   ========================================================================== */
.ingredient-header-section {
  padding: 48px 0 32px;
  background: var(--color-sand);
  border-bottom: 1px solid var(--color-line);
}

.ingredient-lead-source {
  font-size: var(--text-lead);
  color: var(--color-muted);
}

.ingredient-body-section {
  padding: var(--pad) 0;
}

.ingredient-specs-card {
  position: sticky;
  top: 90px;
  background: var(--color-paper);
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.ingredient-specs-card h4 {
  font-size: var(--text-h4);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
}

.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.specs-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-body-sm);
}

.specs-list li span {
  color: var(--color-muted);
}

.specs-list li b {
  color: var(--color-ink);
  text-align: right;
}

.ingredient-rationale-box {
  background: var(--color-sand);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.ingredient-rationale-box .icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ingredient-rationale-box .icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-terra);
}

.ingredient-rationale-box h4 {
  font-size: var(--text-h4);
  margin-bottom: 4px;
}

.ingredient-rationale-box p {
  font-size: var(--text-body-sm);
  color: var(--color-muted);
  line-height: var(--lh-normal);
  margin: 0;
}

/* ==========================================================================
   8. Guided Video Practices Hub
   ========================================================================== */
.videos-main-section {
  padding: 48px 0 64px;
}

.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.video-card {
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  transition: all var(--trans-fast);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-terra-2);
}

.video-thumb-container {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-sand);
}

.video-thumb-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--trans-med);
}

.video-card:hover .video-thumb-container img {
  transform: scale(1.04);
}

.video-duration-pill {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(32, 22, 15, 0.88);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: var(--text-mini);
  font-weight: var(--fw-bold);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  z-index: 2;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 22, 15, 0.3);
  opacity: 0;
  transition: opacity var(--trans-fast);
  z-index: 2;
}

.video-card:hover .video-play-overlay {
  opacity: 1;
}

.play-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-terra);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.play-icon-circle svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
}

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

.video-cat-badge {
  font-size: var(--text-mini);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-terra);
  margin-bottom: 6px;
  display: block;
}

.video-card-body h3 {
  font-size: var(--text-h3);
  margin-bottom: 8px;
}

.video-card-desc {
  font-size: var(--text-body-sm);
  color: var(--color-muted);
  line-height: var(--lh-normal);
  margin-bottom: 16px;
  flex-grow: 1;
}

.video-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--color-line);
  font-size: var(--text-mini);
  color: var(--color-muted);
  font-weight: var(--fw-semibold);
}

.instructor-tag {
  color: var(--color-ink);
}

.level-tag {
  background: var(--color-sand);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.video-access-banner-section {
  padding: 16px 0 72px;
}


/* ==========================================================================
   9. Responsive Media Queries for Secondary Pages
   ========================================================================== */
@media (max-width: 992px) {
  .page-hero {
    padding: 48px 0 32px;
  }

  .standards-grid,
  .about-stats-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .protocol-step-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faq-concierge-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .ingredient-specs-card {
    position: static;
  }

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

  .video-access-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .video-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

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

  .page-hero h1 {
    font-size: clamp(26px, 6vw, 36px);
  }

  .ing-filter-section,
  .videos-main-section,
  .faq-main-section,
  .contact-main-section,
  .how-protocol-section,
  .about-story-section,
  .about-promises-section,
  .about-compare-section {
    padding: 36px 0;
  }

  .ing-filter-bar {
    gap: 6px;
    margin-bottom: 28px;
  }

  .ing-filter-btn,
  .video-filter-btn,
  .faq-cat-btn {
    padding: 8px 14px;
    font-size: var(--text-caption);
  }

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

@media (max-width: 640px) {
  .about-floating-quote {
    position: static;
    margin-top: 14px;
    padding: 16px;
  }

  .about-main-img {
    border-radius: var(--radius-md);
  }

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

  .protocol-card {
    padding: 20px 16px;
  }

  .protocol-benefits-chips {
    flex-direction: column;
    gap: 6px;
  }

  .standards-box {
    padding: 24px 16px;
  }

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

  .video-cards-grid {
    grid-template-columns: 1fr;
  }

  .ingredients-catalog-grid {
    grid-template-columns: 1fr;
  }

  .compare-table-wrap {
    border-radius: var(--radius-md);
    -webkit-overflow-scrolling: touch;
  }

  .compare-table {
    min-width: 520px;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 14px;
    font-size: 12px;
  }

  .faq-concierge-card .btn,
  .video-access-card .btn,
  .contact-form-card .btn {
    width: 100%;
  }

  .concierge-highlight-card {
    padding: 22px 18px;
  }

  .channel-card {
    padding: 14px;
  }
}

