/* ===================================================================
   Template-11 Styles — VioletPulse Wellness
   Bold, Purple, Energetic with Wave Patterns
   =================================================================== */

/* ── CSS Variables ── */
:root {
    --t11-plum: #6A3070;
    --t11-plum-deep: #501E58;
    --t11-blush: #FBF0F5;
    --t11-accent: #E05A30;
    --t11-accent-dark: #C44A24;
    --t11-white: #FFFFFF;
    --t11-dark: #2A1A30;
    --t11-border: rgba(106, 48, 112, 0.12);
    --t11-muted: #6b6275;
    --t11-font: 'Poppins', sans-serif;
    --t11-radius: 1.5rem;
    --t11-radius-sm: 0.75rem;
    --t11-radius-pill: 9999px;
    --t11-shadow: 0 2px 12px rgba(42, 26, 48, 0.06);
    --t11-shadow-lg: 0 8px 32px rgba(42, 26, 48, 0.1);
    --t11-transition: all 0.3s ease;
}


/* ── Global Reset / Typography ── */
.t11-container {
    max-width: 78rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-family: var(--t11-font);
    color: var(--t11-dark);
}

.t11-hero,
.t11-boost,
.t11-products,
.t11-benefits,
.t11-cta-section,
.t11-footer {
    font-family: var(--t11-font);
}

/* ===================================================================
   TOP CONTACT STRIP
   =================================================================== */
.t11-top-strip {
    background: var(--t11-plum);
    color: var(--t11-white);
    font-family: var(--t11-font);
    font-size: 0.8125rem;
    line-height: 1;
}

.t11-top-strip .t11-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}

.t11-strip-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--t11-white);
    text-decoration: none;
    transition: var(--t11-transition);
}

.t11-strip-link:hover {
    color: var(--t11-blush);
}

.t11-strip-link i {
    font-size: 0.875rem;
}

.t11-strip-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}


/* ===================================================================
   HEADER / NAVIGATION
   =================================================================== */
.t11-header {
    background: var(--t11-white);
    border-bottom: 1px solid var(--t11-border);
    font-family: var(--t11-font);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--t11-transition);
}

.t11-header.t11-header-fixed {
    box-shadow: 0 2px 20px rgba(42, 26, 48, 0.08);
}

.t11-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
    gap: 1.5rem;
}

/* Logo */
.t11-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.t11-logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--t11-plum) 0%, var(--t11-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t11-white);
    flex-shrink: 0;
}

.t11-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.t11-logo-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--t11-plum);
    letter-spacing: -0.01em;
}

.t11-logo-sub {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: rgba(106, 48, 112, 0.6);
    margin-top: -1px;
}

/* Desktop Nav */
.t11-nav {
    display: none;
}

.t11-nav ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.t11-nav ul li a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(42, 26, 48, 0.75);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--t11-transition);
}

.t11-nav ul li a:hover {
    color: var(--t11-accent);
}

/* Header Actions */
.t11-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.t11-cart-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--t11-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t11-plum);
    text-decoration: none;
    transition: var(--t11-transition);
    font-size: 1rem;
}

.t11-cart-btn:hover {
    background: var(--t11-blush);
    border-color: var(--t11-plum);
}

.t11-header-cta {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border-radius: var(--t11-radius-pill);
    background: var(--t11-accent);
    color: var(--t11-white);
    font-family: var(--t11-font);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--t11-transition);
    box-shadow: 0 4px 16px rgba(224, 90, 48, 0.25);
}

.t11-header-cta:hover {
    background: var(--t11-accent-dark);
    color: var(--t11-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(224, 90, 48, 0.3);
}

/* Mobile Toggle */
.t11-mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.t11-mobile-toggle .bar1,
.t11-mobile-toggle .bar2,
.t11-mobile-toggle .bar3 {
    width: 100%;
    height: 2.5px;
    background: var(--t11-plum);
    border-radius: 2px;
    transition: var(--t11-transition);
}

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

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

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

/* Mobile Nav Panel */
.t11-mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--t11-white);
    border-top: 1px solid var(--t11-border);
    padding: 1rem 1.25rem 1.5rem;
}

