/* ================================================================
   Rootwell Naturals — Template-6 App-Like Stylesheet
   Sticky nav, animated blobs, floating bottle, guarantee badge
   ================================================================ */

/* ── CSS Variables ── */
:root {
    --forest: #2d4a5e;
    --forest-dark: #1a3040;
    --terra: #5a9a8a;
    --terra-dark: #4a8070;
    --cream: #f7f3ed;
    --sand: #ede8df;
    --border: #e5e1d8;
    --muted: #6b7280;
    --bg: #ffffff;
    --radius-full: 9999px;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --font-display: 'Fraunces', serif;
    --font-sans: 'Inter', sans-serif;
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; }
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    font-weight: 400;
    color: #1a1a1a;
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
button { cursor: pointer; font-family: inherit; }

/* ── Container ── */
.t6-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 640px) {
    .t6-container { padding: 0 24px; }
}
@media (min-width: 1024px) {
    .t6-container { padding: 0 32px; }
}

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announcement-bar {
    background: var(--forest-dark);
    color: var(--cream);
    text-align: center;
    font-size: 13px;
    padding: 10px 16px;
    line-height: 1.4;
}
.announcement-bar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cream);
    transition: opacity 0.2s;
}
.announcement-bar a:hover { opacity: 0.8; }
.announcement-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terra);
    flex-shrink: 0;
}

/* ================================================================
   STICKY HEADER (Glass Effect)
   ================================================================ */
.t6-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255,255,255,0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
.t6-header.scrolled {
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.t6-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

/* Logo */
.t6-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.t6-logo-icon {
    display: grid;
    place-items: center;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--cream);
    flex-shrink: 0;
}
.t6-logo-icon svg { width: 18px; height: 18px; }
.t6-logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--forest-dark);
    white-space: nowrap;
}
.t6-logo-text span { color: var(--terra); }

/* Desktop Nav */
.t6-nav {
    display: none;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
}
@media (min-width: 768px) {
    .t6-nav { display: flex; }
}
.t6-nav a {
    color: #333;
    transition: color 0.2s;
}
.t6-nav a:hover { color: var(--terra); }
.t6-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--forest);
    color: var(--cream);
    border-radius: var(--radius-full);
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    transition: background 0.2s;
}
.t6-cart-btn:hover { background: var(--forest-dark); }
.t6-cart-btn svg { width: 16px; height: 16px; }

/* Mobile Hamburger */
.t6-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
}
@media (min-width: 768px) {
    .t6-mobile-toggle { display: none; }
}
.t6-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--forest-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.t6-mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.t6-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.t6-mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.t6-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    z-index: 39;
}
.t6-mobile-menu.open { display: block; }
.t6-mobile-menu a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--forest-dark);
    transition: color 0.2s, background 0.2s;
}
.t6-mobile-menu a:hover {
    color: var(--terra);
    background: var(--cream);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.t6-hero {
    position: relative;
    overflow: hidden;
}

/* Animated Background Blobs */
.t6-blob-container {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.t6-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.t6-blob--terra {
    top: -160px;
    right: -160px;
    width: 600px;
    height: 600px;
    background: rgba(90, 154, 138, 0.10);
    filter: blur(80px);
}
.t6-blob--forest {
    bottom: -160px;
    left: -160px;
    width: 500px;
    height: 500px;
    background: rgba(45, 74, 94, 0.10);
    filter: blur(80px);
}

/* Hero Grid */
.t6-hero-grid {
    display: grid;
    gap: 48px;
    padding-top: 48px;
    padding-bottom: 80px;
    align-items: center;
}
@media (min-width: 1024px) {
    .t6-hero-grid {
        grid-template-columns: 1fr 1fr;
        padding-top: 64px;
        padding-bottom: 96px;
    }
}

/* Hero Text */
.t6-hero-eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--terra);
    font-size: 18px;
    margin-bottom: 16px;
}
.t6-hero-title {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1.05;
    color: var(--forest-dark);
    font-weight: 400;
}
@media (min-width: 640px) {
    .t6-hero-title { font-size: 60px; }
}
@media (min-width: 1024px) {
    .t6-hero-title { font-size: 72px; }
}
.t6-hero-subtitle {
    margin-top: 24px;
    font-family: var(--font-display);
    font-size: 24px;
    color: rgba(45, 74, 94, 0.8);
}
@media (min-width: 640px) {
    .t6-hero-subtitle { font-size: 30px; }
}
.t6-hero-desc {
    margin-top: 24px;
    max-width: 520px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}
