@charset "utf-8";
/* ======================================================================
   RoseLeaf Health — Template-9 Elegant Rose / Blush Theme
   ====================================================================== */

/* ── Design Tokens ── */
:root {
    --t9-rose:       #A06B5C;
    --t9-rose-light: rgba(160, 107, 92, 0.12);
    --t9-rose-mid:   rgba(160, 107, 92, 0.40);
    --t9-blush:      #F5E5E0;
    --t9-cream:      #FAF5F0;
    --t9-leaf:       #5CB870;
    --t9-leaf-dark:  #4A9E5C;
    --t9-ink:        #3D2E28;
    --t9-muted:      #8A7570;
    --t9-border:     rgba(61, 46, 40, 0.10);
    --t9-white:      #FFFFFF;
    --t9-font-serif: "Fraunces", Georgia, serif;
    --t9-font-sans:  "Inter", system-ui, -apple-system, sans-serif;
}

/* ── Base Overrides ── */
body {
    background-color: var(--t9-cream);
    color: var(--t9-ink);
    font-family: var(--t9-font-sans);
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--t9-font-serif);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--t9-ink);
}

h1 em, h2 em, h3 em {
    font-style: italic;
    color: var(--t9-rose);
}

a {
    color: var(--t9-rose);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--t9-leaf);
}

/* ── Utility: Eyebrow Label ── */
.t9-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--t9-rose);
    display: block;
    margin-bottom: 12px;
    font-family: var(--t9-font-sans);
}

/* ── Utility: Container ── */
.t9-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Utility: Section Header ── */
.t9-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.t9-section-header h2 {
    font-family: var(--t9-font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--t9-ink);
    margin-top: 8px;
}

.t9-section-header p {
    margin-top: 20px;
    color: var(--t9-muted);
    line-height: 1.7;
    font-size: 16px;
}

/* ── Buttons ── */
.t9-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 36px;
    background: var(--t9-leaf);
    color: var(--t9-white);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--t9-leaf);
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--t9-font-sans);
    line-height: 1;
}

.t9-btn-primary:hover {
    background: var(--t9-leaf-dark);
    border-color: var(--t9-leaf-dark);
    color: var(--t9-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 184, 112, 0.25);
}

.t9-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 36px;
    background: transparent;
    color: var(--t9-ink);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--t9-border);
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--t9-font-sans);
    line-height: 1;
}

.t9-btn-ghost:hover {
    border-color: var(--t9-rose);
    color: var(--t9-rose);
    text-decoration: none;
}

.t9-btn-shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: var(--t9-leaf);
    color: var(--t9-white);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--t9-font-sans);
    line-height: 1;
}

.t9-btn-shop:hover {
    background: var(--t9-leaf-dark);
    color: var(--t9-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(92, 184, 112, 0.3);
}


/* ======================================================================
   HEADER
   ====================================================================== */
.t9-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 245, 240, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--t9-border);
    transition: box-shadow 0.3s ease;
}

.t9-header-scrolled {
    box-shadow: 0 2px 20px rgba(61, 46, 40, 0.06);
}

.t9-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.t9-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    text-decoration: none;
}

.t9-logo-brand {
    font-family: var(--t9-font-serif);
    font-size: 30px;
    letter-spacing: -0.5px;
    color: var(--t9-rose);
    font-weight: 500;
    line-height: 1;
}

.t9-logo-sub {
    font-family: var(--t9-font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--t9-ink);
}

/* Desktop Nav */
.t9-nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.t9-nav ul li a {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--t9-ink);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    font-family: var(--t9-font-sans);
}

.t9-nav ul li a:hover,
.t9-nav ul li a.active {
    color: var(--t9-rose);
}

/* Mobile Toggle */
.t9-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.t9-mobile-toggle .bar1,
.t9-mobile-toggle .bar2,
.t9-mobile-toggle .bar3 {
    width: 26px;
    height: 2.5px;
    background-color: var(--t9-ink);
    transition: 0.3s;
    border-radius: 2px;
}

.t9-mobile-toggle .bar2 {
    margin: 6px 0;
}

.t9-mobile-toggle.active .bar1 {
    transform: rotate(-45deg) translate(-6px, 5px);
}

.t9-mobile-toggle.active .bar2 {
    opacity: 0;
}

.t9-mobile-toggle.active .bar3 {
    transform: rotate(45deg) translate(-6px, -5px);
}

