]633;E;{ head -n 429 "$CSS"\x3b sed -n '1143,$p' "$CSS"\x3b } > /tmp/ph_sections_new.css;3cd0109b-01ab-46a2-9e34-88f4b02c09bb]633;C/* =====================================================
   Pure Habit — Full Page Sections CSS
   Covers: product-hero, how-made, ingredient-cards,
   supplement-facts, tips, homepage sections,
   FAQ page, About Us page
   ===================================================== */

/* =========================================================
   PRODUCT HERO TAGLINE SECTION
   ========================================================= */
.ph-product-hero {
    background: linear-gradient(160deg, #fff8f5 0%, #fff 60%);
    border-bottom: 2px solid #f2f2f2;
    padding: 36px 20px 28px;
    text-align: center;
}

.ph-product-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.ph-product-tagline {
    font-size: 1.6rem;
    font-weight: 900;
    color: #151515;
    margin: 0 0 16px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

@media (max-width: 640px) {
    .ph-product-tagline { font-size: 1.3rem; }
}

.ph-product-hero-sub {
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
    margin: 0 0 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Bullet benefit list */
.ph-product-hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: center;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.ph-product-hero-benefits li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #151515;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 50px;
    padding: 6px 14px;
}

.ph-product-hero-benefits li::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e8460e;
    flex-shrink: 0;
}

/* =========================================================
   HOW THEY'RE MADE SECTION
   ========================================================= */
.ph-how-made-section {
    background: #151515;
    color: #fff;
    padding: 48px 20px;
}

.ph-how-made-inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 680px) {
    .ph-how-made-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.ph-how-made-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #e8460e;
    margin: 0 0 12px;
}

.ph-how-made-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.25;
    color: #fff;
}

.ph-how-made-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* Process steps (right column) */
.ph-how-made-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ph-how-made-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ph-step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #e8460e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
}

.ph-step-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.ph-step-content p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.55;
}

/* =========================================================
   INGREDIENT DETAIL CARDS
   ========================================================= */
.ph-ingredient-cards-section {
    padding: 48px 0;
    background: #fff;
}

.ph-ingredient-cards-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.ph-ingredient-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 8px;
}

@media (max-width: 540px) {
    .ph-ingredient-cards-grid {
        grid-template-columns: 1fr;
    }
}

.ph-ingredient-card {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 24px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.ph-ingredient-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    border-color: #f0d4c8;
}

.ph-ingredient-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e8460e;
    margin-bottom: 12px;
}

.ph-ingredient-card-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #151515;
    margin: 0 0 8px;
}

.ph-ingredient-card-desc {
    font-size: 0.84rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   SUPPLEMENT FACTS TABLE
   ========================================================= */
.ph-supfacts-section {
    padding: 40px 0;
    background: #f9f9f9;
    border-top: 2px solid #f2f2f2;
}

.ph-supfacts-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 680px) {
    .ph-supfacts-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.ph-supfacts-panel {
    background: #fff;
    border: 2px solid #151515;
    border-radius: 12px;
    overflow: hidden;
}

.ph-supfacts-header {
    background: #151515;
    color: #fff;
    padding: 14px 18px;
}

.ph-supfacts-header h3 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ph-supfacts-serving {
    font-size: 0.78rem;
    opacity: 0.7;
    margin-top: 4px;
}

.ph-supfacts-table {
    width: 100%;
    border-collapse: collapse;
}

.ph-supfacts-table tr:not(:last-child) td {
    border-bottom: 1px solid #f0f0f0;
}

.ph-supfacts-table td {
    padding: 9px 16px;
    font-size: 0.84rem;
    color: #333;
}

.ph-supfacts-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #151515;
}

/* Suggested use + does not contain */
.ph-supfacts-notes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ph-supfacts-note-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e8e8e8;
}

.ph-supfacts-note-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e8460e;
    margin: 0 0 8px;
}