.t6-hero-actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* CTA Buttons */
.t6-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--terra);
    color: var(--cream);
    border-radius: var(--radius-full);
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    box-shadow: 0 8px 24px rgba(90, 154, 138, 0.20);
    transition: background 0.2s, transform 0.15s;
}
.t6-btn-primary:hover {
    background: var(--terra-dark);
    transform: translateY(-1px);
}
.t6-btn-primary svg { width: 16px; height: 16px; }

.t6-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--forest-dark);
    border: 1px solid rgba(45, 74, 94, 0.2);
    border-radius: var(--radius-full);
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s;
}
.t6-btn-ghost:hover { background: rgba(45, 74, 94, 0.05); }

/* Hero Image Area */
.t6-hero-visual {
    position: relative;
}
.t6-hero-image {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 25px 50px rgba(45, 74, 94, 0.10);
}
.t6-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Bottle Overlay */
.t6-floating-bottle {
    display: none;
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 224px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.20));
    z-index: 2;
}
@media (min-width: 768px) {
    .t6-floating-bottle {
        display: block;
        width: 224px;
    }
}
@media (min-width: 640px) {
    .t6-floating-bottle { width: 288px; }
}

/* Circular Guarantee Badge */
.t6-guarantee-badge {
    display: none;
    position: absolute;
    top: -24px;
    right: -24px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid rgba(90, 154, 138, 0.30);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 3;
}
@media (min-width: 640px) {
    .t6-guarantee-badge { display: flex; }
}
.t6-guarantee-num {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--terra);
    line-height: 1;
}
.t6-guarantee-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(45, 74, 94, 0.7);
    margin-top: 4px;
}

/* ================================================================
   FEATURES / TRUST CARD (Below Hero)
   ================================================================ */
.t6-features-card {
    margin-top: -24px;
    padding-bottom: 64px;
    position: relative;
    z-index: 2;
}
.t6-features-inner {
    border-radius: var(--radius-2xl);
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 24px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (min-width: 1024px) {
    .t6-features-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}
.t6-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.t6-feature-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(45, 74, 94, 0.1);
    color: var(--forest);
    flex-shrink: 0;
}
.t6-feature-icon svg { width: 20px; height: 20px; }
.t6-feature-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--forest-dark);
}
.t6-feature-desc {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
}

/* ================================================================
   ABOUT SECTION (cream bg)
   ================================================================ */
.t6-about {
    background: var(--cream);
    padding: 80px 0 80px;
}
@media (min-width: 1024px) {
    .t6-about { padding: 112px 0; }
}
.t6-about-grid {
    display: grid;
    gap: 64px;
    align-items: center;
}
@media (min-width: 1024px) {
    .t6-about-grid { grid-template-columns: 1fr 1fr; }
}

/* Eyebrow + Heading Shared */
.t6-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    color: var(--terra);
    font-weight: 600;
    margin-bottom: 16px;
}
.t6-section-title {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--forest-dark);
    font-weight: 400;
}
@media (min-width: 640px) {
    .t6-section-title { font-size: 48px; }
}

.t6-about-text {
    margin-top: 24px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}
.t6-about-text + .t6-about-text { margin-top: 16px; }

/* Benefit Items */
.t6-benefits {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.t6-benefit {
    display: flex;
    gap: 16px;
}
.t6-benefit-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-2xl);
    background: rgba(90, 154, 138, 0.10);
    color: var(--terra);
    flex-shrink: 0;
}
.t6-benefit-icon svg { width: 20px; height: 20px; }
.t6-benefit-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--forest-dark);
}
.t6-benefit-desc {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
}

/* About Image + Testimonial Overlay */
.t6-about-visual {
    position: relative;
}
.t6-about-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.t6-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.t6-testimonial-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-2xl);
    padding: 20px;
    border: 1px solid var(--border);
}
.t6-testimonial-quote {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--forest-dark);
    line-height: 1.5;
}
.t6-testimonial-author {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
}

/* ================================================================
   SHOP / PACKAGES SECTION
   ================================================================ */