/* Mobile Nav Panel */
.t9-mobile-nav {
    display: none;
    background: var(--t9-cream);
    border-top: 1px solid var(--t9-border);
    padding: 24px;
}

.t9-mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.t9-mobile-nav a {
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--t9-ink);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid var(--t9-border);
    font-family: var(--t9-font-sans);
    font-weight: 500;
}

.t9-mobile-nav a:hover {
    color: var(--t9-rose);
}


/* ======================================================================
   HERO SECTION
   ====================================================================== */
.t9-hero {
    padding: 80px 0 100px;
    background: var(--t9-cream);
    overflow: hidden;
}

.t9-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.t9-hero-content {
    max-width: 560px;
}

.t9-hero-heading {
    font-family: var(--t9-font-serif);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    line-height: 1;
    color: var(--t9-ink);
    font-weight: 400;
    margin-top: 8px;
}

.t9-hero-heading em {
    font-style: italic;
    color: var(--t9-rose);
}

.t9-hero-desc {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--t9-muted);
    max-width: 480px;
}

/* Benefits Checklist */
.t9-hero-checklist {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}

.t9-hero-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--t9-ink);
    font-family: var(--t9-font-sans);
}

.t9-hero-checklist li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--t9-leaf);
}

/* Hero CTA */
.t9-hero-cta {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Image */
.t9-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.t9-hero-img-frame {
    position: relative;
    background: var(--t9-blush);
    border-radius: 2rem;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(160, 107, 92, 0.12);
}

.t9-hero-img-frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-width: 420px;
    border-radius: 1.5rem;
}


/* ======================================================================
   WELLNESS SECTION
   ====================================================================== */
.t9-wellness {
    padding: 100px 0;
    background: var(--t9-blush);
}

.t9-wellness-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.t9-wellness-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: 2rem;
    box-shadow: 0 16px 48px rgba(160, 107, 92, 0.15);
}

.t9-wellness-content h2 {
    font-family: var(--t9-font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    line-height: 1.1;
    margin-top: 8px;
}

.t9-wellness-content > p {
    margin-top: 20px;
    color: var(--t9-muted);
    line-height: 1.75;
    font-size: 16px;
}

.t9-wellness-content .t9-btn-primary {
    margin-top: 32px;
}

/* Wellness Features */
.t9-wellness-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.t9-wellness-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.t9-wellness-icon {
    width: 48px;
    height: 48px;
    background: var(--t9-rose-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.t9-wellness-icon svg {
    width: 22px;
    height: 22px;
    color: var(--t9-rose);
}

.t9-wellness-feature h4 {
    font-family: var(--t9-font-serif);
    font-size: 18px;
    color: var(--t9-ink);
    margin: 0;
    font-weight: 500;
}

.t9-wellness-feature > div p {
    margin-top: 4px;
    font-size: 14px;
    color: var(--t9-muted);
    line-height: 1.5;
}


/* ======================================================================
   PRODUCTS SECTION
   ====================================================================== */
.t9-products {
    padding: 100px 0 120px;
    background: var(--t9-cream);
}

.t9-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.t9-product-card {
    background: var(--t9-white);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(61, 46, 40, 0.06);
    border: 1px solid var(--t9-border);
    transition: all 0.4s ease;
}

.t9-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(160, 107, 92, 0.14);
}

.t9-product-img {
    background: var(--t9-blush);
    padding: 32px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.t9-product-img img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.t9-product-card:hover .t9-product-img img {
    transform: scale(1.05);
}

.t9-product-info {
    padding: 28px 28px 32px;
    text-align: center;
}

.t9-product-info h3 {
    font-family: var(--t9-font-serif);
    font-size: 22px;
    color: var(--t9-ink);
    font-weight: 400;
    margin: 0;
}

.t9-product-label {
    font-size: 12px;
    color: var(--t9-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}

.t9-product-price {
    margin-top: 12px;
    font-family: var(--t9-font-serif);
    font-size: 28px;
    color: var(--t9-ink);
    font-weight: 400;
}

.t9-price-label {
    font-size: 13px;
    color: var(--t9-rose);
    font-family: var(--t9-font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-right: 4px;
}

.t9-product-info .t9-btn-shop {
    margin-top: 20px;
}

.t9-products-footer {
    text-align: center;
    margin-top: 56px;
}


/* ======================================================================
   CTA SECTION
   ====================================================================== */
.t9-cta {
    padding: 100px 0;
    background: var(--t9-rose);
}

.t9-cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.t9-cta-inner h2 {
    font-family: var(--t9-font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--t9-white);
    margin-top: 8px;
}

.t9-cta-inner h2 em {
    color: var(--t9-blush);
}

.t9-cta-inner > p {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.7;
    font-size: 17px;
}

.t9-cta-actions {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.t9-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: var(--t9-white);
    color: var(--t9-rose);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--t9-white);
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--t9-font-sans);
    line-height: 1;
}

.t9-btn-cta:hover {
    background: var(--t9-cream);
    color: var(--t9-rose);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.t9-btn-cta-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: transparent;
    color: var(--t9-white);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--t9-font-sans);
    line-height: 1;
}

.t9-btn-cta-ghost:hover {
    border-color: var(--t9-white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--t9-white);
    text-decoration: none;
}


/* ======================================================================
   FAQ SECTION
   ====================================================================== */
.t9-faq {
    padding: 80px 0 100px;
    background: var(--t9-cream);
}

.t9-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.t9-faq-item {
    border-bottom: 1px solid var(--t9-border);
    overflow: hidden;
}

.t9-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--t9-font-sans);
    font-size: 17px;
    font-weight: 600;
    color: var(--t9-ink);
    line-height: 1.5;
    transition: color 0.2s;
}