.ph-supfacts-note-text {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.ph-supfacts-no-contain {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.ph-no-contain-pill {
    display: inline-block;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 4px 10px;
    font-size: 0.74rem;
    color: #555;
    font-weight: 500;
}

/* =========================================================
   PER-PRODUCT TIPS / HABITS SECTION
   ========================================================= */
.ph-tips-section {
    padding: 48px 0;
    background: #fff;
    border-top: 2px solid #f2f2f2;
}

.ph-tips-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.ph-tips-grid {
    display: grid;
    gap: 20px;
    margin-top: 8px;
}

.ph-tips-grid[data-count="3"] {
    grid-template-columns: repeat(3, 1fr);
}

.ph-tips-grid[data-count="4"] {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 680px) {
    .ph-tips-grid[data-count="3"],
    .ph-tips-grid[data-count="4"] {
        grid-template-columns: 1fr;
    }
}

.ph-tip-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 24px;
    transition: box-shadow 0.2s;
}

.ph-tip-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.ph-tip-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #fff5f0;
    border: 2px solid #e8460e;
    border-radius: 50%;
    font-size: 0.82rem;
    font-weight: 800;
    color: #e8460e;
    margin-bottom: 14px;
}

.ph-tip-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #151515;
    margin: 0 0 8px;
}

.ph-tip-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* =========================================================
   FAQ PAGE STYLES
   ========================================================= */
/* =========================================================
   FAQ PAGE STYLES
   ========================================================= */
.ph-faq-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.ph-faq-page-hero {
    text-align: center;
    padding: 40px 0 32px;
}

.ph-faq-page-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #151515;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .ph-faq-page-title { font-size: 1.6rem; }
}

.ph-faq-page-sub {
    font-size: 1rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.ph-faq-group {
    margin-bottom: 36px;
}

.ph-faq-group-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #151515;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8460e;
    margin: 0 0 16px;
}

/* =========================================================
   ABOUT US PAGE
   ========================================================= */
.ph-about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.ph-about-hero {
    background: linear-gradient(135deg, #151515 0%, #2a2a2a 100%);
    color: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 48px;
}

@media (max-width: 640px) {
    .ph-about-hero { padding: 40px 24px; }
}

.ph-about-hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.ph-about-hero p {
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 24px;
}

.ph-about-hero a {
    display: inline-block;
    background: #e8460e;
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ph-about-section {
    margin-bottom: 48px;
}

.ph-about-section h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #151515;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.ph-about-section p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.75;
    margin: 0 0 14px;
}

.ph-about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

@media (max-width: 640px) {
    .ph-about-values-grid { grid-template-columns: 1fr; }
}

.ph-about-value-card {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.ph-about-value-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.ph-about-value-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #151515;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
}

.ph-about-value-desc {
    font-size: 0.84rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.ph-about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background: linear-gradient(135deg, #e8460e 0%, #c93800 100%);
    border-radius: 14px;
    padding: 32px;
    color: #fff;
    text-align: center;
    margin-top: 32px;
}

@media (max-width: 540px) {
    .ph-about-stats-row { grid-template-columns: 1fr; }
}

.ph-about-stat-number {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}

.ph-about-stat-label {
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* =========================================================
   SOCIAL PROOF BAR (homepage — below hero)
   ========================================================= */
.ph-social-proof-bar {
    background: #fff;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 0;
}
.ph-social-proof-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1160px;
    margin: 0 auto;
}
.ph-proof-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    font-size: 13.5px;
    color: #333;
    line-height: 1.35;
    text-align: left;
    min-width: 0;
    border-right: 1px solid #ebebeb;
    box-sizing: border-box;
}
.ph-proof-item:last-child {
    border-right: none;
}
.ph-proof-item strong {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    color: #111;
    margin-bottom: 1px;
}
.ph-proof-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #1a1a1a;
    flex-shrink: 0;
}
.ph-proof-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}
/* hide the old flex dividers — grid borders handle separation */
.ph-proof-divider { display: none; }