.t6-shop {
    padding: 80px 0;
}
@media (min-width: 1024px) {
    .t6-shop { padding: 112px 0; }
}
.t6-shop-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.t6-shop-header .t6-section-title { margin-bottom: 16px; }
.t6-shop-desc {
    color: var(--muted);
    font-size: 15px;
}

/* Shop Grid */
.t6-shop-grid {
    display: grid;
    gap: 48px;
    align-items: flex-start;
}
@media (min-width: 1024px) {
    .t6-shop-grid { grid-template-columns: 1fr 1fr; }
}

/* Product Image Card */
.t6-product-showcase {
    position: relative;
    border-radius: 2rem;
    background: linear-gradient(135deg, var(--cream), var(--sand));
    padding: 32px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}
.t6-product-showcase img {
    max-height: 420px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}
.t6-best-value-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--forest);
    color: var(--cream);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Package Selector Card */
.t6-selector-card {
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 32px 40px;
    background: var(--bg);
}
@media (max-width: 639px) {
    .t6-selector-card { padding: 24px 20px; }
}
.t6-selector-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--forest-dark);
    margin-bottom: 16px;
}

/* Package Buttons Grid */
.t6-package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (min-width: 640px) {
    .t6-package-grid { grid-template-columns: repeat(3, 1fr); }
}
.t6-package-btn {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    text-align: left;
    background: var(--bg);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.t6-package-btn:hover { border-color: rgba(45, 74, 94, 0.4); }
.t6-package-btn.active {
    border-color: var(--terra);
    background: rgba(90, 154, 138, 0.05);
    box-shadow: 0 0 0 3px rgba(90, 154, 138, 0.15);
}
.t6-package-btn-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--forest-dark);
}
.t6-package-btn-price {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}
.t6-popular-tag {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--forest);
    color: var(--cream);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* Purchase Type Toggle */
.t6-purchase-toggle {
    margin-top: 32px;
}
.t6-toggle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}
.t6-toggle-btn {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    background: var(--bg);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.t6-toggle-btn:hover { border-color: rgba(45, 74, 94, 0.4); }
.t6-toggle-btn.active {
    border-color: var(--forest);
    background: rgba(45, 74, 94, 0.05);
    box-shadow: 0 0 0 3px rgba(45, 74, 94, 0.10);
}
.t6-toggle-header {
    display: flex;
    align-items: center;
    gap: 8px;
}
.t6-toggle-radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}
.t6-toggle-btn.active .t6-toggle-radio {
    border-color: var(--forest);
    background: var(--forest);
}
.t6-toggle-radio-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cream);
    display: none;
}
.t6-toggle-btn.active .t6-toggle-radio-dot { display: block; }
.t6-toggle-title {
    font-size: 14px;
    font-weight: 600;
}
.t6-toggle-desc {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
    margin-left: 24px;
}

/* Total Price */
.t6-total-row {
    margin-top: 32px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}
.t6-total-label {
    font-size: 14px;
    color: var(--muted);
}
.t6-total-price {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--forest-dark);
}

/* Shop Now Full Width */
.t6-shop-submit {
    margin-top: 24px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--terra);
    color: var(--cream);
    border: none;
    border-radius: var(--radius-full);
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}
.t6-shop-submit:hover { background: var(--terra-dark); }
.t6-shop-submit svg { width: 16px; height: 16px; }
.t6-secure-text {
    margin-top: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
}

/* ================================================================
   3 STEPS (Dark Section)
   ================================================================ */