.t9-faq-question:hover {
    color: var(--t9-rose);
}

.t9-faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--t9-rose);
    transition: transform 0.3s;
    margin-left: 16px;
}

.t9-faq-item.open .t9-faq-icon {
    transform: rotate(45deg);
}

.t9-faq-answer {
    display: none;
    padding: 0 0 24px;
}

.t9-faq-item.open .t9-faq-answer {
    display: block;
}

.t9-faq-answer p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--t9-muted);
    margin: 0;
}


/* ======================================================================
   FOOTER
   ====================================================================== */
.t9-footer {
    background: var(--t9-ink);
    color: var(--t9-cream);
}

.t9-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding: 80px 0;
}

/* Footer Brand */
.t9-footer-brand .t9-logo-brand {
    color: var(--t9-cream);
    font-size: 32px;
}

.t9-footer-brand .t9-logo-sub {
    color: var(--t9-rose);
}

.t9-footer-tagline {
    margin-top: 20px;
    max-width: 340px;
    color: rgba(250, 245, 240, 0.65);
    font-family: var(--t9-font-serif);
    font-size: 17px;
    line-height: 1.6;
    font-style: italic;
}

.t9-footer-contact {
    margin-top: 24px;
}

.t9-footer-contact p {
    margin: 6px 0;
    font-size: 14px;
}

.t9-footer-contact a {
    color: rgba(250, 245, 240, 0.80);
    text-decoration: none;
    transition: color 0.2s;
}

.t9-footer-contact a:hover {
    color: var(--t9-rose);
}

.t9-footer-hours {
    font-size: 12px !important;
    color: rgba(250, 245, 240, 0.50) !important;
    margin-top: 4px !important;
}

/* Footer Column Headings */
.t9-footer-col h4 {
    font-family: var(--t9-font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--t9-rose);
    margin-bottom: 20px;
}

/* Footer Links */
.t9-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.t9-footer-links li {
    margin-bottom: 12px;
}

