/*
Theme Name: Precise Cook
Template: twentytwentyfive
Text Domain: precise-cook
Version: 1.0.0
Description: Child theme of Twenty Twenty-Five for the Precise Cook brand.
Author: Janet Rajkoski
*/


:root :where(.is-layout-constrained) > * {
  margin-block-start: 0;
  margin: 0;
}


/* ==========================================================================
   Site Header
   ========================================================================== */

.pc-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* No backdrop-filter here — it would create a containing block for the
     fixed-position mobile nav overlay, capping it to the header's 80px height.
     The frosted-glass effect lives on ::before instead. */
}

/* Frosted-glass background on a pseudo-element so the header element itself
   never creates a containing block for fixed descendants. */
.pc-site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(213, 222, 232, 0.8);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow:
    0 1px 4px 0 rgba(12, 12, 13, 0.1),
    0 1px 4px 0 rgba(12, 12, 13, 0.05);
}

.pc-header-inner {
  height: 80px;
  max-width: 1280px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 32px;
}

.pc-header-logo {
  flex-shrink: 0;
  margin: 0;
  line-height: 0;
}

.pc-header-logo img {
  width: 149px;
  height: auto;
  display: block;
}

.pc-header-right {
  gap: 72px;
}

.pc-header-nav .wp-block-navigation__container {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-header-nav .wp-block-navigation-item__content.wp-block-navigation-item__content {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: var(--wp--preset--font-size--body);
  font-weight: 600;
  color: var(--wp--preset--color--slate);
  text-decoration: none;
  padding: 0;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.pc-header-nav .wp-block-navigation-item__content.wp-block-navigation-item__content:hover {
  color: var(--wp--preset--color--primary);
}

.pc-header-nav .current-menu-item .wp-block-navigation-item__content.wp-block-navigation-item__content,
.pc-header-nav .current-page-ancestor .wp-block-navigation-item__content.wp-block-navigation-item__content {
  color: var(--wp--preset--color--primary);
}

.pc-header-cta-wrap {
  flex-shrink: 0;
}

.pc-header-cta-btn .wp-block-button__link {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: var(--wp--preset--font-size--body);
  font-weight: 600;
  padding: 10px 20px;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}

.pc-header-cta-btn .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--primary-400);
  border-color: var(--wp--preset--color--primary-400);
  color: var(--wp--preset--color--white);
}

.pc-header-nav .wp-block-navigation__responsive-container-open {
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--wp--preset--color--slate);
}

/* ==========================================================================
   Hero Image Slider
   ========================================================================== */

.pc-hero-slider {
  position: relative;
  height: 1024px;
  overflow: hidden;
}

/* All slides: explicit 1024px matches the parent exactly.
   margin: 0 overrides WordPress block-gap which shifts absolute-positioned slides. */
.pc-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1024px;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  z-index: 0;
}

/* Override WP's is-position-bottom-left (specificity 0,3,0) — same specificity wins by load order */
.pc-hero-slide.wp-block-cover.has-custom-content-position {
  align-items: center;
  justify-content: flex-start;
}

.pc-hero-slide.pc-slide-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Gradient overlays via ::before — sits above bg image, below inner-container text */
.pc-hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Ensure text content renders above both ::before overlay and ::after glow */
.pc-hero-slide .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
}

.pc-slide-1::before {
  background: linear-gradient(90deg, var(--wp--preset--color--warm-brown) 19%, transparent 70%);
}

.pc-slide-2::before {
  background: linear-gradient(90deg, rgba(118, 99, 74, 0.9) 19%, transparent 70%);
}

.pc-slide-3::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 19%, transparent 70%);
}

.pc-slide-4::before {
  background: linear-gradient(90deg, rgba(81, 68, 51, 0.8) 19%, transparent 70%);
}

/* Warm blur glow effect */
.pc-hero-slide::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 1100px;
  top: -56px;
  left: 70px;
  filter: blur(50px);
  background: radial-gradient(ellipse, rgba(118, 99, 74, 0.55) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Slide inner container — 140px inward from left edge */
.pc-slide-inner {
  padding-left: 140px;
}

/* Typography */
.pc-slide-heading {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: var(--wp--preset--font-size--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--wp--preset--color--white);
}

.pc-slide-heading--accent {
  color: var(--wp--preset--color--primary);
}

.pc-slide-heading--mixed .pc-heading-accent {
  color: var(--wp--preset--color--primary);
}

.pc-slide-body {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: var(--wp--preset--font-size--subtitle);
  font-weight: 500;
  color: var(--wp--preset--color--white);
  max-width: 768px;
}

/* Buttons */
.pc-slide-buttons .pc-btn-primary .wp-block-button__link {
  background-color: var(--wp--preset--color--primary);
  border: 1px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border-radius: 9999px;
  padding: 10px 16px;
  font-family: var(--wp--preset--font-family--poppins);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.pc-slide-buttons .pc-btn-secondary .wp-block-button__link {
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--border);
  color: var(--wp--preset--color--input-text);
  border-radius: 9999px;
  padding: 10px 16px;
  font-family: var(--wp--preset--font-family--poppins);
  font-weight: 600;
  font-size: 1rem;
}

/* Dot navigation (JS-generated) */
.pc-slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  align-items: center;
  z-index: 10;
}

.pc-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: rgba(234, 236, 240, 0.8);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pc-slider-dot.is-active {
  background-color: var(--wp--preset--color--primary);
}

/* ==========================================================================
   Hero Tagline Section
   ========================================================================== */

.pc-tagline-section {
  background-color: var(--wp--preset--color--cloud);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pc-tagline-inner.wp-block-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 64rem;
  margin-inline: auto;
}

.pc-tagline-heading.wp-block-heading {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: var(--wp--preset--font-size--display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--wp--preset--color--dark);
  margin: 0;
}

.pc-tagline-heading-accent {
  color: var(--wp--preset--color--primary);
}

.pc-tagline-subtitle {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: var(--wp--preset--font-size--subtitle);
  font-weight: 500;
  line-height: 1.4;
  color: var(--wp--preset--color--text-placeholder);
  max-width: 48rem;
  margin: 0;
}

@media (max-width: 782px) {
  .pc-tagline-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pc-tagline-heading.wp-block-heading {
    font-size: var(--wp--preset--font-size--h1);
  }

  .pc-tagline-subtitle {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   Products Grid
   ========================================================================== */

.pc-products-section {
  --pc-product-card-radius: 1rem;
  --pc-products-heading-size: 3rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pc-products-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pc-section-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 0.125rem 0.5rem;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border-radius: 0.375rem;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 500;
  line-height: 1.43;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  margin-bottom: 0;
}

.pc-products-heading {
  font-size: var(--pc-products-heading-size);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--wp--preset--color--dark);
  margin-top: 0;
  margin-bottom: 0;
}

/* Two-column row gap */
.pc-products-row.wp-block-columns {
  gap: 2.5rem;
  margin: 2rem 0;
}

/* Product card — white background, bordered, rounded */
.pc-product-card.wp-block-column {
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--soft-grey);
  border-radius: var(--pc-product-card-radius);
  overflow: hidden;
}

/* Cover image — full bleed, fixed height */
.pc-product-card__image.wp-block-image {
  margin: 0;
}

.pc-product-card__image.wp-block-image img {
  width: 100%;
  height: 328px;
  object-fit: cover;
  display: block;
}

/* Card body — padding and stacked content */
.pc-product-card__body.wp-block-group {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: white;
}

.pc-product-card__name.wp-block-heading {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--wp--preset--color--dark);
  margin-top: 0;
  margin-bottom: 0;
}

.pc-product-card__desc {
  font-size: var(--wp--preset--font-size--body);
  line-height: 1.4;
  color: var(--wp--preset--color--dark);
  margin-top: 0;
  margin-bottom: 0;
}

/* "View Features →" text link */
.pc-product-card__link {
  margin-top: 0;
  margin-bottom: 0;
}

.pc-product-card__link a {
  color: var(--wp--preset--color--primary);
  font-family: var(--wp--preset--font-family--poppins);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 600;
  text-decoration: none;
}

.pc-product-card__link a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Waitlist Section
   ========================================================================== */

.pc-waitlist-section {
  --pc-waitlist-bg: var(--wp--preset--color--accent);
  --pc-waitlist-card-bg: var(--wp--preset--color--cloud);
  --pc-waitlist-card-radius: 0.75rem;
  background-color: var(--pc-waitlist-bg);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pc-waitlist-columns.wp-block-columns {
  gap: 3.75rem;
}

.pc-waitlist-content-col.wp-block-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pc-waitlist-heading.wp-block-heading {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--wp--preset--color--dark);
  margin-top: 0;
  margin-bottom: 0;
}

.pc-waitlist-body {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--wp--preset--color--dark);
  margin-top: 0;
  margin-bottom: 0;
}