.t11-mobile-nav.t11-nav-open {
    display: flex;
}

.t11-mobile-nav a {
    display: block;
    padding: 0.75rem 0;
    color: var(--t11-dark);
    font-family: var(--t11-font);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--t11-border);
    transition: var(--t11-transition);
}

.t11-mobile-nav a:last-child {
    border-bottom: none;
}

.t11-mobile-nav a:hover {
    color: var(--t11-accent);
    padding-left: 0.5rem;
}


/* ===================================================================
   HERO SECTION
   =================================================================== */
.t11-hero {
    background: var(--t11-blush);
    background-image:
        radial-gradient(circle at 20% 20%, rgba(106, 48, 112, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(224, 90, 48, 0.03) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
    font-family: var(--t11-font);
}

.t11-hero-waves {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    pointer-events: none;
}

.t11-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 3.5rem 0 4rem;
}

.t11-hero-content {
    position: relative;
    z-index: 2;
}

.t11-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(106, 48, 112, 0.7);
    margin-bottom: 1rem;
}

.t11-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--t11-dark);
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
}

.t11-highlight {
    position: relative;
    display: inline-block;
    color: var(--t11-white);
    padding: 0 0.4em;
    z-index: 1;
}

.t11-highlight::before {
    content: '';
    position: absolute;
    inset: -2px -4px;
    background: var(--t11-plum);
    border-radius: 4px;
    transform: skewY(-1deg);
    z-index: -1;
}

.t11-hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--t11-muted);
    max-width: 32rem;
    margin-bottom: 2rem;
}

.t11-hero-subtitle strong {
    color: var(--t11-dark);
}

.t11-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.t11-hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.t11-hero-image img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(42, 26, 48, 0.12));
}


/* ===================================================================
   BUTTONS (Global)
   =================================================================== */
.t11-btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9375rem 2.25rem;
    background: var(--t11-accent);
    color: var(--t11-white);
    font-family: var(--t11-font);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--t11-radius-pill);
    text-decoration: none;
    box-shadow: 0 8px 24px -8px rgba(224, 90, 48, 0.45);
    transition: var(--t11-transition);
    border: none;
    cursor: pointer;
}

.t11-btn-cta:hover {
    background: var(--t11-accent-dark);
    color: var(--t11-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(224, 90, 48, 0.5);
}

.t11-btn-cta i {
    font-size: 0.875rem;
}

.t11-btn-cta.t11-btn-sm {
    padding: 0.6875rem 1.75rem;
    font-size: 0.875rem;
    width: 100%;
}

.t11-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8125rem 1.75rem;
    border: 2px solid var(--t11-plum);
    color: var(--t11-plum);
    font-family: var(--t11-font);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--t11-radius-pill);
    text-decoration: none;
    transition: var(--t11-transition);
    background: transparent;
    cursor: pointer;
}

.t11-btn-outline:hover {
    background: var(--t11-plum);
    color: var(--t11-white);
}


/* ===================================================================
   SECTION TYPOGRAPHY
   =================================================================== */
.t11-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.t11-section-eyebrow {
    font-family: var(--t11-font);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--t11-plum);
    margin-bottom: 0.75rem;
}

.t11-section-title {
    font-family: var(--t11-font);
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--t11-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.t11-section-title span {
    color: var(--t11-plum);
}

.t11-section-desc {
    font-family: var(--t11-font);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--t11-muted);
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}


/* ===================================================================
   BOOST / NUTRITIONAL PILLARS SECTION
   =================================================================== */
.t11-boost {
    padding: 5rem 0;
    background: var(--t11-white);
    font-family: var(--t11-font);
}