.t6-steps {
    background: var(--forest-dark);
    color: var(--cream);
    padding: 80px 0;
}
@media (min-width: 1024px) {
    .t6-steps { padding: 112px 0; }
}
.t6-steps-header { max-width: 640px; }
.t6-steps-header .t6-section-title {
    color: var(--cream);
}
.t6-steps-subtitle {
    margin-top: 16px;
    color: rgba(247, 243, 237, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

/* Step Cards Grid */
.t6-steps-grid {
    display: grid;
    gap: 24px;
    margin-top: 64px;
}
@media (min-width: 768px) {
    .t6-steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.t6-step-card {
    background: rgba(247, 243, 237, 0.05);
    border: 1px solid rgba(247, 243, 237, 0.10);
    border-radius: var(--radius-3xl);
    padding: 32px;
    transition: background 0.3s;
}
.t6-step-card:hover {
    background: rgba(247, 243, 237, 0.10);
}
.t6-step-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.t6-step-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-2xl);
    background: var(--terra);
    color: var(--cream);
}
.t6-step-icon svg { width: 24px; height: 24px; }
.t6-step-number {
    font-family: var(--font-display);
    font-size: 36px;
    color: rgba(247, 243, 237, 0.20);
}
.t6-step-title {
    margin-top: 32px;
    font-size: 24px;
    font-weight: 500;
}
.t6-step-desc {
    margin-top: 12px;
    color: rgba(247, 243, 237, 0.7);
    font-size: 14px;
    line-height: 1.7;
}
.t6-steps-cta {
    margin-top: 56px;
    text-align: center;
}

/* ================================================================
   HOW IT WORKS (Numbered Process)
   ================================================================ */
.t6-process {
    padding: 80px 0;
}
@media (min-width: 1024px) {
    .t6-process { padding: 112px 0; }
}
.t6-process-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.t6-process-note {
    margin-top: 16px;
    color: var(--muted);
    font-style: italic;
    font-size: 14px;
}

/* Process Steps */
.t6-process-grid {
    display: grid;
    gap: 32px;
    position: relative;
}
@media (min-width: 768px) {
    .t6-process-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Dashed Connector Line */
.t6-dashed-line {
    display: none;
}
@media (min-width: 768px) {
    .t6-dashed-line {
        display: block;
        position: absolute;
        top: 40px;
        left: 16%;
        right: 16%;
        height: 0;
        border-top: 2px dashed var(--border);
        z-index: 0;
    }
}

/* Process Step */
.t6-process-step {
    position: relative;
    text-align: center;
    background: var(--bg);
    z-index: 1;
}
.t6-process-circle {
    display: grid;
    place-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--terra);
    margin: 0 auto;
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--terra);
}
.t6-process-step-title {
    margin-top: 24px;
    font-size: 24px;
    color: var(--forest-dark);
    font-weight: 500;
}
.t6-process-step-desc {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.t6-process-cta {
    margin-top: 64px;
    text-align: center;
}
.t6-btn-forest {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--forest);
    color: var(--cream);
    border: none;
    border-radius: var(--radius-full);
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}
.t6-btn-forest:hover { background: var(--forest-dark); }
.t6-btn-forest svg { width: 16px; height: 16px; }

/* ================================================================
   FAQ SECTION
   ================================================================ */
.t6-faq {
    background: var(--cream);
    padding: 80px 0;
}
@media (min-width: 1024px) {
    .t6-faq { padding: 112px 0; }
}
.t6-faq-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.t6-faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.t6-faq-item {
    border-bottom: 1px solid var(--border);
}
.t6-faq-item:first-child {
    border-top: 1px solid var(--border);
}
.t6-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--forest-dark);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}
.t6-faq-question:hover { color: var(--terra); }
.t6-faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--terra);
    transition: transform 0.3s;
}
.t6-faq-item.active .t6-faq-icon {
    transform: rotate(45deg);
}
.t6-faq-answer {
    display: none;
    padding: 0 0 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}
.t6-faq-item.active .t6-faq-answer {
    display: block;
}
.t6-faq-cta {
    margin-top: 48px;
    text-align: center;
}

/* ================================================================
   FOOTER (forest-dark)
   ================================================================ */
.t6-footer {
    background: var(--forest-dark);
    color: rgba(247, 243, 237, 0.8);
    padding: 64px 0 0;
}
.t6-footer-grid {
    display: grid;
    gap: 40px;
}
@media (min-width: 768px) {
    .t6-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

/* Footer Brand */
.t6-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    margin-bottom: 16px;
}
.t6-footer-brand-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--terra);
    color: var(--cream);
    flex-shrink: 0;
}
.t6-footer-brand-icon svg { width: 18px; height: 18px; }
.t6-footer-brand-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
}
.t6-footer-brand-desc {
    font-size: 14px;
    color: rgba(247, 243, 237, 0.6);
    max-width: 320px;
    line-height: 1.6;
}

