/* ── Axiom Wellness — Template-5 Modern Tech / Floating Badges ── */
/* ── Colors: indigo #4f46e5, cyan #06b6d4, lavender #8b5cf6, offwhite #f5f3ff, dark #1e1b4b ── */

:root {
    --indigo: #4f46e5;
    --indigo-dark: #3730a3;
    --indigo-deepest: #1e1b4b;
    --cyan: #06b6d4;
    --lavender: #8b5cf6;
    --offwhite: #f5f3ff;
    --dark: #1e1b4b;
    --background: #f5f3ff;
    --border-color: rgba(79, 70, 229, 0.15);
    --font-display: "Fraunces", Georgia, serif;
    --font-sans: "Inter", system-ui, sans-serif;
    --radius-2xl: 2rem;
}

/* ── GLOBAL RESETS FOR TEMPLATE ── */
body {
    font-family: var(--font-sans);
    background: var(--background);
    color: #1e1b4b;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* ── TOP STRIP ── */
.t5-top-strip {
    background: var(--indigo);
    color: #fff;
    font-size: 13px;
    line-height: 1;
}
.t5-top-strip .t5-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.t5-top-strip a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: opacity 0.2s;
}
.t5-top-strip a:hover {
    color: #fff;
    opacity: 1;
}
.t5-top-strip .t5-strip-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── STICKY HEADER (glass effect) ── */
.t5-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(245, 243, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
    transition: box-shadow 0.3s;
}
.t5-header.scrolled {
    box-shadow: 0 4px 24px rgba(79, 70, 229, 0.08);
}
.t5-header .t5-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.t5-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.t5-logo-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--indigo);
    color: #fff;
    font-size: 16px;
}
.t5-logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--dark);
}
.t5-logo-text span {
    color: var(--cyan);
    font-style: italic;
}
.t5-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.t5-nav a {
    font-size: 15px;
    color: rgba(30, 27, 75, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.t5-nav a:hover,
.t5-nav a.active {
    color: var(--dark);
    font-weight: 500;
}
.t5-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t5-cart-btn {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: var(--dark);
}
.t5-cart-btn:hover {
    background: rgba(139, 92, 246, 0.1);
}
.t5-shop-btn {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    background: var(--cyan);
    color: var(--dark);
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.t5-shop-btn:hover {
    opacity: 0.9;
    color: var(--dark);
}

/* Mobile menu toggle */
.t5-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    gap: 5px;
}
.t5-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}
.t5-mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px 24px;
    z-index: 39;
}
.t5-mobile-menu.active {
    display: block;
}
.t5-mobile-menu a {
    display: block;
    color: #fff;
    padding: 12px 0;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.t5-mobile-menu a:hover {
    color: var(--cyan);
}

/* ── CONTAINER ── */
.t5-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* ── T5 BUTTON STYLES ── */
.t5-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    line-height: 1;
}
.t5-btn-primary {
    background: var(--indigo);
    color: #fff;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.25);
}
.t5-btn-primary:hover {
    background: var(--indigo-dark);
    color: #fff;
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.35);
}
.t5-btn-secondary {
    background: var(--cyan);
    color: var(--dark);
}
.t5-btn-secondary:hover {
    opacity: 0.9;
    color: var(--dark);
}
.t5-btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
}
.t5-btn-outline:hover {
    background: var(--indigo);
    color: #fff;
    border-color: var(--indigo);
}
.t5-link-underline {
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(6, 182, 212, 0.6);
    color: var(--dark);
    transition: text-decoration-color 0.2s;
}
.t5-link-underline:hover {
    text-decoration-color: var(--cyan);
}
.t5-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--cyan);
    font-family: var(--font-sans);
    font-weight: 500;
}

/* ── HERO SECTION ── */
.t5-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 96px;
}
.t5-hero .t5-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.t5-hero-left {
    order: 1;
}
.t5-hero-right {
    order: 2;
    position: relative;
}
.t5-hero h1 {
    margin-top: 24px;
    font-size: 56px;
    line-height: 0.95;
    color: var(--dark);
}
.t5-hero h1 em {
    color: var(--cyan);
    font-style: normal;
    font-weight: 400;
}
.t5-hero-desc {
    margin-top: 24px;
    max-width: 480px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(30, 27, 75, 0.6);
}
.t5-hero-ctas {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Hero image with rounded corners + colored shadow */
.t5-hero-img-wrap {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 25px 60px rgba(79, 70, 229, 0.2);
}
.t5-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating badge: bottom-left overlapping image */
.t5-float-img {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 8px solid var(--background);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    z-index: 2;
}
.t5-float-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    display: block;
}