/* ── Tablet: 2 × 2 grid ── */
@media (max-width: 860px) {
    .ph-social-proof-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .ph-proof-item {
        border-right: 1px solid #ebebeb;
        border-bottom: 1px solid #ebebeb;
        padding: 18px 20px;
    }
    /* right column: no right border */
    .ph-proof-item:nth-child(2n) { border-right: none; }
    /* bottom row: no bottom border */
    .ph-proof-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── Mobile: 2 × 2 compact — keeps bar short ── */
@media (max-width: 480px) {
    .ph-social-proof-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .ph-proof-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 14px;
        font-size: 11.5px;
    }
    .ph-proof-item strong {
        font-size: 12px;
    }
    .ph-proof-icon-wrap { width: 36px; height: 36px; min-width: 36px; }
    .ph-proof-icon { width: 20px; height: 20px; min-width: 20px; }
}

/* ── XS phones (≤374px): tighter still ── */
@media (max-width: 374px) {
    .ph-proof-item {
        padding: 12px 10px;
        font-size: 11px;
        gap: 6px;
    }
    .ph-proof-item strong { font-size: 11.5px; }
    .ph-proof-icon-wrap { width: 32px; height: 32px; min-width: 32px; }
    .ph-proof-icon { width: 18px; height: 18px; min-width: 18px; }
}

/* =========================================================
   HOMEPAGE — FULL-WIDTH OVERRIDE
   Remove .col-full 1320px constraint so hero + all sections
   span 100% viewport width.
   ========================================================= */
body.home .col-full,
body.page-template-template-homepage-php .col-full {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Suppress the blank page content area on homepage */
body.home #primary,
body.home .site-main {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
}
body.home .entry-header,
body.home .entry-content,
body.home .entry-footer,
body.home .post-navigation {
    display: none !important;
}

/* =========================================================
   HOMEPAGE — HERO SECTION
   ========================================================= */
.ph-hero {
    position: relative;
    min-height: 88vh;
    max-height: 960px; /* don't fill an ultra-tall viewport entirely */
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}
/* Landscape phone — shorter hero so CTAs are visible without scrolling */
@media (max-height: 500px) and (max-width: 900px) {
    .ph-hero { min-height: 100svh; max-height: none; align-items: flex-end; padding-bottom: 32px; }
    .ph-hero-heading { font-size: 30px !important; margin-bottom: 12px; }
    .ph-hero-sub { display: none; }
}
.ph-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    background-image: var(--hero-bg);
    background-color: #1a1008; /* warm dark fallback while image loads */
}
.ph-hero-overlay {
    position: absolute;
    inset: 0;
    /* Left: transparent so woman + products show clearly.
       Right: dark so text is always readable over the open space. */
    background: linear-gradient(to right,
        rgba(8,5,3,0.08) 0%,
        rgba(8,5,3,0.18) 38%,
        rgba(8,5,3,0.72) 58%,
        rgba(8,5,3,0.82) 100%);
}
.ph-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 64px;
    display: flex;
    justify-content: flex-end; /* text lives in right 40% — the open negative space */
}
.ph-hero-content {
    max-width: 520px;
    width: 100%;
}
.ph-hero-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 22px;
}
.ph-hero-heading {
    font-family: var(--e-global-typography-accent-font-family, "Nutritix Heading", sans-serif);
    font-size: 78px;
    font-weight: 700;
    line-height: 1.0;
    color: #fff;
    margin: 0 0 26px;
    letter-spacing: -0.02em;
}
.ph-hero-heading em {
    font-style: italic;
    color: rgba(255,255,255,0.72);
}
.ph-hero-sub {
    font-size: 17px;
    line-height: 1.72;
    color: rgba(255,255,255,0.72);
    margin: 0 0 38px;
    max-width: 460px;
}
.ph-hero-ctas {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 38px;
}
.ph-hero-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 18px 42px;
    transition: all 0.22s ease;
    cursor: pointer;
}
.ph-hero-btn--fill {
    background: #fff;
    color: #111;
}
.ph-hero-btn--fill:hover {
    background: #f0ede8;
    color: #111;
    text-decoration: none;
    transform: translateY(-1px);
}
.ph-hero-btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
}
.ph-hero-btn--outline:hover {
    border-color: #fff;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}
.ph-hero-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ph-hero-proof-stars {
    color: #f5c518;
    font-size: 15px;
    letter-spacing: 2px;
}
.ph-hero-proof-text {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}
@media (max-width: 1100px) {
    .ph-hero-heading { font-size: 60px; }
    .ph-hero-inner { padding: 0 40px; }
}
@media (max-width: 768px) {
    .ph-hero {
        min-height: 85vh;
        max-height: none;
        align-items: flex-end;
        padding-bottom: 48px;
    }
    .ph-hero-bg { background-image: var(--hero-bg-mobile); background-position: center top; }
    .ph-hero-overlay {
        background: linear-gradient(180deg, rgba(8,5,3,0.08) 0%, rgba(8,5,3,0.82) 55%);
    }
    .ph-hero-inner { padding: 0 20px; justify-content: flex-start; }
    .ph-hero-content { max-width: 100%; }
    .ph-hero-heading { font-size: 42px; }
    .ph-hero-sub { font-size: 15px; margin-bottom: 24px; max-width: 100%; }
    .ph-hero-btn { padding: 15px 28px; font-size: 10px; }
}
@media (max-width: 480px) {
    .ph-hero-heading { font-size: 36px; }
    .ph-hero-ctas { flex-direction: column; align-items: flex-start; }
    .ph-hero-btn { width: 100%; justify-content: center; }
}
@media (max-width: 374px) {
    .ph-hero { padding-bottom: 40px; }
    .ph-hero-heading { font-size: 28px; }
    .ph-hero-inner { padding: 0 16px; }
    .ph-hero-sub { font-size: 13px; margin-bottom: 22px; }
    .ph-hero-btn { padding: 14px 20px; font-size: 10px; }
}

/* =========================================================
   HOMEPAGE — SHOP THE COLLECTION
   ========================================================= */
.ph-collection-section {
    background: #faf8f5;
    padding: 72px 0 64px;
    width: 100%;
    overflow-x: hidden; /* prevent overflow:visible swiper from creating page scroll */
}
.ph-collection-header {
    text-align: center;
    padding: 0 20px 40px;
}
.ph-collection-eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}
.ph-collection-heading {
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: #111;
    margin: 0;
}