/* Footer Columns */
.t6-footer-col-title {
    color: var(--cream);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.t6-footer-col p,
.t6-footer-col a {
    font-size: 14px;
    line-height: 1.8;
    display: block;
}
.t6-footer-col a {
    transition: color 0.2s;
}
.t6-footer-col a:hover { color: var(--terra); }

/* Footer Links Row */
.t6-footer-links {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(247, 243, 237, 0.10);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}
.t6-footer-links a {
    font-size: 13px;
    color: rgba(247, 243, 237, 0.6);
    transition: color 0.2s;
}
.t6-footer-links a:hover { color: var(--terra); }

/* Footer Copyright Bar */
.t6-copyright {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(247, 243, 237, 0.10);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    color: rgba(247, 243, 237, 0.5);
}
@media (min-width: 640px) {
    .t6-copyright {
        flex-direction: row;
        justify-content: space-between;
    }
}
.t6-fda-note {
    max-width: 640px;
    line-height: 1.5;
}

/* ================================================================
   UTILITY CLASSES
   ================================================================ */
.t6-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* SVG icon sizing for inline SVGs */
.t6-icon-sm { width: 16px; height: 16px; }
.t6-icon-md { width: 20px; height: 20px; }
.t6-icon-lg { width: 24px; height: 24px; }

/* ================================================================
   RESPONSIVE FINE-TUNING
   ================================================================ */
@media (max-width: 767px) {
    .t6-hero-grid { padding-top: 32px; padding-bottom: 48px; }
    .t6-hero-title { font-size: 40px; }
    .t6-hero-subtitle { font-size: 20px; }
    .t6-features-inner { padding: 20px; gap: 16px; }
    .t6-section-title { font-size: 32px; }
    .t6-step-card { padding: 24px; }
    .t6-product-showcase { min-height: 300px; padding: 24px; }
    .t6-product-showcase img { max-height: 300px; }
    .t6-total-price { font-size: 24px; }
    .t6-testimonial-overlay { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
    .t6-testimonial-quote { font-size: 15px; }
}

@media (max-width: 479px) {
    .t6-hero-title { font-size: 34px; }
    .t6-hero-actions { flex-direction: column; }
    .t6-btn-primary, .t6-btn-ghost {
        width: 100%;
        justify-content: center;
    }
    .t6-features-inner { grid-template-columns: 1fr; }
    .t6-toggle-grid { grid-template-columns: 1fr; }
}

/* === PRODUCT PAGE OVERRIDES === */
.prodBreadcrm { background: #f7f3ed; border-bottom: 1px solid #e2dbd0; }
.prodBreadcrm p, .prodBreadcrm a { color: #2d4a5e; font-family: 'Inter', sans-serif; }
.prodBreadcrm span { color: #5a9a8a; }
.section-2 { background: #f7f3ed; }
.s1-p1 { font-family: 'Fraunces', serif; color: #2d4a5e; font-weight: 400; }
.s1-p1 span { color: #5a9a8a; }
.sec-line-2 { display: none; }
.s1-p2 { font-family: 'Inter', sans-serif; color: #666; }
.s2-prd-box { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,0.05); border: 1px solid #e2dbd0; transition: all 0.3s ease; }
.s2-bx-arw { display: none; }
.s2-p1 { background: #2d4a5e; font-family: 'Fraunces', serif; font-size: 20px; line-height: 28px; padding: 14px 18px; letter-spacing: 0; font-weight: 400; }
.s2-p2 { background: #ede8df; color: #2d4a5e; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; padding: 10px 18px; }
.marg-1 .s2-p2, .s2-3rd-box .s2-p2 { background: #ede8df; }
.s2-prd-div { padding: 24px 16px; }
.s2-price-div { background: #faf8f4; border: none; border-top: 1px solid #e2dbd0; padding: 20px 18px; }
.s2-prc-arw { display: none; }
.s2-p3 { font-family: 'Fraunces', serif; color: #2d4a5e; font-size: 28px; line-height: 36px; margin-bottom: 16px; font-weight: 400; }
.s2-p3 span { font-size: 16px; color: #5a9a8a; font-family: 'Inter', sans-serif; }
.shop-btn { font-family: 'Inter', sans-serif; border: 2px solid #5a9a8a; color: #fff; background: #5a9a8a; border-radius: 8px; font-size: 15px; line-height: 44px; width: 200px; font-weight: 600; letter-spacing: 0.5px; transition: all 0.3s ease; }
.shop-btn:hover { background: #2d4a5e; color: #fff; border-color: #2d4a5e; }
.shop-btn i { color: inherit; }
.s2-prd-box:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(45,74,94,0.1); }