.pc-waitlist-form-card.wp-block-group {
  background-color: var(--pc-waitlist-card-bg);
  border-radius: var(--pc-waitlist-card-radius);
  border: 1px solid var(--wp--preset--color--soft-grey);
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(12, 12, 13, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pc-waitlist-notice {
  font-size: var(--wp--preset--font-size--body);
  line-height: 1.25;
  color: var(--wp--preset--color--body-text);
  margin-top: 0;
  margin-bottom: 0;
}

.pc-waitlist-form {
  width: 100%;
}

.pc-waitlist-input-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.pc-waitlist-email-input {
  flex: 1;
  min-width: 0;
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 9999px;
  padding: 10px 14px;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: var(--wp--preset--font-size--body);
  color: var(--wp--preset--color--input-text);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  outline: none;
}

.pc-waitlist-email-input::placeholder {
  color: var(--wp--preset--color--text-placeholder);
}

.pc-waitlist-email-input:focus {
  border-color: var(--wp--preset--color--primary);
}

.pc-waitlist-submit-btn {
  background-color: var(--wp--preset--color--primary);
  border: 1px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border-radius: 9999px;
  padding: 10px 16px;
  font-family: var(--wp--preset--font-family--poppins);
  font-weight: 600;
  font-size: var(--wp--preset--font-size--body);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  transition: opacity 0.2s ease;
}

.pc-waitlist-submit-btn:hover {
  opacity: 0.9;
}

.pc-waitlist-image-col .wp-block-image {
  margin: 0;
}

.pc-waitlist-image-col .wp-block-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

/* ==========================================================================
   Our Story Section
   ========================================================================== */

.pc-story-section {
  --pc-story-cream: var(--wp--preset--color--cloud);
  --pc-story-gap: 4px;
  --pc-story-tint: rgba(112, 56, 35, 0.1);
  margin-top: 0;
  background-color: var(--pc-story-cream);
}

/* Zero-gap two-panel wrapper */
.pc-story-columns.wp-block-columns {
  gap: 0;
  align-items: stretch;
}

/* ---- Left panel ---- */
.pc-story-left.wp-block-column {
  padding: 4rem 2rem 4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.pc-story-heading.wp-block-heading {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--wp--preset--color--dark);
  margin: 0;
}

.pc-story-heading-accent {
  color: var(--wp--preset--color--primary);
}

.pc-story-body {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--wp--preset--color--body-text);
  margin: 0;
}

.pc-story-btn .wp-block-button__link {
  background-color: var(--wp--preset--color--primary);
  border: 1px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border-radius: 9999px;
  padding: 10px 20px;
  font-family: var(--wp--preset--font-family--poppins);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.pc-story-btn .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--primary-400);
  border-color: var(--wp--preset--color--primary-400);
  color: var(--wp--preset--color--white);
}

/* ---- Right panel (photo grid) ---- */
.pc-story-right.wp-block-column {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.pc-story-photo-grid.wp-block-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--pc-story-gap);
  padding: 0;
}

.pc-story-photo-row.wp-block-columns {
  flex: 1;
  min-height: 260px;
  gap: var(--pc-story-gap);
  align-items: stretch;
  margin-bottom: 0;
  margin-top: 0;
}

.pc-story-photo-item.wp-block-column {
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Warm tint overlay */
.pc-story-photo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--pc-story-tint);
  pointer-events: none;
}

.pc-story-photo-item .wp-block-image {
  height: 100%;
  margin: 0;
}

.pc-story-photo-item .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Bringing Precision Section
   ========================================================================== */

.pc-precision-section {
  background-color: var(--wp--preset--color--bg-blocks);
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-top: 0;
}

.pc-precision-columns.wp-block-columns {
  align-items: center;
  flex-wrap: nowrap;
  gap: 3rem;
}

/* Image column — horizontal flex so slider and progress bar sit side by side */
.pc-precision-image-col.wp-block-column {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}

/* Slider container */
.pc-precision-slider.wp-block-group {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  height: 414px;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0;
}

/* Individual slides */
.pc-precision-slide.wp-block-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  margin: 0;
}

.pc-precision-slide.wp-block-image.is-active {
  opacity: 1;
}

.pc-precision-slide.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* Vertical progress bar — fill driven by JS via --pc-precision-fill */
.pc-precision-progress {
  width: 1rem;
  height: 414px;
  background-color: var(--wp--preset--color--primary-100);
  border-radius: 9999px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.pc-precision-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pc-precision-fill, 16.67%);
  background-color: var(--wp--preset--color--primary);
  border-radius: 9999px;
  transition: height 0.6s ease;
}

/* Text column */
.pc-precision-text-col.wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.pc-precision-heading.wp-block-heading {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.125;
  color: var(--wp--preset--color--dark);
  margin: 0;
}

.pc-precision-heading-accent {
  display: block;
  font-size: 2.25rem;
  line-height: 1.167;
  letter-spacing: -0.02em;
  color: var(--wp--preset--color--primary);
}

.pc-precision-body {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--wp--preset--color--body-text);
  margin: 0;
}

@media (max-width: 782px) {
  .pc-precision-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .pc-precision-image-col.wp-block-column {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    flex-basis: 100%;
    max-width: 100%;
  }

  .pc-precision-slider.wp-block-group {
    flex: none;
    width: 100%;
    height: 414px;
    border-radius: 1rem;
  }

  /* Horizontal progress bar on mobile */
  .pc-precision-progress {
    width: 100%;
    height: 0.5rem;
  }

  .pc-precision-progress-bar {
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    height: 100%;
    width: var(--pc-precision-fill, 16.67%);
    transition: width 0.6s ease;
  }

  .pc-precision-text-col.wp-block-column {
    padding-left: 1rem;
    padding-right: 1rem;
    flex-basis: 100%;
    max-width: 100%;
  }

  .pc-precision-heading.wp-block-heading {
    font-size: 2rem;
    line-height: 1.3125;
  }

  .pc-precision-heading-accent {
    font-size: 1.5rem;
  }

  .pc-precision-body {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Problem We Set Out to Solve Section
   ========================================================================== */

.pc-problem-section {
  --pc-problem-section-padding-y-desktop: 5rem;
  --pc-problem-section-padding-y-mobile: 2rem;
  --pc-problem-side-padding-desktop: 3.5rem;
  --pc-problem-side-padding-mobile: 1rem;
  --pc-problem-gap-desktop: 3rem;
  --pc-problem-gap-mobile: 1.5rem;
  --pc-problem-image-height-desktop: 25.875rem;
  --pc-problem-image-height-mobile: 25.875rem;
  --pc-problem-radius: 1rem;
  --pc-problem-heading-size-desktop: 3rem;
  --pc-problem-heading-line-height-desktop: 1.125;
  --pc-problem-accent-size-desktop: 2.25rem;
  --pc-problem-accent-line-height-desktop: 1.167;
  --pc-problem-heading-size-mobile: 2rem;
  --pc-problem-heading-line-height-mobile: 1.3125;
  --pc-problem-accent-size-mobile: 1.5rem;
  --pc-problem-accent-line-height-mobile: 1.4;
  --pc-problem-body-size-desktop: 1.125rem;
  --pc-problem-body-size-mobile: 1rem;
  background-color: var(--wp--preset--color--cloud);
  padding-top: var(--pc-problem-section-padding-y-desktop);
  padding-bottom: var(--pc-problem-section-padding-y-desktop);
  margin-top: 0;
}

.pc-problem-columns.wp-block-columns {
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--pc-problem-gap-desktop);
  margin-top: 0;
  margin-bottom: 0;
}

.pc-problem-image-col.wp-block-column,
.pc-problem-text-col.wp-block-column {
  min-width: 0;
}

.pc-problem-image-col.wp-block-column {
  order: 2;
  padding-right: var(--pc-problem-side-padding-desktop);
}

.pc-problem-text-col.wp-block-column {
  order: 1;
  padding-left: var(--pc-problem-side-padding-desktop);
}

.pc-problem-copy.wp-block-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}