/* Floating pill badge: top-right */
.t5-float-pill {
    position: absolute;
    top: -24px;
    right: -24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 9999px;
    background: var(--background);
    border: 1px solid var(--border-color);
    padding: 8px 20px 8px 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 2;
}
.t5-float-pill-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--dark);
    font-size: 14px;
    flex-shrink: 0;
}
.t5-float-pill-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(30, 27, 75, 0.5);
    line-height: 1.2;
}
.t5-float-pill-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
}

/* Stats callout 3-col */
.t5-stats {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 420px;
}
.t5-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1;
    color: var(--dark);
}
.t5-stat-label {
    margin-top: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(30, 27, 75, 0.5);
}

/* ── PILLARS SECTION ── */
.t5-pillars {
    border-top: 1px solid rgba(79, 70, 229, 0.1);
    border-bottom: 1px solid rgba(79, 70, 229, 0.1);
    background: rgba(139, 92, 246, 0.08);
    padding: 80px 0;
}
.t5-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.t5-pillar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.t5-pillar-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--indigo);
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.t5-pillar h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--dark);
}
.t5-pillar p {
    font-size: 14px;
    color: rgba(30, 27, 75, 0.55);
    line-height: 1.6;
}

/* ── BOOST SECTION ── */
.t5-boost {
    padding: 96px 0;
}
.t5-boost .t5-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.t5-boost-left h2 {
    margin-top: 24px;
    font-size: 44px;
    line-height: 1.1;
    color: var(--dark);
}
.t5-boost-left p {
    margin-top: 24px;
    color: rgba(30, 27, 75, 0.6);
    max-width: 480px;
    line-height: 1.7;
}
.t5-check-list {
    margin-top: 32px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.t5-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--dark);
}
.t5-check-circle {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--indigo);
    color: #fff;
    font-size: 11px;
    flex-shrink: 0;
}
.t5-boost-right {
    position: relative;
}
.t5-boost-img {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 5/6;
}
.t5-boost-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating stat box (glass effect) */
.t5-float-stat {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(245, 243, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(79, 70, 229, 0.12);
    max-width: 240px;
}
.t5-float-stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--dark);
    line-height: 1;
}
.t5-float-stat-text {
    margin-top: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(30, 27, 75, 0.5);
    line-height: 1.5;
}

/* ── PRODUCT SHOWCASE (indigo bg) ── */
.t5-showcase {
    background: var(--indigo);
    color: #fff;
    padding: 96px 0;
}
.t5-showcase .t5-container {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
}
.t5-showcase-img {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 1/1;
}
.t5-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.t5-showcase-text .t5-eyebrow {
    color: rgba(255,255,255,0.6);
}
.t5-showcase-text h2 {
    margin-top: 24px;
    font-size: 44px;
    line-height: 1.1;
    color: #fff;
}
.t5-showcase-text h2 em {
    color: rgba(139, 92, 246, 0.7);
    font-style: normal;
}
.t5-showcase-text p {
    margin-top: 24px;
    max-width: 540px;
    opacity: 0.8;
    line-height: 1.7;
}