.t11-pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.t11-pillar {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--t11-blush);
    border-radius: var(--t11-radius);
    transition: var(--t11-transition);
}

.t11-pillar:hover {
    box-shadow: var(--t11-shadow);
    transform: translateY(-2px);
}

.t11-pillar-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: var(--t11-plum);
    color: var(--t11-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.t11-pillar h3 {
    font-family: var(--t11-font);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--t11-dark);
    margin-bottom: 0.375rem;
}

.t11-pillar p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--t11-muted);
    margin: 0;
}


/* ===================================================================
   PRODUCTS SECTION
   =================================================================== */
.t11-products {
    padding: 5rem 0;
    background: var(--t11-blush);
    background-image:
        radial-gradient(circle at 20% 20%, rgba(106, 48, 112, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(224, 90, 48, 0.02) 0%, transparent 40%);
    font-family: var(--t11-font);
}

.t11-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.t11-product-card {
    background: var(--t11-white);
    border-radius: var(--t11-radius);
    padding: 1.5rem;
    box-shadow: var(--t11-shadow);
    border: 1px solid var(--t11-border);
    position: relative;
    overflow: hidden;
    transition: var(--t11-transition);
}

.t11-product-card:hover {
    box-shadow: var(--t11-shadow-lg);
    transform: translateY(-4px);
}

/* Product Tag Badge */
.t11-product-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.375rem 0.875rem;
    border-radius: var(--t11-radius-pill);
    color: var(--t11-white);
    z-index: 2;
}

.t11-tag-supplement {
    background: var(--t11-plum);
}

.t11-tag-ebook {
    background: var(--t11-accent);
}

/* Product Image */
.t11-product-img {
    background: var(--t11-blush);
    border-radius: var(--t11-radius-sm);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.t11-product-img img {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.t11-product-card:hover .t11-product-img img {
    transform: scale(1.08);
}

/* Product Info */
.t11-product-info {
    text-align: center;
}

.t11-product-info h3 {
    font-family: var(--t11-font);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--t11-plum);
    margin-bottom: 0.25rem;
}

.t11-product-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--t11-muted);
    margin-bottom: 0.875rem;
}

.t11-product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--t11-dark);
    margin-bottom: 1.25rem;
}

.t11-price-from {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--t11-muted);
}

.t11-center-btn {
    text-align: center;
    margin-top: 2.5rem;
}


/* ===================================================================
   BENEFITS SECTION
   =================================================================== */
.t11-benefits {
    padding: 5rem 0;
    background: var(--t11-white);
    font-family: var(--t11-font);
}

.t11-benefits-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.t11-benefits-copy .t11-section-title {
    text-align: left;
}

.t11-benefits-copy .t11-section-eyebrow {
    text-align: left;
}

.t11-benefits-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.t11-benefit-card {
    padding: 1.5rem;
    border-radius: var(--t11-radius);
    border: 1px solid var(--t11-border);
    background: var(--t11-white);
    transition: var(--t11-transition);
}

.t11-benefit-card:hover {
    box-shadow: var(--t11-shadow);
    transform: translateY(-2px);
}

.t11-benefit-blush {
    background: var(--t11-blush);
}

.t11-benefit-num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--t11-plum);
    color: var(--t11-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.t11-benefit-card h3 {
    font-family: var(--t11-font);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--t11-dark);
    margin-bottom: 0.5rem;
}

.t11-benefit-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--t11-muted);
    margin: 0;
}


/* ===================================================================
   CTA SECTION
   =================================================================== */
.t11-cta-section {
    padding: 4rem 0;
    font-family: var(--t11-font);
}

.t11-cta-box {
    background: var(--t11-plum);
    border-radius: var(--t11-radius);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--t11-white);
    position: relative;
    overflow: hidden;
}

.t11-cta-decor {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.t11-cta-box h2 {
    position: relative;
    font-family: var(--t11-font);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--t11-white);
}