/* ── Premium Discover Card ── */
.ph-disc-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: var(--card-accent, #3a3a3a);
    text-decoration: none;
    color: #fff;
    height: 340px;
    position: relative;
    transition: transform 0.32s cubic-bezier(0.34, 1.35, 0.64, 1),
                box-shadow 0.32s ease;
    isolation: isolate;
}
/* Inner radial glow — creates a lit-from-centre luxury feel */
.ph-disc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 72% 58% at 50% 56%,
        rgba(255,255,255,0.16) 0%, transparent 72%);
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.32s ease;
}
.ph-disc-card:hover::before { opacity: 0.6; }
.ph-disc-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 32px 64px rgba(0,0,0,0.28);
    text-decoration: none;
    color: #fff;
}
@media (min-width: 480px) { .ph-disc-card { height: 360px; } }
@media (min-width: 768px) { .ph-disc-card { height: 382px; } }
@media (min-width: 1100px) { .ph-disc-card { height: 406px; } }

/* Name — centered, uppercase, wide tracked */
.ph-disc-card-header {
    flex-shrink: 0;
    padding: 22px 18px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}
.ph-disc-card-name {
    font-size: 0.68rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.25;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
@media (min-width: 480px) { .ph-disc-card-name { font-size: 0.72rem; } }
@media (min-width: 768px) { .ph-disc-card-name { font-size: 0.78rem; } }
@media (min-width: 1100px) { .ph-disc-card-name { font-size: 0.82rem; } }

/* Image — large, center-stage */
.ph-disc-card-img {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px 10px;
    overflow: visible; /* let shadow breathe */
    position: relative;
    z-index: 1;
}
.ph-disc-card-img img {
    width: 90%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.44s cubic-bezier(0.34, 1.4, 0.64, 1);
    filter: drop-shadow(0 18px 36px rgba(0,0,0,0.38));
}
.ph-disc-card:hover .ph-disc-card-img img {
    transform: scale(1.12) translateY(-10px);
}
.ph-disc-card-img-ph {
    width: 70%;
    height: 70%;
    background: rgba(255,255,255,0.10);
    border-radius: 16px;
}

/* DISCOVER pill — frosted glass, inverts on hover */
.ph-disc-card-footer {
    flex-shrink: 0;
    padding: 0 16px 20px;
    position: relative;
    z-index: 2;
}
.ph-disc-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 13px 22px;
    border-radius: 100px;
    background: rgba(255,255,255,0.14);
    border: 1.5px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: background 0.24s ease, border-color 0.24s ease,
                color 0.24s ease;
    cursor: pointer;
}
.ph-disc-card-cta::after {
    content: '→';
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0;
    opacity: 0.65;
    transition: transform 0.24s ease, opacity 0.24s ease;
}
.ph-disc-card:hover .ph-disc-card-cta {
    background: rgba(255,255,255,0.96);
    border-color: transparent;
    color: var(--card-accent, #3a3a3a);
}
.ph-disc-card:hover .ph-disc-card-cta::after {
    transform: translateX(5px);
    opacity: 1;
}

/* =========================================================
   HOMEPAGE — WHY PURE HABIT (4-col USP strip)
   ========================================================= */
.ph-why-section {
    background: #f4f1ed;
    width: 100%;
}
.ph-why-heading-wrap {
    text-align: center;
    padding: 72px 20px 44px;
}
.ph-why-section-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}
.ph-why-section-heading {
    font-family: var(--e-global-typography-accent-font-family, "Nutritix Heading", sans-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.15;
}
.ph-why-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e0dcd6;
    border-bottom: 1px solid #e0dcd6;
}
.ph-why-col {
    padding: 54px 40px;
    text-align: center;
    border-right: 1px solid #e0dcd6;
}
.ph-why-col:last-child { border-right: none; }
.ph-why-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    color: #222;
}
.ph-why-icon svg { width: 100%; height: 100%; }
.ph-why-title {
    font-family: var(--e-global-typography-accent-font-family, "Nutritix Heading", sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
    line-height: 1.3;
}
.ph-why-desc {
    font-size: 13.5px;
    color: #666;
    margin: 0;
    line-height: 1.72;
}
@media (max-width: 960px) {
    .ph-why-inner { grid-template-columns: repeat(2, 1fr); }
    .ph-why-col { border-bottom: 1px solid #e0dcd6; }
    .ph-why-col:nth-child(2n) { border-right: none; }
    .ph-why-col:nth-child(3),
    .ph-why-col:nth-child(4) { border-bottom: none; }
}
@media (max-width: 520px) {
    .ph-why-inner { grid-template-columns: repeat(2, 1fr); }
    .ph-why-col { border-right: 1px solid #e0dcd6 !important; border-bottom: 1px solid #e0dcd6 !important; padding: 28px 16px; }
    .ph-why-col:nth-child(2n) { border-right: none !important; }
    .ph-why-col:nth-child(3),
    .ph-why-col:nth-child(4) { border-bottom: none !important; }
}
@media (max-width: 340px) {
    .ph-why-inner { grid-template-columns: 1fr; }
    .ph-why-col { border-right: none !important; }
}

/* =========================================================
   HOMEPAGE — REVIEWS MARQUEE
   ========================================================= */
.ph-reviews-section {
    background: #faf8f5;
    padding: 90px 0;
    width: 100%;
    overflow: hidden;
}
.ph-reviews-header {
    text-align: center;
    padding: 0 20px 56px;
}
.ph-reviews-heading {
    font-family: var(--e-global-typography-accent-font-family, "Nutritix Heading", sans-serif);
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin: 0 0 16px;
    line-height: 1.15;
}
.ph-reviews-heading em { font-style: italic; }
.ph-reviews-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.ph-stars { color: #e8b800; font-size: 18px; letter-spacing: 3px; }
.ph-reviews-score { font-size: 17px; font-weight: 800; color: #111; }
.ph-reviews-count { font-size: 14px; color: #999; }
.ph-reviews-marquee { overflow: hidden; width: 100%; }
.ph-reviews-track {
    display: flex;
    gap: 0;
    animation: ph-rv-scroll 52s linear infinite;
    width: max-content;
}
.ph-reviews-track:hover { animation-play-state: paused; }
@keyframes ph-rv-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ph-review-card {
    flex-shrink: 0;
    width: 320px;
    background: #fff;
    border: 1px solid #eae7e2;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ph-review-card-stars { color: #e8b800; font-size: 13px; letter-spacing: 2px; }
.ph-review-card-text { font-size: 14px; line-height: 1.72; color: #333; margin: 0; flex: 1; }
.ph-review-card-footer { display: flex; align-items: center; gap: 10px; }
.ph-review-card-author { font-size: 13px; font-weight: 700; color: #111; }
.ph-review-card-verified { font-size: 11px; color: #2e9a08; font-weight: 600; }
.ph-review-card-tag { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 760px) {
    .ph-reviews-heading { font-size: 30px; }
}
@media (max-width: 680px) {
    .ph-reviews-heading { font-size: 26px; }
    .ph-reviews-track { animation-duration: 30s; }
}
@media (max-width: 374px) {
    .ph-review-card { width: 260px; padding: 22px 18px; }
    .ph-reviews-section { padding: 64px 0; }
}

/* =========================================================
   HOMEPAGE — AS FEATURED IN
   ========================================================= */
.ph-press-section {
    background: #f8f5f1;
    padding: 64px 24px;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    width: 100%;
}
.ph-press-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.ph-press-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: #bbb;
    margin: 0 0 36px;
    display: block;
}
.ph-press-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 52px;
}
.ph-press-logo {
    font-size: 23px;
    font-weight: 800;
    color: #c4c0bb;
    cursor: default;
    transition: color 0.2s;
    white-space: nowrap;
    user-select: none;
}
.ph-press-logo:hover { color: #777; }
.ph-press--forbes { font-style: italic; font-family: Georgia, serif; font-weight: 700; }
.ph-press--vogue  { letter-spacing: 0.16em; font-size: 16px; }
.ph-press--health { font-family: Georgia, serif; font-size: 25px; }
.ph-press--today  { font-family: Georgia, serif; font-style: italic; font-size: 28px; }
.ph-press--shape  { letter-spacing: 0.10em; font-size: 19px; }
.ph-press--wsj    { font-family: Georgia, serif; font-size: 26px; letter-spacing: -0.02em; }
@media (max-width: 600px) {
    .ph-press-logos { gap: 10px 24px; }
    .ph-press-logo  { font-size: 16px; }
    .ph-press--today, .ph-press--wsj { font-size: 20px; }
    .ph-press--health { font-size: 18px; }
}
@media (max-width: 374px) {
    .ph-press-logos { gap: 8px 16px; }
    .ph-press-logo  { font-size: 14px; }
    .ph-press--today, .ph-press--wsj { font-size: 17px; }
    .ph-press--health { font-size: 16px; }
    .ph-press--vogue { font-size: 13px; }
}

/* =========================================================
   HOMEPAGE — 30-DAY GUARANTEE
   ========================================================= */
.ph-guarantee-section {
    background: #fff;
    padding: 96px 40px;
    border-top: 1px solid #ebebeb;
    width: 100%;
}
.ph-guarantee-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 68px;
}
.ph-guarantee-badge {
    flex-shrink: 0;
    width: 172px;
    height: 172px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
}
.ph-guarantee-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ph-guarantee-badge-text {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    line-height: 1;
}
.ph-guarantee-badge-text span:first-child { font-size: 32px; font-weight: 900; color: #111; }
.ph-guarantee-badge-day { font-size: 10px; font-weight: 800; letter-spacing: 0.22em; color: #666; }
.ph-guarantee-badge-text span:last-child { font-size: 9px; font-weight: 800; letter-spacing: 0.15em; color: #666; }
.ph-guarantee-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #bbb;
    margin: 0 0 12px;
    display: block;
}
.ph-guarantee-heading {
    font-family: var(--e-global-typography-accent-font-family, "Nutritix Heading", sans-serif);
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin: 0 0 18px;
    line-height: 1.1;
}
.ph-guarantee-body {
    font-size: 15.5px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 32px;
}
.ph-guarantee-btn {
    display: inline-flex;
    align-items: center;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 36px;
    transition: background 0.18s;
}
.ph-guarantee-btn:hover { background: #333; color: #fff; text-decoration: none; }
@media (max-width: 720px) {
    .ph-guarantee-inner { flex-direction: column; text-align: center; gap: 36px; }
    .ph-guarantee-section { padding: 70px 24px; }
    .ph-guarantee-heading { font-size: 28px; }
}
@media (max-width: 374px) {
    .ph-guarantee-section { padding: 56px 16px; }
    .ph-guarantee-heading { font-size: 22px; }
    .ph-guarantee-badge { width: 120px; height: 120px; }
    .ph-guarantee-badge-text span:first-child { font-size: 26px; }
}

/* =========================================================
   HOMEPAGE — BRAND MISSION (dark closing section)
   ========================================================= */
.ph-mission-section {
    background: #111;
    padding: 120px 40px;
    text-align: center;
    width: 100%;
}
.ph-mission-inner {
    max-width: 720px;
    margin: 0 auto;
}
.ph-mission-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
    margin: 0 0 26px;
    display: block;
}
.ph-mission-heading {
    font-family: var(--e-global-typography-accent-font-family, "Nutritix Heading", sans-serif);
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 30px;
}
.ph-mission-heading em { font-style: italic; color: rgba(255,255,255,0.55); }
.ph-mission-body {
    font-size: 16px;
    line-height: 1.80;
    color: rgba(255,255,255,0.52);
    margin: 0 0 46px;
}
.ph-mission-cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px; /* WCAG minimum tap target */
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255,255,255,0.28);
    padding-bottom: 4px;
    transition: border-color 0.18s;
}
.ph-mission-cta:hover { border-color: #fff; color: #fff; text-decoration: none; }
@media (max-width: 720px) {
    .ph-mission-section { padding: 78px 24px; }
    .ph-mission-heading { font-size: 38px; }
}
@media (max-width: 374px) {
    .ph-mission-section { padding: 56px 16px; }
    .ph-mission-heading { font-size: 28px; }
    .ph-mission-body { font-size: 14px; }
}

/* =========================================================
   HOMEPAGE — PRODUCT SWIPER CAROUSEL
   ========================================================= */
.ph-prod-swiper {
    width: 100%;
    overflow: visible !important; /* let drop-shadows & hover lift breathe */
    padding: 0 16px !important;
    box-sizing: border-box;
    /* clip only horizontal so side peeks still work */
    clip-path: inset(0 -100vw -80px -100vw);
}
@media (min-width: 600px) {
    .ph-prod-swiper { padding: 0 24px !important; }
}
@media (min-width: 1100px) {
    .ph-prod-swiper { padding: 0 40px !important; }
}
.ph-prod-swiper .swiper-wrapper {
    align-items: stretch;
}
.ph-prod-swiper .swiper-slide {
    height: auto;
    display: flex;
    padding: 12px 0 20px; /* top: room for hover lift; bottom: shadow room */
    box-sizing: border-box;
}
.ph-prod-swiper .swiper-slide > .ph-disc-card {
    flex: 1; /* card stretches to full slide height */
}

/* Override default Swiper nav button icons — we use our own */
.ph-prod-swiper .swiper-button-prev,
.ph-prod-swiper .swiper-button-next {
    display: none !important;
}

/* Controls row: ← [bullets] → */
.ph-swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px 20px 44px;
    min-height: 60px; /* stable height even if pagination is empty on 1-slide */
}
.ph-swiper-arrow {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border: 2px solid #111;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 900;
    color: #111;
    transition: background 0.18s, color 0.18s, opacity 0.18s;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
}
.ph-swiper-arrow:hover {
    background: #111;
    color: #fff;
}
.ph-swiper-arrow.swiper-button-disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}
.ph-swiper-arrow::after { display: none !important; }

/* Expand tap target to WCAG minimum 44×44px on touch devices */
@media (max-width: 1024px) {
    .ph-swiper-arrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
}

.ph-prod-swiper .swiper-pagination {
    position: static;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    min-height: 12px;
    width: auto !important;
}
.ph-prod-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0ccc6;
    opacity: 1;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    margin: 0 !important;
}
.ph-prod-swiper .swiper-pagination-bullet-active {
    background: #111;
    transform: scale(1.3);
}
/* =========================================================
   HOMEPAGE — PRODUCT BUNDLE SWIPER
   ========================================================= */
.ph-bundle-section {
    background: #f4f1ed;
    padding: 80px 0 64px;
    width: 100%;
    overflow: hidden;
}
.ph-bundle-header {
    text-align: center;
    padding: 0 20px 40px;
}
.ph-bundle-eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}
.ph-bundle-heading {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: -0.01em;
}

/* ── Swiper container ── */
.ph-bundle-swiper {
    padding: 0 24px 0 !important;
    overflow: visible !important;
}
@media (min-width: 768px) {
    .ph-bundle-swiper {
        padding: 0 40px 0 !important;
    }
}
@media (min-width: 1100px) {
    .ph-bundle-swiper {
        padding: 0 60px 0 !important;
    }
}

/* ── Cards ── */
.ph-bundle-swiper .swiper-slide {
    height: auto;
    padding-top: 8px; /* room for any popular badge overflow */
    box-sizing: border-box;
}
.ph-bundle-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border-bottom: 4px solid var(--card-accent, #111);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    height: 100%;
}
.ph-bundle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}
.ph-bundle-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0ede9;
}
.ph-bundle-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10% 8%;
    box-sizing: border-box;
    display: block;
    transition: transform 0.35s ease;
}
.ph-bundle-card:hover .ph-bundle-card-img img {
    transform: scale(1.04);
}
.ph-bundle-card-img-ph {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e3dd 0%, #d4cec7 100%);
}

/* ── Card body ── */
.ph-bundle-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px 16px 20px;
    gap: 6px;
}
.ph-bundle-card-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}
.ph-bundle-card-price {
    font-size: 0.85rem;
    color: #444;
    font-weight: 500;
}
.ph-bundle-card-price .woocommerce-Price-amount {
    font-weight: 600;
    color: #111;
}
.ph-bundle-card-price del {
    color: #aaa;
    font-size: 0.78rem;
    margin-right: 4px;
}
.ph-bundle-card-price ins {
    text-decoration: none;
    color: #c0392b;
}
.ph-bundle-card-cta {
    display: inline-block;
    margin-top: auto;
    padding-top: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--card-accent, #111);
    border-top: 1px solid #f0ede9;
}

/* ── Bullets ── */
.ph-bundle-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 20px 10px;
}
.ph-bundle-swiper .swiper-pagination {
    position: static;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    min-height: 12px;
    width: auto !important;
}
.ph-bundle-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8c3bc;
    opacity: 1;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}
.ph-bundle-swiper .swiper-pagination-bullet-active {
    background: #111;
    transform: scale(1.3);
}

/* ── CTA row ── */
.ph-bundle-cta-wrap {
    text-align: center;
    padding: 32px 20px 20px;
}
.ph-bundle-cta {
    display: inline-block;
    padding: 14px 40px;
    background: #111;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
}
.ph-bundle-cta:hover {
    background: #333;
    transform: translateY(-2px);
}

/* =========================================================
   GLOBAL — FORM UTILITY HIDES
   WPForms honeypot + Gravity Forms artefacts
   ========================================================= */

/* WPForms anti-spam honeypot — rendered visibly in some themes */
.wpforms-field-hp {
    display: none !important;
}

/* Gravity Forms: hide inline validation banner + hidden utility fields */
.gform_validation_errors,
.gform_hidden {
    display: none !important;
}