.t9-footer-links li a {
    font-size: 14px;
    color: rgba(250, 245, 240, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.t9-footer-links li a:hover {
    color: var(--t9-rose);
}

/* Footer Bottom */
.t9-footer-bottom {
    border-top: 1px solid rgba(250, 245, 240, 0.08);
    padding: 32px 0;
}

.t9-disclaimer {
    font-size: 11px;
    color: rgba(250, 245, 240, 0.40);
    line-height: 1.7;
    margin: 0 0 12px;
}

.t9-company-info {
    font-size: 11px;
    color: rgba(250, 245, 240, 0.35);
    margin: 4px 0;
}

.t9-copyright {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(250, 245, 240, 0.50);
    letter-spacing: 0.05em;
}


/* ======================================================================
   PRODUCT PAGE OVERRIDES (shop.php, product.php shared styles)
   ====================================================================== */

/* Breadcrumb */
.prodBreadcrm {
    background: var(--t9-cream);
    border-bottom: 1px solid var(--t9-border);
}

.prodBreadcrm p,
.prodBreadcrm a {
    color: var(--t9-ink);
    font-family: var(--t9-font-sans);
}

.prodBreadcrm span {
    color: var(--t9-rose);
}

/* Section 2 (product listing) */
.section-2 {
    background: var(--t9-cream);
}

/* Section headings */
.s1-p1 {
    font-family: var(--t9-font-serif);
    color: var(--t9-ink);
    font-weight: 400;
    font-style: italic;
}

.s1-p1 span {
    color: var(--t9-rose);
    font-style: normal;
}

.s1-p2 {
    font-family: var(--t9-font-sans);
    color: var(--t9-muted);
}

/* Hide old decoration elements */
.sec-line-2 {
    display: none;
}

.s2-bx-arw {
    display: none;
}

.s2-prc-arw {
    display: none;
}

/* Product box cards */
.s2-prd-box {
    background: var(--t9-white);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(61, 46, 40, 0.06);
    border: 1px solid var(--t9-border);
    transition: all 0.4s ease;
}

.s2-prd-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(160, 107, 92, 0.14);
}

/* Product name bar */
.s2-p1 {
    background: var(--t9-ink);
    font-family: var(--t9-font-serif);
    font-size: 20px;
    line-height: 28px;
    padding: 16px 24px;
    letter-spacing: 0.3px;
    font-weight: 400;
    color: var(--t9-cream);
    border-radius: 2rem 2rem 0 0;
}

/* Product variant bar */
.s2-p2 {
    background: var(--t9-blush);
    color: var(--t9-ink);
    font-family: var(--t9-font-sans);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marg-1 .s2-p2,
.s2-3rd-box .s2-p2 {
    background: var(--t9-blush);
}

/* Product image area */
.s2-prd-div {
    padding: 28px 24px;
    background: var(--t9-white);
}

/* Price area */
.s2-price-div {
    background: var(--t9-white);
    border: none;
    border-top: 1px solid var(--t9-border);
    padding: 24px;
}

/* Price text */
.s2-p3 {
    font-family: var(--t9-font-serif);
    color: var(--t9-ink);
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
    font-weight: 400;
}

.s2-p3 span {
    font-size: 13px;
    color: var(--t9-rose);
    font-family: var(--t9-font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Shop button override */
.shop-btn {
    font-family: var(--t9-font-sans);
    border: none;
    color: var(--t9-white);
    background: var(--t9-leaf);
    border-radius: 999px;
    font-size: 13px;
    line-height: 48px;
    width: 220px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background: var(--t9-leaf-dark);
    color: var(--t9-white);
    border-color: var(--t9-leaf-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(92, 184, 112, 0.3);
}

.shop-btn i {
    color: inherit;
}


/* ======================================================================
   ADDITIONAL PRODUCT/INNER PAGE OVERRIDES
   ====================================================================== */

/* Banner section */
.banner {
    background-color: var(--t9-cream);
}

.bnr-p1 {
    font-family: var(--t9-font-serif);
    color: var(--t9-ink);
}

.bnr-p1 span {
    color: var(--t9-rose);
}

.bnr-p2 {
    color: var(--t9-muted);
    font-family: var(--t9-font-sans);
}

/* Section-1 general */
.section-1 {
    background: var(--t9-blush);
}

.s1-p3 {
    font-family: var(--t9-font-serif);
    color: var(--t9-ink);
}

/* Section-3 */
.section-3 {
    background: var(--t9-cream);
}

.s3-p1 {
    font-family: var(--t9-font-serif);
    color: var(--t9-ink);
}

.s3-txt {
    font-family: var(--t9-font-sans);
    color: var(--t9-muted);
}

/* Section-4 (FAQ from old template) */
.section-4 {
    background: var(--t9-blush);
}

/* Accordion */
.acdn-heading {
    font-family: var(--t9-font-sans);
    color: var(--t9-ink);
    font-weight: 600;
}

.acdn-para {
    font-family: var(--t9-font-sans);
    color: var(--t9-muted);
}

/* Old footer overrides for backward compat */
footer {
    background: var(--t9-ink);
    color: var(--t9-cream);
}

.ftr-txt2 {
    color: rgba(250, 245, 240, 0.40);
    font-size: 11px;
}

.foo-btm {
    background: var(--t9-ink);
    border-top: 1px solid rgba(250, 245, 240, 0.08);
}

.foo-btm p {
    color: rgba(250, 245, 240, 0.50);
}

.other-links li a {
    color: rgba(250, 245, 240, 0.60);
}

.other-links li a:hover {
    color: var(--t9-rose);
}

.ftr-nav li {
    color: rgba(250, 245, 240, 0.70);
}

.ftr-nav li a {
    color: rgba(250, 245, 240, 0.70);
}

.ftr-nav li a:hover {
    color: var(--t9-rose);
}

/* Old header overrides for other pages (top-bar) */
.top-sec {
    background: var(--t9-cream);
}

.top-bar {
    background: rgba(250, 245, 240, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--t9-border);
}

.top-bar.fixed-nav {
    box-shadow: 0 2px 20px rgba(61, 46, 40, 0.06);
}

.logo .logo-health {
    font-family: var(--t9-font-serif);
    color: var(--t9-rose);
    font-weight: 500;
}

.logo .logo-life {
    font-family: var(--t9-font-sans);
    color: var(--t9-ink);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.65rem;
    font-weight: 600;
}

.menu-bar li a {
    font-family: var(--t9-font-sans);
    color: var(--t9-ink);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
}

.menu-bar li a:hover,
.menu-bar li a.active {
    color: var(--t9-rose);
}

.hdrbtn {
    background: var(--t9-leaf);
    color: var(--t9-white);
    border-radius: 999px;
    font-family: var(--t9-font-sans);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
    border: none;
    transition: all 0.3s ease;
}

.hdrbtn:hover {
    background: var(--t9-leaf-dark);
    color: var(--t9-white);
}

.mobimenu {
    background: var(--t9-cream);
    border-top: 1px solid var(--t9-border);
}

.mobimenu li a {
    color: var(--t9-ink);
    font-family: var(--t9-font-sans);
    font-weight: 500;
}

.mobimenu li a:hover {
    color: var(--t9-rose);
}

.mob-mnu-ic .bar1,
.mob-mnu-ic .bar2,
.mob-mnu-ic .bar3,
.dl-trigger .bar1,
.dl-trigger .bar2,
.dl-trigger .bar3 {
    background-color: var(--t9-ink);
}

/* Promise bar section */
.bnr-btm-sec {
    background: var(--t9-blush);
}

.promise-hdng {
    font-family: var(--t9-font-serif);
    color: var(--t9-ink);
}

.promise-list li p {
    font-family: var(--t9-font-sans);
    color: var(--t9-ink);
}

/* Inner page styling */
.inner-page-bnr {
    background: var(--t9-blush);
}

.inner-pg-hdng {
    font-family: var(--t9-font-serif);
    color: var(--t9-ink);
}

/* Cart and checkout pages */
.cart-sec {
    background: var(--t9-cream);
}

.step-hd.actv {
    background: var(--t9-rose);
    color: var(--t9-white);
}

.step-hd {
    font-family: var(--t9-font-sans);
    font-weight: 600;
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    border-color: var(--t9-border);
    font-family: var(--t9-font-sans);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: var(--t9-rose);
    outline: none;
    box-shadow: 0 0 0 3px var(--t9-rose-light);
}

/* Checkout button */
.chkout-btn {
    background: var(--t9-leaf);
    color: var(--t9-white);
    border: none;
    border-radius: 999px;
    font-family: var(--t9-font-sans);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.chkout-btn:hover {
    background: var(--t9-leaf-dark);
    color: var(--t9-white);
}


/* ======================================================================
   RESPONSIVE: TABLET (max-width: 1023px)
   ====================================================================== */
@media only screen and (max-width: 1023px) {
    .t9-header-inner {
        height: 64px;
        padding: 0 16px;
    }

    .t9-logo-brand {
        font-size: 24px;
    }

    .t9-nav {
        display: none;
    }

    .t9-mobile-toggle {
        display: block;
    }

    /* Hero */
    .t9-hero {
        padding: 48px 0 64px;
    }

    .t9-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .t9-hero-heading {
        font-size: 2.75rem;
    }

    .t9-hero-image {
        order: -1;
    }

    .t9-hero-img-frame {
        max-width: 360px;
        margin: 0 auto;
        padding: 24px;
    }

    /* Wellness */
    .t9-wellness {
        padding: 64px 0;
    }

    .t9-wellness-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .t9-wellness-img img {
        max-height: 360px;
    }

    /* Products */
    .t9-products {
        padding: 64px 0 80px;
    }

    .t9-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .t9-product-card {
        border-radius: 1.5rem;
    }

    /* CTA */
    .t9-cta {
        padding: 64px 0;
    }

    /* FAQ */
    .t9-faq {
        padding: 48px 0 64px;
    }

    /* Footer */
    .t9-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
    }
}


/* ======================================================================
   RESPONSIVE: MOBILE (max-width: 768px)
   ====================================================================== */
@media only screen and (max-width: 768px) {
    .t9-container {
        padding: 0 16px;
    }

    .t9-header-inner {
        height: 56px;
    }

    .t9-logo-brand {
        font-size: 22px;
    }

    /* Hero */
    .t9-hero {
        padding: 32px 0 48px;
    }

    .t9-hero-heading {
        font-size: 2.25rem;
    }

    .t9-hero-desc {
        font-size: 15px;
    }

    .t9-hero-checklist {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .t9-hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .t9-btn-primary,
    .t9-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .t9-hero-img-frame {
        padding: 20px;
        border-radius: 1.5rem;
    }

    .t9-hero-img-frame img {
        border-radius: 1rem;
    }

    /* Wellness */
    .t9-wellness {
        padding: 48px 0;
    }

    .t9-wellness-content h2 {
        font-size: 1.75rem;
    }

    .t9-wellness-img img {
        border-radius: 1.5rem;
    }

    /* Products */
    .t9-products {
        padding: 48px 0 64px;
    }

    .t9-section-header {
        margin-bottom: 40px;
    }

    .t9-section-header h2 {
        font-size: 1.75rem;
    }

    .t9-product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .t9-product-card {
        border-radius: 1.5rem;
    }

    .t9-product-img {
        padding: 24px 16px;
    }

    .t9-product-info {
        padding: 20px 20px 24px;
    }

    .t9-product-info h3 {
        font-size: 19px;
    }

    .t9-product-price {
        font-size: 24px;
    }

    /* CTA */
    .t9-cta {
        padding: 48px 0;
    }

    .t9-cta-inner h2 {
        font-size: 1.75rem;
    }

    .t9-cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .t9-btn-cta,
    .t9-btn-cta-ghost {
        width: 100%;
        justify-content: center;
    }

    /* FAQ */
    .t9-faq {
        padding: 40px 0 56px;
    }

    .t9-faq-question {
        font-size: 15px;
        padding: 18px 0;
    }

    /* Footer */
    .t9-footer-grid {
        padding: 40px 0;
        gap: 28px;
    }

    .t9-footer-tagline {
        font-size: 15px;
    }

    .t9-footer-brand .t9-logo-brand {
        font-size: 26px;
    }
}


/* ======================================================================
   RESPONSIVE: SMALL MOBILE (max-width: 480px)
   ====================================================================== */
@media only screen and (max-width: 480px) {
    .t9-hero-heading {
        font-size: 1.85rem;
    }

    .t9-hero-desc {
        font-size: 14px;
    }

    .t9-hero-checklist li {
        font-size: 13px;
    }

    .t9-wellness-content h2 {
        font-size: 1.5rem;
    }

    .t9-section-header h2 {
        font-size: 1.5rem;
    }

    .t9-product-info h3 {
        font-size: 17px;
    }

    .t9-product-price {
        font-size: 22px;
    }

    .t9-cta-inner h2 {
        font-size: 1.5rem;
    }

    .t9-faq-question {
        font-size: 14px;
    }

    .t9-faq-answer p {
        font-size: 13px;
    }

    .t9-btn-primary,
    .t9-btn-ghost,
    .t9-btn-shop,
    .t9-btn-cta,
    .t9-btn-cta-ghost {
        padding: 12px 24px;
        font-size: 0.7rem;
    }
}


/* ======================================================================
   MISC OVERRIDES & CLEANUP
   ====================================================================== */

/* Remove old decorative lines from base template */
.sec-line {
    display: none;
}

/* Clearfix */
.clearall {
    clear: both;
    display: block;
}

/* Overflow wrapper on index */
.overflow {
    overflow-x: hidden;
}

/* Hide utility classes from base theme */
.show-desk {
    display: inline-block;
}

.show-mob {
    display: none;
}

.show-tab {
    display: none;
}

.hide-mob {
    display: inline;
}

@media only screen and (max-width: 1023px) {
    .show-tab {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .show-desk {
        display: none;
    }

    .show-mob {
        display: block;
    }

    .hide-mob {
        display: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--t9-rose-light);
    color: var(--t9-ink);
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid var(--t9-rose);
    outline-offset: 2px;
}

/* Image defaults */
img {
    max-width: 100%;
    height: auto;
}