.t11-cta-box h2 span {
    color: var(--t11-accent);
}

.t11-cta-box p {
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 34rem;
    margin: 0 auto 2rem;
}

.t11-cta-btns {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.t11-btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--t11-white);
    font-family: var(--t11-font);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--t11-radius-pill);
    text-decoration: none;
    transition: var(--t11-transition);
    background: transparent;
}

.t11-btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--t11-white);
}


/* ===================================================================
   FOOTER
   =================================================================== */
.t11-footer {
    background: var(--t11-dark);
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--t11-font);
    padding-top: 4rem;
}

.t11-footer .t11-container {
    color: rgba(255, 255, 255, 0.7);
}

.t11-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Brand */
.t11-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.t11-footer-logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--t11-white);
    color: var(--t11-plum);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.t11-footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.t11-footer-logo-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--t11-white);
}

.t11-footer-logo-sub {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -1px;
}

.t11-footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 22rem;
}

/* Footer Columns */
.t11-footer-col h4 {
    font-family: var(--t11-font);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--t11-white);
    margin-bottom: 1.25rem;
}

.t11-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.t11-footer-col ul li {
    margin-bottom: 0.625rem;
}

.t11-footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--t11-transition);
}

.t11-footer-col ul li a:hover {
    color: var(--t11-accent);
}

/* Footer Contact */
.t11-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem !important;
    font-size: 0.875rem;
}

.t11-footer-contact li i {
    color: var(--t11-accent);
    font-size: 0.9375rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    width: 1rem;
    text-align: center;
}

.t11-footer-contact li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--t11-transition);
}

.t11-footer-contact li a:hover {
    color: var(--t11-accent);
}

/* Footer Disclaimer */
.t11-footer-disclaimer {
    padding: 1.5rem 0;
    font-size: 0.75rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Footer Bottom */
.t11-footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: 1.25rem 0;
}

.t11-footer-bottom .t11-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.t11-footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.t11-footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

.t11-footer-bottom-links a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: var(--t11-transition);
}

.t11-footer-bottom-links a:hover {
    color: var(--t11-accent);
}


/* ===================================================================
   RESPONSIVE — TABLET (768px+)
   =================================================================== */
@media (min-width: 768px) {

    /* Nav */
    .t11-nav {
        display: block;
    }

    .t11-header-cta {
        display: inline-flex;
    }

    .t11-mobile-toggle {
        display: none;
    }

    /* Hero */
    .t11-hero-grid {
        grid-template-columns: 1fr 1fr;
        padding: 5rem 0 6rem;
    }

    .t11-hero-title {
        font-size: 3.25rem;
    }

    .t11-hero-image {
        order: 0;
    }

    .t11-hero-content {
        order: 0;
    }

    /* Pillars */
    .t11-pillars-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Products */
    .t11-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Benefits */
    .t11-benefits-layout {
        grid-template-columns: 1fr 1fr;
    }

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

    /* CTA */
    .t11-cta-box {
        padding: 4rem 3rem;
    }

    .t11-cta-box h2 {
        font-size: 2.75rem;
    }

    /* Footer */
    .t11-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    /* Section Titles */
    .t11-section-title {
        font-size: 2.75rem;
    }
}


/* ===================================================================
   RESPONSIVE — DESKTOP LARGE (1024px+)
   =================================================================== */
@media (min-width: 1024px) {

    .t11-hero-title {
        font-size: 3.75rem;
    }

    .t11-hero-grid {
        gap: 4rem;
    }

    .t11-pillars-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .t11-pillar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .t11-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .t11-cta-box {
        padding: 5rem 4rem;
        border-radius: 2rem;
    }

    .t11-cta-box h2 {
        font-size: 3.25rem;
    }

    .t11-section-title {
        font-size: 3rem;
    }
}