/* ── SHOP SECTION (3-col product grid) ── */
.t5-shop {
    padding: 96px 0;
}
.t5-shop-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 56px;
}
.t5-shop-header h2 {
    margin-top: 16px;
    font-size: 44px;
    line-height: 1.1;
    color: var(--dark);
}
.t5-shop-header p {
    max-width: 360px;
    font-size: 14px;
    color: rgba(30, 27, 75, 0.55);
}
.t5-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.t5-product-card {
    display: flex;
    flex-direction: column;
}
.t5-product-card-img {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(139, 92, 246, 0.06);
    aspect-ratio: 4/5;
}
.t5-product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.7s ease;
    padding: 20px;
}
.t5-product-card:hover .t5-product-card-img img {
    transform: scale(1.05);
}
.t5-product-info {
    margin-top: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.t5-product-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--dark);
    line-height: 1.2;
}
.t5-product-meta {
    margin-top: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(30, 27, 75, 0.5);
}
.t5-product-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    white-space: nowrap;
}
.t5-product-card .t5-btn-outline {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* ── QUALITY SECTION ── */
.t5-quality {
    padding: 0 0 96px;
}
.t5-quality .t5-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}
.t5-quality-img {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.t5-quality-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.t5-quality-content {
    border-radius: var(--radius-2xl);
    background: var(--cyan);
    color: var(--dark);
    padding: 40px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.t5-quality-content .t5-eyebrow {
    color: rgba(30, 27, 75, 0.6);
}
.t5-quality-content h2 {
    margin-top: 20px;
    font-size: 36px;
    line-height: 1.15;
}
.t5-quality-content p {
    margin-top: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

/* ── FAQ SECTION ── */
.t5-faq {
    padding: 96px 0;
    background: var(--offwhite);
}
.t5-faq-header {
    text-align: center;
    margin-bottom: 40px;
}
.t5-faq-header h2 {
    margin-top: 16px;
    font-size: 44px;
    line-height: 1.1;
    color: var(--dark);
}
.t5-faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

/* ── FOOTER ── */
.t5-footer {
    background: var(--indigo);
    color: #fff;
    margin-top: 0;
}
.t5-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0;
}
.t5-footer-brand {
    max-width: 360px;
}
.t5-footer-brand .t5-logo-icon {
    background: rgba(255,255,255,0.1);
}
.t5-footer-brand .t5-logo-text {
    color: #fff;
}
.t5-footer-brand .t5-logo-text span {
    color: var(--cyan);
}
.t5-footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}
.t5-footer-col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 16px;
}
.t5-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.t5-footer-col ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: opacity 0.2s;
}
.t5-footer-col ul a:hover {
    opacity: 1;
    color: #fff;
}
.t5-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
}
.t5-footer-bottom .t5-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
    opacity: 0.7;
}
.t5-footer-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.t5-footer-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.t5-footer-disclaimer {
    padding: 24px 0 0;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── SVG icon inline utility ── */
.t5-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.t5-icon-sm {
    width: 14px;
    height: 14px;
}
.t5-icon-lg {
    width: 20px;
    height: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .t5-hero .t5-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .t5-hero-left {
        order: 2;
    }
    .t5-hero-right {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    .t5-hero h1 {
        font-size: 42px;
    }
    .t5-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .t5-boost .t5-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .t5-showcase .t5-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .t5-quality .t5-container {
        grid-template-columns: 1fr;
    }
    .t5-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .t5-nav {
        display: none;
    }
    .t5-mobile-toggle {
        display: flex;
    }
    .t5-shop-btn-desktop {
        display: none;
    }
    .t5-hero h1 {
        font-size: 36px;
    }
    .t5-hero-desc {
        font-size: 15px;
    }
    .t5-hero-ctas {
        flex-wrap: wrap;
    }
    .t5-stats {
        max-width: 100%;
    }
    /* Hide floating badges on mobile */
    .t5-float-img,
    .t5-float-pill {
        display: none;
    }
    .t5-pillars-grid {
        grid-template-columns: 1fr;
    }
    .t5-product-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .t5-boost-left h2,
    .t5-showcase-text h2,
    .t5-shop-header h2,
    .t5-faq-header h2 {
        font-size: 32px;
    }
    .t5-quality-content {
        padding: 30px 24px;
    }
    .t5-quality-content h2 {
        font-size: 28px;
    }
    .t5-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .t5-footer-bottom .t5-container {
        flex-direction: column;
        text-align: center;
    }
    .t5-footer-meta {
        justify-content: center;
    }
    .t5-showcase-img {
        max-width: 350px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .t5-hero h1 {
        font-size: 30px;
    }
    .t5-stat-num {
        font-size: 26px;
    }
    .t5-top-strip .t5-container {
        justify-content: center;
        gap: 16px;
        font-size: 12px;
    }
    .t5-header .t5-container {
        height: 64px;
    }
    .t5-logo-text {
        font-size: 18px;
    }
}

/* ── Keep old cart/shop/checkout page styles compatible ── */
/* These override nothing; they just preserve backward compatibility with existing pages */
.shop-btn {
    background-color: var(--indigo) !important;
    border-color: var(--indigo) !important;
    color: #fff !important;
    border-radius: 5px;
}
.shop-btn:hover {
    background-color: var(--indigo-dark) !important;
    border-color: var(--indigo-dark) !important;
}
.shop-btn i {
    color: #fff !important;
}
a.hdrbtn {
    background: var(--indigo) !important;
    border-color: var(--indigo) !important;
}
a.hdrbtn:hover {
    background: var(--indigo-dark) !important;
}
.step1Btn,
.cart-btn,
.cartBtn,
.pay-btn {
    background: var(--indigo) !important;
    border-color: var(--indigo) !important;
    color: #fff !important;
}
.step1Btn:hover,
.cartBtn:hover,
.pay-btn:hover {
    background: var(--indigo-dark) !important;
}
.order-btn.picked,
.order-btn.picked .btn {
    background-color: var(--indigo) !important;
    border-color: var(--indigo) !important;
    color: #fff !important;
}
.order-btn:hover {
    border-color: var(--indigo) !important;
}
.step-hd.actv,
.step1-hd.actv,
.step2-hd.actv {
    background: var(--indigo) !important;
    color: #fff !important;
}
.price-bx .price,
.prd-price {
    color: var(--indigo-dark) !important;
}
.s2-prd-box {
    border-color: var(--indigo) !important;
    border-radius: 16px !important;
    overflow: hidden;
}
.s2-prd-box:hover {
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.18) !important;
}
.inner-bnr {
    background: var(--offwhite) !important;
}
.inner-bnr h2 {
    color: var(--indigo-dark) !important;
}
.accordion.accordion-open {
    color: var(--indigo) !important;
}

/* === PRODUCT PAGE OVERRIDES === */
.prodBreadcrm {
    background: #f5f3ff;
    border-bottom: 1px solid #e8e4f8;
}
.prodBreadcrm p,
.prodBreadcrm a {
    color: #1e1b4b;
    font-family: 'Inter', sans-serif;
}
.prodBreadcrm span {
    color: #4f46e5;
}
.section-2 {
    background: #f5f3ff;
}
.s1-p1 {
    font-family: 'Inter', sans-serif;
    color: #1e1b4b;
    font-weight: 700;
}
.s1-p1 span {
    color: #4f46e5;
}
.sec-line-2 {
    display: none;
}
.s1-p2 {
    font-family: 'Inter', sans-serif;
    color: #64748b;
}
.s2-prd-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(79,70,229,0.06);
    border: 1px solid #e8e4f8;
    transition: all 0.3s ease;
}
.s2-bx-arw {
    display: none;
}
.s2-p1 {
    background: linear-gradient(135deg, #4f46e5, #8b5cf6);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 26px;
    padding: 14px 18px;
    letter-spacing: 0;
    font-weight: 600;
}
.s2-p2 {
    background: #f5f3ff;
    color: #1e1b4b;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 18px;
}
.marg-1 .s2-p2,
.s2-3rd-box .s2-p2 {
    background: #f5f3ff;
}
.s2-prd-div {
    padding: 24px 16px;
}
.s2-price-div {
    background: #fafafe;
    border: none;
    border-top: 2px solid #e8e4f8;
    padding: 20px 18px;
}
.s2-prc-arw {
    display: none;
}
.s2-p3 {
    font-family: 'Inter', sans-serif;
    color: #1e1b4b;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}
.s2-p3 span {
    font-size: 16px;
    color: #8b5cf6;
}
.shop-btn {
    font-family: 'Inter', sans-serif;
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #8b5cf6);
    border-radius: 12px;
    font-size: 15px;
    line-height: 46px;
    width: 200px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79,70,229,0.25);
}
.shop-btn:hover {
    background: linear-gradient(135deg, #4338ca, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79,70,229,0.35);
    color: #fff;
}
.shop-btn i {
    color: inherit;
}
.s2-prd-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(79,70,229,0.12);
}