.pc-problem-copy .pc-problem-heading.wp-block-heading {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: var(--pc-problem-heading-size-desktop);
  font-weight: 600;
  line-height: var(--pc-problem-heading-line-height-desktop);
  letter-spacing: -0.02em;
  color: var(--wp--preset--color--dark);
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.pc-problem-heading-accent {
  display: block;
  font-size: var(--pc-problem-accent-size-desktop);
  line-height: var(--pc-problem-accent-line-height-desktop);
  letter-spacing: -0.02em;
  color: var(--wp--preset--color--primary);
}

.pc-problem-body {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: var(--pc-problem-body-size-desktop);
  font-weight: 400;
  line-height: 1.4;
  color: var(--wp--preset--color--body-text);
  margin: 0;
}

.pc-problem-image.wp-block-image {
  margin: 0;
  width: 100%;
  height: var(--pc-problem-image-height-desktop);
  border-radius: var(--pc-problem-radius);
  overflow: hidden;
}

.pc-problem-image.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pc-problem-image--mobile.wp-block-image {
  display: none;
}

@media (max-width: 782px) {
  .pc-problem-section {
    padding-top: var(--pc-problem-section-padding-y-mobile);
    padding-bottom: var(--pc-problem-section-padding-y-mobile);
  }

  .pc-problem-columns.wp-block-columns {
    gap: var(--pc-problem-gap-mobile);
  }

  .pc-problem-image-col.wp-block-column {
    order: 1;
    padding-left: 0;
    padding-right: 0;
  }

  .pc-problem-text-col.wp-block-column {
    order: 2;
    padding-left: 0;
    padding-right: 0;
  }

  .pc-problem-copy.wp-block-group {
    gap: 0.75rem;
  }

  .pc-problem-heading.wp-block-heading {
    font-size: var(--pc-problem-heading-size-mobile);
    line-height: var(--pc-problem-heading-line-height-mobile);
  }

  .pc-problem-heading-accent {
    font-size: var(--pc-problem-accent-size-mobile);
    line-height: var(--pc-problem-accent-line-height-mobile);
  }

  .pc-problem-body {
    font-size: var(--pc-problem-body-size-mobile);
  }

  .pc-problem-image.wp-block-image {
    height: var(--pc-problem-image-height-mobile);
  }

  .pc-problem-image--desktop.wp-block-image {
    display: none;
  }

  .pc-problem-image--mobile.wp-block-image {
    display: block;
  }
}

/* ==========================================================================
   Blogs & News Section
   ========================================================================== */

.pc-blogs-section {
  background-color: var(--wp--preset--color--accent);
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-top: 0;
}

.pc-blogs-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pc-blogs-heading.wp-block-heading {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--wp--preset--color--dark);
  margin: 0;
}

.pc-blogs-subtitle {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--wp--preset--color--dark);
  margin: 0;
}

.pc-blogs-cta-btn .wp-block-button__link {
  background-color: var(--wp--preset--color--primary);
  border: 1px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border-radius: 9999px;
  padding: 10px 16px;
  font-family: var(--wp--preset--font-family--poppins);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.pc-blogs-cta-btn .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--primary-400);
  border-color: var(--wp--preset--color--primary-400);
  color: var(--wp--preset--color--white);
}

/* Blog card grid */
.pc-blogs-grid.wp-block-columns {
  gap: 1.5rem;
}

/* Blog card */
.pc-blog-card.wp-block-column {
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--bg-blocks);
  border-radius: 1rem;
  overflow: hidden;
}

/* Blog card image */
.pc-blog-card__image.wp-block-image {
  margin: 0;
}

.pc-blog-card__image.wp-block-image img {
  width: 100%;
  height: 328px;
  object-fit: cover;
  display: block;
}

/* Blog card content */
.pc-blog-card__content.wp-block-group {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Category badge */
.pc-blog-card__badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 0.125rem 0.375rem;
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 0.375rem;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--wp--preset--color--input-text);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  margin: 0;
}

/* Card title */
.pc-blog-card__title.wp-block-heading {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--wp--preset--color--dark);
  margin: 0;
}

/* Card excerpt */
.pc-blog-card__excerpt {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--wp--preset--color--dark);
  margin: 0;
}

/* Meta row */
.pc-blog-card__meta.wp-block-group {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.25rem;
}

.pc-blog-card__date,
.pc-blog-card__read-time {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--wp--preset--color--input-text);
  margin: 0;
}

/* ==========================================================================
   Latest Articles Section
   ========================================================================== */

.pc-latest-articles {
  background-color: var(--wp--preset--color--bg-blocks);
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-top: 0;
}

.pc-latest-articles__heading.wp-block-heading {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--wp--preset--color--dark);
  margin: 0 0 1.5rem;
}

.pc-latest-articles__heading-accent {
  color: var(--wp--preset--color--primary);
}

.pc-latest-articles__grid.wp-block-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pc-latest-articles .pc-blog-card.wp-block-column {
  border-color: var(--wp--preset--color--border);
}

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

.pc-faq-section {
  --pc-faq-item-bg-open: var(--wp--preset--color--bg-blocks);
  --pc-faq-separator-color: var(--wp--preset--color--bg-blocks);
  --pc-faq-toggle-bg: var(--wp--preset--color--cloud);
  --pc-faq-toggle-border: var(--wp--preset--color--secondary);
  --pc-faq-toggle-active-bg: var(--wp--preset--color--secondary);
  background-color: var(--wp--preset--color--white);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pc-faq-header.wp-block-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pc-faq-heading.wp-block-heading {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--wp--preset--color--dark);
  text-align: center;
  margin: 0;
}

.pc-faq-subheading {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--wp--preset--color--dark);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.pc-faq-content {
  padding: 4rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.pc-faq-item {
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 4px 0 rgba(12, 12, 13, 0.05);
  background-color: transparent;
}

.pc-faq-item[open] {
  background-color: var(--pc-faq-item-bg-open);
}

/* Remove native browser disclosure triangle */
.pc-faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.556;
  color: #101828;
}

.pc-faq-item summary::-webkit-details-marker {
  display: none;
}

/* Hide legacy inline toggle spans (stored page content uses these; ::after handles the visual toggle) */
.pc-faq-toggle {
  display: none;
}

.pc-faq-item summary::marker {
  content: '';
}

.pc-faq-item summary::after {
  content: '';
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: var(--pc-faq-toggle-bg);
  border: 1px solid var(--pc-faq-toggle-border);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 1V11M1 6H11' stroke='%235C3D22' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pc-faq-item[open] summary::after {
  background-color: var(--pc-faq-toggle-active-bg);
  border-color: var(--pc-faq-toggle-active-bg);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6H11' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.pc-faq-answer {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--wp--preset--color--slate);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.pc-faq-item + .pc-faq-item {
  border-top: 1px solid var(--pc-faq-separator-color);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.pc-cta-section {
  --pc-cta-bg: var(--wp--preset--color--cloud);
  background-color: var(--pc-cta-bg);
  padding-top: 6rem;
  padding-bottom: 6rem;
  margin-top: 0;
}

.pc-cta-content.wp-block-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem;
  border-radius: 1rem;
}

.pc-cta-text.wp-block-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 768px;
  width: 100%;
}

.pc-cta-heading.wp-block-heading {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--wp--preset--color--dark);
  margin: 0;
}

.pc-cta-heading-accent {
  color: var(--wp--preset--color--primary);
}

.pc-cta-body {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--wp--preset--color--dark);
  margin: 0;
}

.pc-cta-actions.wp-block-buttons {
  gap: 0.75rem;
}

.pc-cta-btn-primary .wp-block-button__link {
  background-color: var(--wp--preset--color--primary);
  border: 1px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border-radius: 9999px;
  padding: 10px 20px;
  font-family: var(--wp--preset--font-family--poppins);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.pc-cta-btn-primary .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--primary-400);
  border-color: var(--wp--preset--color--primary-400);
  color: var(--wp--preset--color--white);
}

.pc-cta-btn-secondary .wp-block-button__link {
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--border);
  color: var(--wp--preset--color--input-text);
  border-radius: 9999px;
  padding: 10px 20px;
  font-family: var(--wp--preset--font-family--poppins);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.pc-cta-btn-secondary .wp-block-button__link:hover {
  background-color: #f9fafb;
  color: var(--wp--preset--color--input-text);
}