/* ===================================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   =================================================================== */
@media (max-width: 480px) {

    .t11-top-strip .t11-container {
        flex-direction: column;
        gap: 0.375rem;
        text-align: center;
    }

    .t11-strip-right {
        justify-content: center;
    }

    .t11-hero-title {
        font-size: 1.875rem;
    }

    .t11-hero-subtitle {
        font-size: 0.9375rem;
    }

    .t11-hero-btns {
        flex-direction: column;
    }

    .t11-hero-btns a {
        width: 100%;
        text-align: center;
    }

    .t11-section-title {
        font-size: 1.75rem;
    }

    .t11-pillar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .t11-benefit-card {
        padding: 1.25rem;
    }

    .t11-cta-box {
        padding: 2.5rem 1.25rem;
    }

    .t11-cta-box h2 {
        font-size: 1.5rem;
    }

    .t11-footer-bottom .t11-container {
        flex-direction: column;
        text-align: center;
    }

    .t11-footer-bottom-links {
        justify-content: center;
    }
}


/* ===================================================================
   PRODUCT PAGE OVERRIDES
   Override all old REFERENCE classes with plum/accent theme
   =================================================================== */

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

.prodBreadcrm p,
.prodBreadcrm a {
    color: var(--t11-dark);
    font-family: var(--t11-font);
}

.prodBreadcrm span {
    color: var(--t11-plum);
}

/* Section-2 (Product listing) */
.section-2 {
    background: var(--t11-blush);
}

.s1-p1 {
    font-family: var(--t11-font);
    color: var(--t11-dark);
    font-weight: 700;
}

.s1-p1 span {
    color: var(--t11-plum);
}

.sec-line-2 {
    display: none;
}

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

.s2-prd-box {
    background: var(--t11-white);
    border-radius: var(--t11-radius);
    overflow: hidden;
    box-shadow: var(--t11-shadow);
    border: 1px solid var(--t11-border);
    transition: var(--t11-transition);
}

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

.s2-p1 {
    background: var(--t11-plum);
    font-family: var(--t11-font);
    font-size: 18px;
    line-height: 26px;
    padding: 14px 18px;
    letter-spacing: 0;
    font-weight: 600;
    color: var(--t11-white);
}

.s2-p2 {
    background: var(--t11-blush);
    color: var(--t11-dark);
    font-family: var(--t11-font);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
}

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

.s2-prd-div {
    padding: 24px 16px;
    background: var(--t11-white);
}

.s2-price-div {
    background: var(--t11-blush);
    border: none;
    border-top: 1px solid var(--t11-border);
    padding: 20px 18px;
}

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

.s2-p3 {
    font-family: var(--t11-font);
    color: var(--t11-dark);
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 16px;
    font-weight: 700;
}

.s2-p3 span {
    font-size: 16px;
    color: var(--t11-muted);
}

.shop-btn {
    font-family: var(--t11-font);
    border: none;
    color: var(--t11-white);
    background: var(--t11-accent);
    border-radius: var(--t11-radius-pill);
    font-size: 15px;
    line-height: 46px;
    width: 200px;
    font-weight: 600;
    letter-spacing: 0;
    transition: var(--t11-transition);
    box-shadow: 0 4px 16px rgba(224, 90, 48, 0.25);
}

.shop-btn:hover {
    background: var(--t11-accent-dark);
    color: var(--t11-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 90, 48, 0.35);
}

.shop-btn i {
    color: inherit;
}

.s2-prd-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--t11-shadow-lg);
}

/* Section-1 (About/Features) */
.section-1 {
    background: var(--t11-white);
}

.s1-p3 {
    font-family: var(--t11-font);
    color: var(--t11-dark);
    font-weight: 600;
}

.s1-ic-1 {
    filter: none;
}

/* Section-3 (Steps) */
.section-3 {
    background: var(--t11-blush);
}

.s3-p1 {
    font-family: var(--t11-font);
    font-weight: 600;
}