/* Mobile overrides — WP breakpoint */
@media (max-width: 782px) {
  .pc-header-inner {
    padding-inline: 16px;
  }

  .pc-header-right {
    gap: 16px;
  }

  .pc-header-cta-wrap {
    display: none;
  }

  .pc-hero-slider {
    height: 100svh;
  }

  .pc-hero-slide {
    height: 100svh;
  }

  .pc-slide-inner {
    padding-left: 0;
  }

  .pc-hero-slide::before {
    background: rgba(0, 0, 0, 0.35);
  }

  .pc-hero-slide::after {
    display: none;
  }

  .pc-slide-heading {
    font-size: 3rem;
    line-height: 1.08;
  }

  .pc-slide-body {
    font-size: 1.125rem;
    max-width: 100%;
  }

  .pc-slide-buttons {
    flex-direction: column;
  }

  .pc-slide-buttons .wp-block-button {
    width: 100%;
  }

  .pc-slide-buttons .wp-block-button .wp-block-button__link {
    width: 100%;
    justify-content: center;
  }

  .pc-products-section {
    --pc-products-heading-size: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pc-products-row.wp-block-columns {
    gap: 1.5rem;
  }

  .pc-product-card__image.wp-block-image img {
    height: 240px;
  }

  .pc-waitlist-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pc-waitlist-heading.wp-block-heading {
    font-size: 2rem;
  }

  .pc-waitlist-body {
    font-size: 1.125rem;
  }

  .pc-waitlist-input-row {
    flex-direction: column;
  }

  .pc-waitlist-email-input,
  .pc-waitlist-submit-btn {
    width: 100%;
  }

  .pc-waitlist-image-col {
    order: -1;
  }

  .pc-story-left.wp-block-column {
    padding: 3rem 1.5rem;
  }

  .pc-story-heading.wp-block-heading {
    font-size: 2rem;
  }

  .pc-story-body {
    font-size: 1rem;
  }

  .pc-story-photo-row.wp-block-columns {
    min-height: 160px;
  }

  .pc-blogs-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pc-blogs-heading.wp-block-heading {
    font-size: 2rem;
  }

  .pc-blogs-subtitle {
    font-size: 1rem;
  }

  .pc-blog-card__image.wp-block-image img {
    height: 220px;
  }

  .pc-latest-articles {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pc-latest-articles__heading.wp-block-heading {
    font-size: 2rem;
  }

  .pc-faq-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    margin-top: 0;
  }

  .pc-faq-heading.wp-block-heading {
    font-size: 2rem;
  }

  .pc-faq-content {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .pc-cta-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pc-cta-content.wp-block-group {
    padding: 2rem 1.5rem;
  }

  .pc-cta-heading.wp-block-heading {
    font-size: 1.75rem;
  }

  .pc-cta-body {
    font-size: 1.125rem;
  }

  .pc-cta-actions.wp-block-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .pc-cta-actions.wp-block-buttons .wp-block-button {
    width: 100%;
  }

  .pc-cta-actions.wp-block-buttons .wp-block-button .wp-block-button__link {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   CTA Waitlist
   ========================================================================== */

.pc-cta-waitlist {
  background-color: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pc-cta-waitlist__content.wp-block-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.pc-cta-waitlist__heading.wp-block-heading {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.045rem;
  color: var(--wp--preset--color--dark);
  margin-bottom: 0;
}

.pc-cta-waitlist__heading-accent {
  color: var(--wp--preset--color--primary);
}

.pc-cta-waitlist__body {
  font-size: 1.25rem;
  color: var(--wp--preset--color--body-text);
  line-height: 1.875rem;
  margin-bottom: 0;
}

.pc-cta-waitlist__card.wp-block-group {
  background-color: var(--wp--preset--color--cloud);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 768px;
  width: 100%;
}

.pc-cta-waitlist__notice {
  margin-bottom: 1rem;
  color: var(--wp--preset--color--body-text);
  font-size: 0.9375rem;
}

.pc-cta-waitlist__input-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.pc-cta-waitlist__email-input {
  flex: 1;
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  color: var(--wp--preset--color--dark);
  background-color: #fff;
  outline: none;
  min-width: 0;
}

.pc-cta-waitlist__email-input::placeholder {
  color: var(--wp--preset--color--text-placeholder);
}

.pc-cta-waitlist__email-input:focus {
  border-color: var(--wp--preset--color--primary);
}

.pc-cta-waitlist__submit-btn {
  border: none;
  border-radius: 9999px;
  background-color: var(--wp--preset--color--primary);
  color: #fff;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.pc-cta-waitlist__submit-btn:hover {
  opacity: 0.88;
}

@media (max-width: 782px) {
  .pc-cta-waitlist__heading.wp-block-heading {
    font-size: 2rem;
  }

  .pc-cta-waitlist__body {
    font-size: 1.125rem;
  }

  .pc-cta-waitlist__card.wp-block-group {
    max-width: 100%;
    padding: 1rem;
  }

  .pc-cta-waitlist__input-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pc-cta-waitlist__submit-btn {
    width: 100%;
  }
}

/* ==========================================================================
   Product Tabs Navigation
   ========================================================================== */

.pc-product-tabs {
  background-color: var(--wp--preset--color--accent);
  border-bottom: 1px solid #eaecf0;
}

.pc-product-tabs__inner {
  display: flex;
  gap: 0;
}


.pc-product-tab {
  flex: 1;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 12px 4px;
  text-align: center;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.43;
  color: #667085;
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}

.pc-product-tab:hover {
  color: var(--wp--preset--color--primary);
}

.pc-product-tab--active {
  color: var(--wp--preset--color--primary);
  border-bottom-color: var(--wp--preset--color--primary);
}

/* ==========================================================================
   Product Detail Section
   ========================================================================== */

.pc-product-detail {
  background-color: var(--wp--preset--color--accent);
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  overflow-x: clip;
}

.pc-product-detail__inner {
  max-width: 1440px;
  margin-inline: auto;
}

.pc-product-detail__columns {
  display: flex;
  align-items: flex-start;
  min-height: 968px;
  gap: 72px;
}

/* Left: info column */
.pc-product-detail__info {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 56px;
  height: 968px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
}

.pc-product-detail__info > * {
  margin-top: 0;
}

/* Right: media column */
.pc-product-detail__media {
  flex: 0 0 735px;
  width: 735px;
  max-width: 735px;
  min-width: 0;
  padding: 0 56px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  height: 968px;
}

.pc-product-detail__media.pc-product-media {
  gap: 32px;
}

/* Heading group */
.pc-product-detail__heading-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.pc-product-detail__title {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 48px;
  font-weight: 600;
  line-height: 54px;
  letter-spacing: -0.96px;
  color: #222;
  margin: 0;
}

.pc-product-detail__subtitle {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 36px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.72px;
  color: var(--wp--preset--color--primary, #610061);
  margin: 0;
}

/* Badge */
.pc-product-detail__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  background-color: var(--wp--preset--color--white, #fff);
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  font-family: var(--wp--preset--font-family--inter, 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #344054;
  margin: 0 0 16px;
}

.pc-product-detail__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #12b76a;
  flex-shrink: 0;
}

/* Description */
.pc-product-detail__desc {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #444;
  margin: 0 0 32px;
}

/* Feature list */
.pc-product-detail__features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 463px;
  max-width: 100%;
}

.pc-product-detail__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #475467;
  margin: 0;
}

.pc-product-detail__features li::before {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #e6dde9;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.5 8.5L11 1' stroke='%23610061' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Waitlist card */
.pc-product-detail__waitlist {
  background-color: #fbf8f2;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 4px 0 rgba(12, 12, 13, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
  width: 521px;
  max-width: 100%;
}

.pc-product-detail__waitlist-notice {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 16px;
  line-height: 20px;
  color: #444;
  margin: 0;
}

.pc-product-detail__waitlist-notice strong {
  font-weight: 600;
  color: #1c1c1c;
}

.pc-product-detail__waitlist-form {
  display: flex;
  gap: 16px;
  align-items: center;
}

.pc-product-detail__email-input {
  flex: 1;
  min-width: 0;
  background-color: var(--wp--preset--color--white, #fff);
  border: 1px solid #d0d5dd;
  border-radius: 9999px;
  padding: 10px 14px;
  font-family: var(--wp--preset--font-family--inter, 'Inter', sans-serif);
  font-size: 16px;
  line-height: 24px;
  color: #344054;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  outline: none;
}

.pc-product-detail__email-input::placeholder {
  color: #667085;
}

.pc-product-detail__email-input:focus {
  border-color: var(--wp--preset--color--primary, #610061);
}

.pc-product-detail__waitlist-btn {
  background-color: var(--wp--preset--color--primary, #610061);
  border: 1px solid var(--wp--preset--color--primary, #610061);
  color: var(--wp--preset--color--white, #fff);
  border-radius: 9999px;
  padding: 10px 16px;
  font-family: var(--wp--preset--font-family--inter, 'Inter', sans-serif);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.pc-product-detail__waitlist-btn:hover {
  opacity: 0.9;
}

/* Divider */
.pc-product-detail .wp-block-separator.pc-product-detail__divider {
  border: none;
  border-top: 1px solid #eaecf0;
  margin: 0 0 16px;
  opacity: 1;
}

/* Accordion — uses native wp:details blocks */
.pc-product-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pc-product-accordion__item {
  background-color: var(--wp--preset--color--white, #fff);
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(12, 12, 13, 0.05);
  width: 521px;
  max-width: 100%;
}

.pc-product-accordion__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  cursor: pointer;
  list-style: none;
  gap: 8px;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #101828;
}

.pc-product-accordion__item summary::-webkit-details-marker {
  display: none;
}

.pc-product-accordion__item summary::after {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9.25' stroke='%23667085' stroke-width='1.5'/%3E%3Cpath d='M12 8.5v7M8.5 12h7' stroke='%23667085' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease;
}

.pc-product-accordion__item[open] summary::after {
  transform: rotate(45deg);
}

.pc-product-accordion__item p {
  padding: 0 24px 16px;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 16px;
  line-height: 1.5;
  color: #475467;
  margin: 0;
}

/* ── Media library (native wp:image blocks) ── */

/* Main product image — wp:image figure */
figure.pc-product-media__main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 736px;
  width: 679px;
  max-width: 100%;
  margin: 0;
}

figure.pc-product-media__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay + play button — hidden by default, shown only for video */
figure.pc-product-media__main::before,
figure.pc-product-media__main::after {
  display: none;
}

figure.pc-product-media__main.pc-product-media__main--has-video::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  pointer-events: none;
  z-index: 1;
}

figure.pc-product-media__main.pc-product-media__main--has-video {
  cursor: pointer;
}

figure.pc-product-media__main.pc-product-media__main--has-video::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 2.5L17.5 10L5 17.5V2.5Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(50% + 2px) center;
  background-size: 20px 20px;
}

/* Video in main area — hidden until activated by JS */
figure.pc-product-media__main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Video active: swap visibility and remove overlay pseudo-elements */
figure.pc-product-media__main.pc-product-media__main--video-active img {
  display: none;
}

figure.pc-product-media__main.pc-product-media__main--video-active video {
  display: block;
}

figure.pc-product-media__main.pc-product-media__main--video-active::before,
figure.pc-product-media__main.pc-product-media__main--video-active::after {
  display: none;
}

/* Thumbnail strip — flex row of wp:image + wp:group blocks */
.pc-product-media__thumb-strip {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.pc-product-media__thumb-strip::-webkit-scrollbar {
  display: none;
}

/* Thumbnail image — wp:image figure */
figure.pc-product-media__thumb {
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  margin: 0;
  width: 120px;
  height: 150px;
  transition: border-color 0.15s ease, width 0.15s ease, height 0.15s ease;
}

figure.pc-product-media__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

figure.pc-product-media__thumb--active {
  border-color: var(--wp--preset--color--primary);
  width: 130px;
  height: 160px;
}

.pc-product-media__thumb-video.pc-product-media__thumb--active {
  border-color: var(--wp--preset--color--primary);
  width: 130px;
  height: 160px;
}

/* Video thumbnail (wp:video block) */
.pc-product-media__thumb-video {
  flex-shrink: 0;
  width: 120px;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  cursor: pointer;
  margin: 0;
  transition: border-color 0.15s ease, width 0.15s ease, height 0.15s ease;
}

.pc-product-media__thumb-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.pc-product-media__thumb-video::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 2.5L17.5 10L5 17.5V2.5Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(50% + 2px) center;
  background-size: 18px 20px;
  z-index: 1;
}

/* Nav arrow button */
.pc-product-media__nav-btn {
  position: absolute;
  right: 12px;
  top: calc(736px / 2);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--wp--preset--color--white);
  border: 1px solid #eaecf0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(12, 12, 13, 0.05);
  transition: box-shadow 0.2s ease;
}

.pc-product-media__nav-btn:hover {
  box-shadow: 0 2px 8px rgba(12, 12, 13, 0.12);
}

/* ==========================================================================
   Product How It Works Section
   ========================================================================== */

/* Reset WordPress layout gap inside how-it-works groups */
.pc-how-it-works .wp-block-group > * + * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.pc-how-it-works.wp-block-group {
  background-color: var(--wp--preset--color--cloud);
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.pc-how-it-works__header {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  padding-inline: 32px;
  margin-bottom: 6.25rem;
}

.pc-how-it-works__title {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--wp--preset--color--dark);
  margin: 0 0 16px;
}

.pc-how-it-works__title-accent {
  color: var(--wp--preset--color--primary);
}

.pc-how-it-works__subtitle {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  color: #444;
  margin: 0;
}

/* Desktop three-column layout */
.pc-how-it-works__layout {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pc-how-it-works__cards-left,
.pc-how-it-works__cards-right {
  flex: 0 0 322px;
  width: 322px;
  display: flex;
  flex-direction: column;
  gap: 74px;
  position: relative;
  align-self: stretch;
}

.pc-how-it-works__cards-left {
  align-items: flex-start;
}

.pc-how-it-works__cards-right {
  align-items: flex-end;
}

.pc-how-it-works__product {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.pc-how-it-works__product-img {
  margin: 0;
}

.pc-how-it-works__product-img img {
  height: 460px;
  width: 256px;
  display: block;
  object-fit: cover;
}

/* Arrow connector positioned in the gap between the two cards */
.pc-how-it-works__arrow-wrap {
  position: absolute;
  right: -80px;
  top: 200px;
  width: 180px;
  height: 180px;
  line-height: 0;
}

.pc-how-it-works__arrow-wrap svg {
  display: block;
  width: 100%;
  height: 100%;
}

.pc-how-it-works__arrow-wrap--flip {
  right: auto;
  left: -80px;
}

/* Instruction cards */
.pc-instruction-card {
  background-color: var(--wp--preset--color--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow:
    0px 1px 4px 0px #b5623a,
    0px 1px 4px 0px rgba(12, 12, 13, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 275px;
  min-height: 195px;
  gap: 8px;
  text-align: center;
}

/* Desktop card sizing */
.pc-how-it-works__layout .pc-instruction-card {
  width: 233px;
  height: 218px;
  justify-content: center;
}

.pc-instruction-card__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #5c3d22;
  color: var(--wp--preset--color--white);
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pc-instruction-card__title {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1c1c1c;
  margin: 0;
}

.pc-instruction-card__desc {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4;
  color: #444;
  margin: 0;
}

/* Mobile stacked layout — hidden on desktop, visible on mobile */
.pc-how-it-works__mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  padding-inline: 16px;
  max-width: 420px;
  margin-inline: auto;
}

.pc-how-it-works__mobile-product-img {
  margin: 0 auto 24px;
}

.pc-how-it-works__mobile-product-img img {
  height: 350px;
  width: auto;
  display: block;
  object-fit: cover;
}

.pc-how-it-works__mobile-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pc-how-it-works__mobile-card-wrap {
  position: relative;
}

.pc-how-it-works__mobile-card-wrap .pc-instruction-card {
  width: 100%;
}

.pc-how-it-works__mobile-arrow {
  position: absolute;
  right: -70px;
  bottom: -80px;
  z-index: 1;
  line-height: 0;
  width: 108px;
  height: 108px;
}

.pc-how-it-works__mobile-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Product Tabs + Detail + How It Works — Mobile overrides
   ========================================================================== */

@media (max-width: 782px) {
  /* Tabs */
  .pc-product-tab {
    font-size: 0.8125rem;
    padding: 10px 8px;
  }

  /* Product detail */
  .pc-product-detail__inner {
    padding: 32px 16px;
  }

  .pc-product-detail__columns {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    min-height: auto;
    gap: 24px;
  }

  .pc-product-detail__info {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 0;
    order: 2;
    height: auto;
    overflow: visible;
    justify-content: flex-start;
  }

  .pc-product-detail__media {
    flex: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    order: 1;
    height: auto;
    overflow: visible;
    gap: 16px;
  }

  .pc-product-detail__heading-group {
    gap: 4px;
    margin-bottom: 8px;
  }

  .pc-product-detail__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.64px;
  }

  .pc-product-detail__subtitle {
    font-size: 24px;
    line-height: normal;
    letter-spacing: -0.48px;
  }

  .pc-product-detail__desc {
    font-size: 16px;
    line-height: 1.4;
  }

  .pc-product-detail__features li {
    font-size: 16px;
    line-height: 24px;
  }

  .pc-product-detail__waitlist {
    width: 100%;
  }

  .pc-product-detail__waitlist-form {
    flex-direction: column;
  }

  .pc-product-detail__email-input,
  .pc-product-detail__waitlist-btn {
    width: 100%;
  }

  .pc-product-accordion {
    gap: 12px;
  }

  .pc-product-accordion__item {
    width: 100%;
  }

  figure.pc-product-media__main {
    height: 414px;
    width: 100%;
  }

  figure.pc-product-media__thumb {
    width: 56px;
    height: 70px;
  }

  .pc-product-media__thumb-video {
    width: 56px;
    height: 70px;
  }

  figure.pc-product-media__thumb--active,
  .pc-product-media__thumb-video.pc-product-media__thumb--active {
    width: 65px;
    height: 80px;
  }

  .pc-product-media__thumb-video::after {
    width: 40px;
    height: 40px;
    background-size: 12px 14px;
  }

  .pc-product-media__thumb-strip {
    gap: 14px;
  }

  .pc-product-media__nav-btn {
    right: 12px;
    top: calc(414px / 2);
    transform: translateY(-50%);
  }

  /* How it works */
  .pc-how-it-works.wp-block-group {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .pc-how-it-works__header {
    padding-inline: 16px;
    margin-bottom: 24px;
  }

  .pc-how-it-works__title {
    font-size: 2rem;
  }

  .pc-how-it-works__layout {
    display: none;
  }

  .pc-how-it-works__mobile {
    display: flex;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  margin-top: 0;
}
.pc-footer.wp-block-group {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
}

/* --- Newsletter Bar --- */

.pc-footer-newsletter.wp-block-group {
  border-bottom: 1px solid var(--wp--preset--color--primary);
  padding: 48px 32px;
}

.pc-footer-newsletter-columns.wp-block-columns {
  align-items: center;
  gap: 32px;
}

.pc-footer-newsletter-heading.wp-block-heading {
  color: var(--wp--preset--color--white);
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 8px;
}

.pc-footer-newsletter-sub {
  color: var(--wp--preset--color--white);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.pc-footer-newsletter-form-col.wp-block-column {
  flex: 0 0 400px;
  max-width: 400px;
}

.pc-footer-newsletter-input-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.pc-footer-newsletter-email-input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.5;
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--text-placeholder);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.pc-footer-newsletter-email-input:focus {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 1px;
}

.pc-footer-newsletter-submit-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: 9999px;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  transition: opacity 0.2s ease;
}

.pc-footer-newsletter-submit-btn:hover {
  opacity: 0.88;
}

/* --- Main Footer Content --- */

.pc-footer-main.wp-block-group {
  padding: 64px 32px 0;
}

.pc-footer-columns.wp-block-columns {
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 0;
}

.pc-footer-brand-col.wp-block-column {
  flex: 0 0 280px;
  max-width: 320px;
}

.pc-footer-logo img {
  height: 64px;
  width: auto;
}

.pc-footer-tagline {
  color: var(--wp--preset--color--white);
  font-size: 1rem;
  line-height: 1.5;
  margin: 8px 0 0;
}

.pc-footer-nav-col.wp-block-column {
  flex: 0 0 160px;
  min-width: 96px;
}

.pc-footer-nav-heading {
  color: var(--wp--preset--color--primary-100);
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.43;
  margin: 0 0 16px;
}

.pc-footer-nav.wp-block-navigation .wp-block-navigation__container {
  gap: 12px;
}

.pc-footer-nav.wp-block-navigation .wp-block-navigation-item__content,
.pc-footer-nav.wp-block-navigation .wp-block-navigation-item__content:visited {
  color: var(--wp--preset--color--white);
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.43;
  text-decoration: none;
  padding: 0;
}

.pc-footer-nav.wp-block-navigation .wp-block-navigation-item__content:hover {
  text-decoration: underline;
}

/* --- Bottom Bar --- */

.pc-footer-bottom.wp-block-group {
  border-top: 1px solid var(--wp--preset--color--primary);
  margin-top: 64px;
  padding: 32px 32px 48px;
}

.pc-footer-bottom-inner.wp-block-columns {
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.pc-footer-copyright {
  color: var(--wp--preset--color--white);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.pc-footer-social-col.wp-block-column {
  flex: 0 1 auto;
}

.pc-footer-social-icons {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
}

.pc-footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--white);
  transition: opacity 0.2s ease;
}

.pc-footer-social-icon:hover {
  opacity: 0.7;
}

/* ============================================
   Product Feature Carousel
   ============================================ */

/* --- Base (shared across all breakpoints) --- */

.pc-feature-carousel {
  background-color: var(--wp--preset--color--bg-blocks);
}

.pc-feature-carousel__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-feature-carousel__figure {
  overflow: hidden;
  margin: 0;
}

/* --- Desktop layout (≥ 783px) --- */

@media (min-width: 783px) {
  .pc-feature-carousel {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 64px 56px;
  }

  /* Side arrows */

  .pc-feature-carousel__side-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    border: 1px solid #eaecf0;
    background-color: transparent;
    color: var(--wp--preset--color--dark);
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .pc-feature-carousel__side-arrow:hover {
    background-color: rgba(0, 0, 0, 0.06);
  }

  .pc-feature-carousel__side-arrow:focus-visible {
    outline: 2px solid var(--wp--preset--color--primary);
    outline-offset: 2px;
  }

  /* Stage */

  .pc-feature-carousel__stage {
    flex: 1;
    min-width: 0;
  }

  .pc-feature-carousel__mobile-text,
  .pc-feature-carousel__mobile-nav {
    display: none;
  }

  /* Track: CSS Grid trick — all slides share one grid cell */

  .pc-feature-carousel__track {
    display: grid;
  }

  /* Slides: stacked in same grid cell, fade in/out */

  .pc-feature-carousel__slide {
    grid-area: 1 / 1;
    display: flex;
    align-items: center;
    gap: 56px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }

  .pc-feature-carousel__slide.is-active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Image */

  .pc-feature-carousel__figure {
    flex: 0 1 665px;
    max-width: 665px;
    min-width: 280px;
    aspect-ratio: 665 / 597;
    border-radius: 16px;
  }

  /* Text */

  .pc-feature-carousel__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pc-feature-carousel__title {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 42px;
    letter-spacing: -0.8px;
    color: #1c1c1c;
    margin: 0;
  }

  .pc-feature-carousel__body {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 1.4;
    color: var(--wp--preset--color--body-text);
    margin: 0;
  }
}

/* --- Tablet adjustments (783px – 1100px) --- */

@media (min-width: 783px) and (max-width: 1100px) {
  .pc-feature-carousel {
    padding: 48px 32px;
    gap: 16px;
  }

  .pc-feature-carousel__slide {
    gap: 32px;
  }

  .pc-feature-carousel__title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .pc-feature-carousel__body {
    font-size: 1.25rem;
  }
}

/* --- Mobile layout (≤ 782px) --- */

@media (max-width: 782px) {
  .pc-feature-carousel {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 32px 16px;
    background-color: var(--wp--preset--color--accent);
    gap: 16px;
  }

  .pc-feature-carousel__side-arrow {
    display: none;
  }

  .pc-feature-carousel__stage {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Mobile text header */

  .pc-feature-carousel__mobile-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .pc-feature-carousel__mobile-title {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 1.75rem;
    line-height: 42px;
    letter-spacing: -0.56px;
    color: var(--wp--preset--color--dark);
    margin: 0;
  }

  .pc-feature-carousel__mobile-desc {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: var(--wp--preset--font-size--small);
    line-height: 1.4;
    color: var(--wp--preset--color--body-text);
    margin: 0;
  }

  /* Scrollable cards track */

  .pc-feature-carousel__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
  }

  .pc-feature-carousel__track::-webkit-scrollbar {
    display: none;
  }

  /* Each slide as a card */

  .pc-feature-carousel__slide {
    flex: 0 0 calc(100% - 24px);
    height: 272px;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(12, 12, 13, 0.1), 0 1px 4px rgba(12, 12, 13, 0.05);
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }

  .pc-feature-carousel__figure {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  /* Hide text inside the slide cards on mobile — text is shown in the header panel */

  .pc-feature-carousel__text {
    display: none;
  }

  /* Bottom navigation arrows */

  .pc-feature-carousel__mobile-nav {
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .pc-feature-carousel__mob-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    border: 1px solid #eaecf0;
    background-color: transparent;
    color: var(--wp--preset--color--dark);
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .pc-feature-carousel__mob-arrow:hover {
    background-color: rgba(0, 0, 0, 0.06);
  }

  .pc-feature-carousel__mob-arrow:focus-visible {
    outline: 2px solid var(--wp--preset--color--primary);
    outline-offset: 2px;
  }
}

/* --- Footer Mobile --- */

@media (max-width: 782px) {
  .pc-footer-newsletter.wp-block-group {
    padding: 32px 20px;
  }

  .pc-footer-newsletter-columns.wp-block-columns {
    flex-direction: column;
    gap: 24px;
  }

  .pc-footer-newsletter-form-col.wp-block-column {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .pc-footer-newsletter-input-row {
    flex-direction: column;
    gap: 12px;
  }

  .pc-footer-newsletter-submit-btn {
    width: 100%;
  }

  .pc-footer-main.wp-block-group {
    padding: 40px 20px 0;
  }

  .pc-footer-columns.wp-block-columns {
    flex-direction: column;
    gap: 32px;
  }

  .pc-footer-brand-col.wp-block-column,
  .pc-footer-nav-col.wp-block-column {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .pc-footer-bottom.wp-block-group {
    margin-top: 40px;
    padding: 24px 20px 32px;
  }

  .pc-footer-bottom-inner.wp-block-columns {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .pc-footer-social-icons {
    justify-content: flex-start;
  }
}

/* ============================================
   Our Values
   ============================================ */

.pc-values-section {
  --pc-values-section-bg: var(--wp--preset--color--accent);
  --pc-values-section-border: var(--wp--preset--color--bg-blocks);
  --pc-values-card-bg: transparent;
  --pc-values-card-bg-mobile: var(--wp--preset--color--white);
  --pc-values-icon-bg: var(--wp--preset--color--cloud);
  --pc-values-heading-color: var(--wp--preset--color--dark);
  --pc-values-body-color: var(--wp--preset--color--dark);
  --pc-values-nav-border: var(--wp--preset--color--soft-grey);
  --pc-values-nav-hover-bg: rgba(0, 0, 0, 0.06);
  --pc-values-card-shadow: 0 1px 4px rgba(12, 12, 13, 0.05);
  --pc-values-card-shadow-mobile: 0 1px 4px rgba(12, 12, 13, 0.1), 0 1px 4px rgba(12, 12, 13, 0.05);
  background-color: var(--pc-values-section-bg);
  border-bottom: 1px solid var(--pc-values-section-border);
  display: flex;
  flex-direction: column;
}

.pc-values-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.pc-values-heading,
.pc-values-subtitle,
.pc-values-card-title,
.pc-values-card-description {
  margin: 0;
}

.pc-values-inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.pc-values-track {
  display: flex;
}

.pc-values-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  
}

.pc-values-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 16px;
  background-color: var(--pc-values-icon-bg);
}

.pc-values-icon,
.pc-values-icon img {
  margin: 0;
  display: block;
}

.pc-values-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  min-height: 110px;
}

.pc-values-card-description {
  flex: 1 0 auto;
}

.pc-values-nav {
  display: none;
}

@media (min-width: 783px) {
  .pc-values-section {
    padding-block: 64px;
  }

  .pc-values-inner {
    gap: 32px;
    padding-inline: 32px;
  }

  .pc-values-heading {
    color: var(--pc-values-heading-color);
    font-family: var(--wp--preset--font-family--poppins);
    font-size: var(--wp--preset--font-size--h2);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.8px;
  }

  .pc-values-subtitle {
    color: var(--pc-values-body-color);
    font-family: var(--wp--preset--font-family--poppins);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.36px;
  }

  .pc-values-track {
    align-items: stretch;
    gap: 16px;
  }

  .pc-values-card {
    flex: 1 1 0;
    min-width: 0;
    min-height: 282px;
    gap: 16px;
    border-radius: 16px;
    padding: 32px 24px;
    background-color: var(--pc-values-card-bg);
    box-shadow: var(--pc-values-card-shadow);
  }

  .pc-values-icon img {
    width: 60px;
    height: 60px;
  }

  .pc-values-content {
    padding-inline: 24px;
  }

  .pc-values-card-title {
    color: var(--pc-values-heading-color);
    font-family: var(--wp--preset--font-family--poppins);
    font-size: var(--wp--preset--font-size--h3);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.48px;
  }

  .pc-values-card-description {
    color: var(--pc-values-body-color);
    font-family: var(--wp--preset--font-family--poppins);
    font-size: var(--wp--preset--font-size--small);
    font-weight: 400;
    line-height: 1.4;
  }
}

@media (max-width: 782px) {
  .pc-values-section {
    padding-block: 32px;
  }

  .pc-values-inner {
    gap: 24px;
    padding-inline: 16px;
  }

  .pc-values-heading {
    color: var(--pc-values-heading-color);
    font-family: var(--wp--preset--font-family--poppins);
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 42px;
    letter-spacing: -0.72px;
  }

  .pc-values-subtitle {
    color: var(--pc-values-body-color);
    font-family: var(--wp--preset--font-family--poppins);
    font-size: var(--wp--preset--font-size--small);
    font-weight: 400;
    line-height: 1.4;
  }

  .pc-values-track {
    width: 100%;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-inline: calc((100% - min(334px, calc(100vw - 32px))) / 2);
    scroll-padding-inline: calc((100% - min(334px, calc(100vw - 32px))) / 2);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pc-values-track::-webkit-scrollbar {
    display: none;
  }

  .pc-values-card {
    flex: 0 0 min(334px, calc(100vw - 32px));
    min-height: 272px;
    gap: 16px;
    border-radius: 16px;
    padding: 32px 16px;
    background-color: var(--pc-values-card-bg-mobile);
    box-shadow: var(--pc-values-card-shadow-mobile);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    margin-top: 0;
  }

  .pc-values-icon img {
    width: 50px;
    height: 50px;
  }

  .pc-values-content {
    padding-inline: 24px;
  }

  .pc-values-card-title {
    color: var(--pc-values-heading-color);
    font-family: var(--wp--preset--font-family--poppins);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.4px;
  }

  .pc-values-card-description {
    color: var(--pc-values-body-color);
    font-family: var(--wp--preset--font-family--poppins);
    font-size: var(--wp--preset--font-size--small);
    font-weight: 400;
    line-height: 1.4;
  }

  .pc-values-nav {
    width: 100%;
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .pc-values-nav-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid var(--pc-values-nav-border);
    background-color: transparent;
    color: var(--wp--preset--color--dark);
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .pc-values-nav-arrow:hover {
    background-color: var(--pc-values-nav-hover-bg);
  }

  .pc-values-nav-arrow:focus-visible {
    outline: 2px solid var(--wp--preset--color--primary);
    outline-offset: 2px;
  }
}

/* ==========================================================================
   Story Hero
   ========================================================================== */

.pc-story-hero {
  padding-top: 160px;
}

.pc-story-hero-heading {
  font-size: 72px;
  line-height: 90px;
  letter-spacing: -1.44px;
  max-width: 722px;
  color: var(--wp--preset--color--white);
}

.pc-story-hero-subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #f6f3f7;
  max-width: 768px;
}

@media (max-width: 782px) {
  .pc-story-hero {
    min-height: 624px;
    padding-top: 82px;
  }

  .pc-story-hero-heading {
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -0.96px;
  }

  .pc-story-hero-subtitle {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
  }
}

/* ==========================================================================
   Blog Grid
   ========================================================================== */

.pc-blog-grid-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* --- Tabs --- */

.pc-blog-grid__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  padding-left: 32px;
  margin-bottom: 24px;
}

.pc-blog-grid__tab {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  padding: 8px 18px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  background-color: var(--wp--preset--color--primary-25);
  color: var(--wp--preset--color--primary);
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.pc-blog-grid__tab--active {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--dark);
  box-shadow: 0 0 0 4px rgba(226, 60, 99, 0.24);
}

.pc-blog-grid__tab:focus-visible {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 2px;
}

/* --- Separator --- */

.pc-blog-grid__separator {
  border-top: 1px solid var(--wp--preset--color--cloud);
  margin-bottom: 32px;
}

/* --- Content grid --- */

.pc-blog-grid__content {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 32px;
  transition: opacity 0.2s ease;
}

.pc-blog-grid__content--loading {
  opacity: 0.4;
  pointer-events: none;
}

/* --- Empty state --- */

.pc-blog-grid__empty {
  grid-column: 1 / -1;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 16px;
  color: var(--wp--preset--color--body-text);
  padding: 40px 0;
  text-align: center;
}

/* --- Cards shared --- */

.pc-blog-card {
  background-color: var(--wp--preset--color--bg-blocks);
  border: 1px solid var(--wp--preset--color--soft-grey);
  border-radius: 16px;
  overflow: hidden;
}

.pc-blog-card__image-link {
  display: block;
}

.pc-blog-card__image-wrap {
  overflow: hidden;
}

.pc-blog-card__image-wrap--placeholder {
  background-color: var(--wp--preset--color--primary-100);
}

.pc-blog-card__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

img.pc-blog-card__image {
  height: 100%;
}

.pc-blog-card__badge {
  display: inline-block;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 14px;
  font-weight: 500;
  color: var(--wp--preset--color--input-text);
  background-color: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.pc-blog-card__title {
  font-family: var(--wp--preset--font-family--poppins);
  color: var(--wp--preset--color--dark);
  margin-bottom: 10px;
}

.pc-blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.pc-blog-card__title a:hover {
  color: var(--wp--preset--color--primary);
}

.pc-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 12px;
  font-weight: 400;
  color: var(--wp--preset--color--input-text);
}

.pc-blog-card__meta-sep {
  line-height: 1;
}

/* --- Featured card --- */

.pc-blog-card--featured {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pc-blog-card--featured .pc-blog-card__image-wrap {
  height: 328px;
  border-radius: 16px 16px 0 0;
}

.pc-blog-card--featured .pc-blog-card__image-wrap--placeholder {
  height: 328px;
}

.pc-blog-card--featured .pc-blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pc-blog-card--featured .pc-blog-card__title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.pc-blog-card--featured .pc-blog-card__excerpt {
  font-family: var(--wp--preset--font-family--poppins);
  font-size: 16px;
  font-weight: 400;
  color: var(--wp--preset--color--body-text);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

/* --- Side cards --- */

.pc-blog-grid__side-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pc-blog-card--side {
  display: flex;
  flex-direction: row;
  min-height: 280px;
}

.pc-blog-card--side .pc-blog-card__image-link {
  flex: 0 0 207px;
}

.pc-blog-card--side .pc-blog-card__image-wrap {
  height: 100%;
  border-radius: 16px 0 0 16px;
}

.pc-blog-card--side .pc-blog-card__image-wrap--placeholder {
  height: 100%;
}

.pc-blog-card--side .pc-blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.pc-blog-card--side .pc-blog-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* --- Mobile --- */

@media (max-width: 782px) {
  .pc-blog-grid-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .pc-blog-grid__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .pc-blog-grid__tabs::-webkit-scrollbar {
    display: none;
  }

  .pc-blog-grid__tab {
    flex-shrink: 0;
  }

  .pc-blog-grid__content {
    grid-template-columns: 1fr;
  }

  .pc-blog-card--side {
    flex-direction: column;
    min-height: auto;
  }

  .pc-blog-card--side .pc-blog-card__image-link {
    flex: none;
  }

  .pc-blog-card--side .pc-blog-card__image-wrap {
    height: 200px;
    border-radius: 16px 16px 0 0;
  }

  .pc-blog-card--side .pc-blog-card__image-wrap--placeholder {
    height: 200px;
  }
}


/* ==========================================================================
   Contact Section
   ========================================================================== */

.pc-contact-section {
  background-color: var(--wp--preset--color--accent);
  padding-block: 80px;
  padding-inline: 32px;
}

.pc-contact-columns {
  gap: 48px;
}

.pc-contact-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pc-contact-heading {
  font-size: 48px;
  font-weight: 600;
  color: var(--wp--preset--color--dark);
  letter-spacing: -0.96px;
  line-height: 1.1;
  margin: 0;
}

.pc-contact-subtitle {
  font-size: 18px;
  color: var(--wp--preset--color--body-text);
  line-height: 1.4;
  margin: 0;
}

.pc-contact-email-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pc-contact-email-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: var(--wp--preset--color--primary-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--primary);
}

.pc-contact-email-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pc-contact-email-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--wp--preset--color--dark);
  margin: 0;
}

.pc-contact-email-value {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.pc-contact-products-card {
  background-color: var(--wp--preset--color--bg-blocks);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-contact-products-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--wp--preset--color--dark);
  margin: 0;
}

.pc-contact-products-text {
  font-size: 16px;
  color: var(--wp--preset--color--dark);
  margin: 0;
}

.pc-contact-view-btn .wp-block-button__link {
  background-color: #fff;
  color: var(--wp--preset--color--dark);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 9999px;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  padding: 10px 20px;
  font-weight: 500;
  font-size: 14px;
}

.pc-contact-right {
  display: flex;
  flex-direction: column;
}

.pc-contact-form-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow:
    0 4px 6px -2px rgba(16, 24, 40, 0.03),
    0 12px 16px -4px rgba(16, 24, 40, 0.08);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pc-contact-form-heading {
  font-size: 24px;
  font-weight: 600;
  color: var(--wp--preset--color--dark);
  letter-spacing: -0.48px;
  margin: 0;
}

/* --- CF7 form overrides (scoped to the card) --- */

.pc-contact-form-card .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pc-contact-form-card .wpcf7-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #344054;
}

.pc-contact-form-card .wpcf7-form input[type="text"],
.pc-contact-form-card .wpcf7-form input[type="email"],
.pc-contact-form-card .wpcf7-form textarea {
  width: 100%;
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 16px;
  color: var(--wp--preset--color--dark);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  box-sizing: border-box;
  transition: border-color 0.15s ease;
}

.pc-contact-form-card .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

.pc-contact-form-card .wpcf7-form input[type="text"]::placeholder,
.pc-contact-form-card .wpcf7-form input[type="email"]::placeholder,
.pc-contact-form-card .wpcf7-form textarea::placeholder {
  color: #667085;
}

.pc-contact-form-card .wpcf7-form input[type="text"]:focus,
.pc-contact-form-card .wpcf7-form input[type="email"]:focus,
.pc-contact-form-card .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary);
}

.pc-contact-form-card .wpcf7-form input[type="submit"],
.pc-contact-form-card .wpcf7-submit {
  width: 100%;
  background-color: var(--wp--preset--color--primary);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.15s ease;
}

.pc-contact-form-card .wpcf7-form input[type="submit"]:hover,
.pc-contact-form-card .wpcf7-submit:hover {
  opacity: 0.88;
}

/* Send icon via pseudo-element */
.pc-contact-form-card .wpcf7-form input[type="submit"]::after,
.pc-contact-form-card .wpcf7-submit::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='22' y1='2' x2='11' y2='13'%3E%3C/line%3E%3Cpolygon points='22 2 15 22 11 13 2 9 22 2'%3E%3C/polygon%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Responsive */
@media (max-width: 782px) {
  .pc-contact-section {
    padding-block: 48px;
    padding-inline: 20px;
  }

  .pc-contact-heading {
    font-size: 32px;
    letter-spacing: -0.64px;
  }

  .pc-contact-columns {
    gap: 32px;
  }

  .pc-contact-products-card,
  .pc-contact-form-card {
    border-radius: 12px;
    padding: 24px;
  }
}

/* ==========================================================================
   LaunchBoom Popup
   ========================================================================== */

/* Reset Popup Maker's container so our inner div controls all styling */
.pum-container:has(.pc-lb-popup) {
	padding: 0;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
}

/* Hide Popup Maker's own close button — we render our own */
.pum-container:has(.pc-lb-popup) > .pum-close {
	display: none;
	visibility: hidden;
	pointer-events: none;
}

/* Remove pum-content default padding */
.pum-container:has(.pc-lb-popup) .pum-content {
	padding: 0;
	width: 100%;
}

/* Popup inner wrapper */
.pc-lb-popup {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow:
		0 20px 24px -4px rgba(16, 24, 40, 0.08),
		0 8px 8px -4px rgba(16, 24, 40, 0.03);
}

/* --- Header (Cover block) --- */
.pc-lb-popup .pc-lb-popup__header.wp-block-cover {
	height: 209px;
	min-height: 209px;
	width: 100%;
	flex-shrink: 0;
}

/* Cover background image: crop to centre of the food scene */
.pc-lb-popup .pc-lb-popup__header .wp-block-cover__image-background {
	object-position: center 40%;
}

/* Reset inner container so rocket icon + close button are absolute
   relative to the cover, not this div */
.pc-lb-popup .pc-lb-popup__header .wp-block-cover__inner-container {
	position: static;
	max-width: 100%;
	padding: 0;
	width: 100%;
	height: 100%;
}

/* --- Rocket icon (empty div, SVG via CSS background) --- */
.pc-lb-popup__rocket-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: rgba(226, 226, 226, 0.35);
	background-image: url('assets/images/popup/rocket-icon.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px 24px;
	backdrop-filter: blur(4.8px);
}

/* --- Close button --- */
.pc-lb-popup__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(226, 226, 226, 0.35);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-size: 20px;
	color: #fff;
	line-height: 1;
	margin: 0;
}

.pc-lb-popup__close:hover {
	background: rgba(255, 255, 255, 0.15);
}

/* --- Content --- */
.pc-lb-popup__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 40px 40px 0;
}

.pc-lb-popup__heading {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 40px;
	line-height: 1;
	letter-spacing: -0.8px;
	text-align: center;
	color: var(--wp--preset--color--dark);
	margin: 0;
}

.pc-lb-popup__heading-accent {
	color: var(--wp--preset--color--primary);
}

.pc-lb-popup__body {
	font-size: 20px;
	line-height: 1.5;
	text-align: center;
	color: var(--wp--preset--color--dark);
	margin: 0;
}

.pc-lb-popup__link {
	color: var(--wp--preset--color--primary);
	font-weight: 600;
	text-decoration: none;
}

/* --- Actions --- */
.pc-lb-popup__actions {
	padding: 32px 40px 40px;
}

.pc-lb-popup .pc-lb-popup__cta-btn .wp-block-button__link {
	background: var(--wp--preset--color--primary);
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.55;
	border: 1px solid var(--wp--preset--color--primary);
	box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
	transition: opacity 0.2s ease;
	text-align: center;
}

.pc-lb-popup .pc-lb-popup__cta-btn .wp-block-button__link:hover {
	opacity: 0.9;
	color: #fff;
	background: var(--wp--preset--color--primary);
}

/* --- Mobile --- */
@media (max-width: 600px) {
	.pc-lb-popup .pc-lb-popup__header.wp-block-cover {
		height: 160px;
		min-height: 160px;
	}

	.pc-lb-popup__heading {
		font-size: 26px;
		letter-spacing: -0.5px;
	}

	.pc-lb-popup__body {
		font-size: 16px;
	}

	.pc-lb-popup__content {
		padding: 24px 24px 0;
	}

	.pc-lb-popup__actions {
		padding: 20px 24px 24px;
	}
}