.s3-txt {
    font-family: var(--t11-font);
}

.s3-li-txt-bx.s3-blue-bg { background: var(--t11-plum); }
.s3-li-txt-bx.s3-grn-bg { background: var(--t11-plum-deep); }
.s3-li-txt-bx.s3-purpl-bg { background: var(--t11-accent); }
.s3-li-txt-bx.s3-btlgrn-bg { background: var(--t11-dark); }

/* Section-4 (FAQ) */
.section-4 {
    background: var(--t11-white);
}

.accordion {
    font-family: var(--t11-font);
}

.acdn-heading {
    font-family: var(--t11-font);
    color: var(--t11-dark);
    font-weight: 600;
}

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

/* Banner overrides */
.banner {
    background: var(--t11-blush);
}

.bnr-p1 {
    font-family: var(--t11-font);
    color: var(--t11-dark);
    font-weight: 700;
}

.bnr-p1 span {
    color: var(--t11-plum);
}

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

.sec-line {
    display: none;
}

/* Promise section */
.bnr-btm-sec {
    background: var(--t11-plum);
}

.promise-hdng {
    font-family: var(--t11-font);
    color: var(--t11-white);
    font-weight: 600;
}

/* Old footer overrides */
footer {
    background: var(--t11-dark) !important;
    font-family: var(--t11-font);
}

footer .ftr-nav li {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--t11-font);
}

footer .ftr-nav li a {
    color: rgba(255, 255, 255, 0.6);
}

footer .ftr-nav li a:hover {
    color: var(--t11-accent);
}

.ftr-txt2 {
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--t11-font);
}

.other-links li a {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--t11-font);
}

.other-links li a:hover {
    color: var(--t11-accent);
}

.foo-btm {
    background: rgba(0, 0, 0, 0.15);
}

.foo-btm p {
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--t11-font);
}

/* Old header overrides */
.top-sec,
.top-bar {
    font-family: var(--t11-font);
}

.top-bar {
    background: var(--t11-white);
    border-bottom: 1px solid var(--t11-border);
}

.logo .logo-health {
    color: var(--t11-plum);
    font-family: var(--t11-font);
}

.logo .logo-life {
    color: var(--t11-dark);
    font-family: var(--t11-font);
}

.menu-bar li a {
    font-family: var(--t11-font);
    color: var(--t11-dark);
}

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

.hdrbtn {
    background: var(--t11-accent);
    color: var(--t11-white);
    font-family: var(--t11-font);
    border-radius: var(--t11-radius-pill);
}

.hdrbtn:hover {
    background: var(--t11-accent-dark);
    color: var(--t11-white);
}

/* Inner page overrides */
.inner-banner {
    background: var(--t11-blush);
}

.inner-banner h1,
.inner-banner h2 {
    font-family: var(--t11-font);
    color: var(--t11-dark);
}

.inner-content {
    font-family: var(--t11-font);
}

.inner-content h2,
.inner-content h3 {
    font-family: var(--t11-font);
    color: var(--t11-dark);
}

/* Contact page */
.contact-form input,
.contact-form textarea,
.contact-form select {
    font-family: var(--t11-font);
    border-radius: var(--t11-radius-sm);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--t11-plum);
    box-shadow: 0 0 0 3px rgba(106, 48, 112, 0.1);
}

/* Cart / Checkout page overrides */
.cart-top {
    background: var(--t11-blush);
}

.cart-heading {
    font-family: var(--t11-font);
    color: var(--t11-dark);
}

.step-hd.actv {
    background: var(--t11-plum);
    color: var(--t11-white);
}

.ordr-btn,
.place-order-btn {
    background: var(--t11-accent);
    color: var(--t11-white);
    font-family: var(--t11-font);
    border-radius: var(--t11-radius-pill);
    border: none;
}

.ordr-btn:hover,
.place-order-btn:hover {
    background: var(--t11-accent-dark);
}
