/* =============================================
   SPARSH — Light / Dark Mode Toggle
   All overrides scoped to: body.light-mode:not(.home-page)
   The dark theme (default) is NEVER modified here.
   ============================================= */

/* ---------- TOGGLE BUTTON ---------- */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
    cursor: pointer;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 8px;
    outline: none;
}

.theme-toggle:hover {
    background: rgba(97, 181, 100, 0.15);
    border-color: rgba(97, 181, 100, 0.45);
    color: #fff;
    transform: scale(1.08);
}

/* Show only the relevant icon */
.theme-toggle .fa-sun {
    display: none;
}

.theme-toggle .fa-moon {
    display: inline;
}

body.light-mode .theme-toggle .fa-sun {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: currentColor;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="6" fill="black"/><path d="M12 1v2.5M12 20.5V23M4.22 4.22l1.77 1.77m12.02 12.02l1.77 1.77M1 12h2.5M20.5 12H23M4.22 19.78l1.77-1.77m12.02-12.02l1.77-1.77" stroke="black" stroke-width="2.5" stroke-linecap="round"/></svg>') no-repeat center;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="6" fill="black"/><path d="M12 1v2.5M12 20.5V23M4.22 4.22l1.77 1.77m12.02 12.02l1.77 1.77M1 12h2.5M20.5 12H23M4.22 19.78l1.77-1.77m12.02-12.02l1.77-1.77" stroke="black" stroke-width="2.5" stroke-linecap="round"/></svg>') no-repeat center;
}

body.light-mode .theme-toggle .fa-sun::before {
    content: "" !important;
}

body.light-mode .theme-toggle .fa-moon {
    display: none;
}

/* In light mode the button itself flips colours */
body.light-mode:not(.home-page) .theme-toggle {
    border-color: rgba(26, 26, 46, 0.2);
    background: rgba(26, 26, 46, 0.06);
    color: rgba(26, 26, 46, 0.75);
}

body.light-mode:not(.home-page) .theme-toggle:hover {
    background: rgba(97, 181, 100, 0.12);
    border-color: rgba(97, 181, 100, 0.5);
    color: #2d6b30;
}

/* Mobile: keep it visible inside the open hamburger menu too */
@media (max-width: 850px) {
    .theme-toggle {
        margin-left: 12px;
    }
}

/* =============================================
   LIGHT MODE OVERRIDES
   ============================================= */
body.light-mode:not(.home-page) {
    --sky-deep: #eef4fc;
    --sky-mid: #dce4f0;
    --sky-light: #7a9abf;
    --cloud-white: #1a1a2e;
    --text-primary: #1a1a2e;
    --text-secondary: rgba(26, 26, 46, 0.75);
    --text-muted: rgba(26, 26, 46, 0.5);
    color: var(--text-primary);

    /* Aurora borealis daytime background */
    background:
        radial-gradient(ellipse 120% 60% at 15% 0%, rgba(120, 200, 255, 0.30) 0%, transparent 60%),
        radial-gradient(ellipse 100% 50% at 85% 5%, rgba(97, 181, 100, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(160, 210, 255, 0.22) 0%, transparent 50%),
        radial-gradient(ellipse 60% 30% at 30% 20%, rgba(97, 181, 100, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse 70% 25% at 70% 15%, rgba(100, 170, 240, 0.15) 0%, transparent 40%),
        linear-gradient(170deg, #d6eeff 0%, #e8f5e9 35%, #dff0fb 60%, #eef4fc 100%);

    background-attachment: fixed;
    min-height: 100vh;
}

/* Body & ambient */
body.light-mode:not(.home-page) .products-bg-ambient {
    opacity: 0.08;
}

/* ---- Navbar ---- */
body.light-mode:not(.home-page) .navbar {
    background: rgba(244, 246, 251, 0.82) !important;
    border-color: rgba(26, 26, 46, 0.1) !important;
    box-shadow: 0 8px 32px rgba(26, 26, 46, 0.08), inset 0 0 0 1px rgba(26, 26, 46, 0.05) !important;
}

body.light-mode:not(.home-page) .nav-links li a {
    color: rgba(26, 26, 46, 0.8) !important;
    text-shadow: none !important;
}

body.light-mode:not(.home-page) .nav-links li a:hover,
body.light-mode:not(.home-page) .nav-links li a.active {
    color: #2d6b30 !important;
    text-shadow: 0 0 12px rgba(97, 181, 100, 0.3) !important;
}

body.light-mode:not(.home-page) .nav-hamburger span {
    background-color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .navbar .social-links a {
    color: rgba(26, 26, 46, 0.55) !important;
}

body.light-mode:not(.home-page) .navbar .social-links a:hover {
    color: #1a1a2e !important;
}

/* Dropdown */
body.light-mode:not(.home-page) .dropdown-content {
    background: rgba(244, 246, 251, 0.97) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .dropdown-content a {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .dropdown-content a:hover {
    color: #2d6b30 !important;
}

/* Mobile open menu */
body.light-mode:not(.home-page) .navbar.is-active {
    background: rgba(244, 246, 251, 0.99) !important;
}

body.light-mode:not(.home-page) .navbar.is-active .nav-links a {
    color: rgba(26, 26, 46, 0.85) !important;
}

body.light-mode:not(.home-page) .navbar.is-active .nav-links a:hover {
    color: #1a1a2e !important;
    text-shadow: none !important;
}

/* ---- Page hero ---- */
body.light-mode:not(.home-page) .page-hero {
    background: transparent;
}

body.light-mode:not(.home-page) .page-hero h1 {
    background: linear-gradient(180deg, #1a1a2e 0%, #2c3e70 60%, #4a6fa5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: none;
}

body.light-mode:not(.home-page) .page-hero h1 .accent {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--accent-gold);
    -webkit-text-fill-color: var(--accent-gold);
}

body.light-mode:not(.home-page) .page-eyebrow {
    color: var(--accent-gold);
}

body.light-mode:not(.home-page) .page-lede {
    color: rgba(26, 26, 46, 0.7);
}

/* Page hero glow — recolour for light mode */
body.light-mode:not(.home-page) .page-hero-glow {
    background: radial-gradient(ellipse 80% 60% at 50% 0%,
            rgba(97, 181, 100, 0.12) 0%, transparent 70%) !important;
    filter: none !important;
}

/* ---- Generic headings ---- */
body.light-mode:not(.home-page) h1,
body.light-mode:not(.home-page) h2,
body.light-mode:not(.home-page) h3,
body.light-mode:not(.home-page) h4,
body.light-mode:not(.home-page) h5,
body.light-mode:not(.home-page) h6,
body.light-mode:not(.home-page) .about-heading,
body.light-mode:not(.home-page) .about-subheading,
body.light-mode:not(.home-page) .section-title,
body.light-mode:not(.home-page) .section-heading,
body.light-mode:not(.home-page) .product-name,
body.light-mode:not(.home-page) .pdp-title,
body.light-mode:not(.home-page) .hero-main-text {
    background: linear-gradient(180deg, #1a1a2e 0%, #2c3e70 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: none;
}

body.light-mode:not(.home-page) .about-label {
    color: var(--accent-gold);
}

body.light-mode:not(.home-page) .about-body {
    color: rgba(26, 26, 46, 0.72);
}

/* Inline accent spans */
body.light-mode:not(.home-page) h1 [style*="color"],
body.light-mode:not(.home-page) h2 [style*="color"],
body.light-mode:not(.home-page) h3 [style*="color"],
body.light-mode:not(.home-page) .about-heading [style*="color"],
body.light-mode:not(.home-page) .section-title [style*="color"] {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: currentColor;
}

/* ---- Reality lines (About) ---- */
body.light-mode:not(.home-page) .reality-line {
    color: rgba(26, 26, 46, 0.85) !important;
    border-color: rgba(26, 26, 46, 0.12) !important;
}

/* ---- Warehouse cards (About) ---- */
body.light-mode:not(.home-page) .warehouse-card {
    background: rgba(26, 26, 46, 0.04) !important;
    border-color: rgba(26, 26, 46, 0.1) !important;
}

body.light-mode:not(.home-page) .warehouse-card .caption {
    color: #ffffff !important;
}

/* ---- Leadership cards ---- */
body.light-mode:not(.home-page) .leader-role {
    color: rgba(26, 26, 46, 0.6) !important;
}

body.light-mode:not(.home-page) .leader-bio {
    color: rgba(26, 26, 46, 0.7) !important;
}

/* ---- Journey section (About) ---- */
body.light-mode:not(.home-page) .journey-section {
    background: rgba(26, 26, 46, 0.03);
}

body.light-mode:not(.home-page) .journey-content h3 {
    color: #1a1a2e;
}

body.light-mode:not(.home-page) .journey-content p {
    color: rgba(26, 26, 46, 0.7);
}

/* About page laser line */
body.light-mode:not(.home-page) .laser-line {
    background: linear-gradient(90deg, transparent, rgba(97, 181, 100, 0.5), transparent) !important;
}

/* ---- Products: sidebar / selects ---- */
body.light-mode:not(.home-page) .filters-sidebar {
    background: rgba(244, 246, 251, 0.92) !important;
    border-color: rgba(26, 26, 46, 0.1) !important;
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .filter-group label {
    color: var(--accent-gold) !important;
}

body.light-mode:not(.home-page) .select-trigger {
    background: rgba(26, 26, 46, 0.05) !important;
    border-color: rgba(26, 26, 46, 0.12) !important;
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .select-options {
    background: rgba(244, 246, 251, 0.97) !important;
    border-color: rgba(26, 26, 46, 0.1) !important;
}

body.light-mode:not(.home-page) .option {
    color: rgba(26, 26, 46, 0.8) !important;
}

body.light-mode:not(.home-page) .option:hover {
    background: rgba(26, 26, 46, 0.06) !important;
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .option.active {
    background: rgba(97, 181, 100, 0.1) !important;
    color: #2d6b30 !important;
}

body.light-mode:not(.home-page) .sidebar-header-mobile h3 {
    color: #1a1a2e;
}

body.light-mode:not(.home-page) .close-filters-btn {
    background: rgba(26, 26, 46, 0.08) !important;
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .mobile-filter-btn {
    background: rgba(26, 26, 46, 0.06) !important;
    border-color: rgba(26, 26, 46, 0.15) !important;
    color: #1a1a2e !important;
}

/* Product cards */
body.light-mode:not(.home-page) .product-card {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(26, 26, 46, 0.1) !important;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.07) !important;
}

body.light-mode:not(.home-page) .product-desc {
    color: rgba(26, 26, 46, 0.65) !important;
}

body.light-mode:not(.home-page) .product-specs {
    background: rgba(26, 26, 46, 0.04) !important;
}

body.light-mode:not(.home-page) .product-specs span {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .product-badge {
    background: rgba(26, 26, 46, 0.08) !important;
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .collection-toggle {
    background: transparent !important;
    border-color: rgba(26, 26, 46, 0.1) !important;
}

body.light-mode:not(.home-page) .toggle-btn {
    background: rgba(26, 26, 46, 0.04) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .toggle-btn.active {
    background: var(--accent-gold) !important;
    color: #fff !important;
}

body.light-mode:not(.home-page) .series-header {
    border-color: rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .series-header h2 {
    color: #1a1a2e !important;
    -webkit-text-fill-color: #1a1a2e !important;
    background: none !important;
    filter: none !important;
}

/* Product card: image container background */
body.light-mode:not(.home-page) .product-image-container {
    background: radial-gradient(circle at center, rgba(26, 26, 46, 0.04) 0%, transparent 70%) !important;
}

/* Product card: hover state */
body.light-mode:not(.home-page) .product-card:hover {
    background: rgba(255, 255, 255, 0.97) !important;
    border-color: rgba(97, 181, 100, 0.4) !important;
    box-shadow: 0 24px 60px rgba(26, 26, 46, 0.12), inset 0 0 30px rgba(97, 181, 100, 0.04) !important;
}

/* Product card: product details area */
body.light-mode:not(.home-page) .product-details {
    background: transparent !important;
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .product-name {
    color: #1a1a2e !important;
    -webkit-text-fill-color: #1a1a2e !important;
    background: none !important;
    filter: none !important;
}

body.light-mode:not(.home-page) .product-tags span {
    background: rgba(97, 181, 100, 0.08) !important;
    border: 1px solid rgba(97, 181, 100, 0.2) !important;
    color: #2d6b30 !important;
}

body.light-mode:not(.home-page) .no-results {
    color: rgba(26, 26, 46, 0.6) !important;
}

/* ---- Blog cards ---- */
body.light-mode:not(.home-page) .blog-card,
body.light-mode:not(.home-page) .blog-grid .blog-card.featured {
    background: rgba(255, 255, 255, 0.88) !important;
    border-color: rgba(26, 26, 46, 0.09) !important;
    box-shadow: 0 4px 24px rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .blog-card:hover {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(97, 181, 100, 0.3) !important;
    box-shadow: 0 16px 50px rgba(26, 26, 46, 0.12) !important;
}

body.light-mode:not(.home-page) .blog-card h3,
body.light-mode:not(.home-page) .blog-grid .blog-card.featured h3 {
    color: #1a1a2e !important;
    -webkit-text-fill-color: #1a1a2e !important;
    background: none !important;
    filter: none !important;
}

body.light-mode:not(.home-page) .blog-card p,
body.light-mode:not(.home-page) .blog-grid .blog-card.featured p {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .blog-card-meta {
    color: rgba(26, 26, 46, 0.5) !important;
    border-top-color: rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .blog-dropdown-btn {
    background: rgba(26, 26, 46, 0.06) !important;
}

body.light-mode:not(.home-page) .blog-grid .blog-card.featured::before {
    background: rgba(97, 181, 100, 0.1) !important;
    border-color: rgba(97, 181, 100, 0.25) !important;
}

body.light-mode:not(.home-page) .blog-card-cat::after {
    background: linear-gradient(90deg, rgba(97, 181, 100, 0.4), transparent) !important;
}

body.light-mode:not(.home-page) .blog-card:hover .read-arrow {
    color: #2d6b30 !important;
}

body.light-mode:not(.home-page) .faq-item {
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(26, 26, 46, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 15px;
    padding: 0 !important;
}

body.light-mode:not(.home-page) .faq-item:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(97, 181, 100, 0.3) !important;
    transform: translateY(-2px);
}

body.light-mode:not(.home-page) .faq-item.active {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(97, 181, 100, 0.4) !important;
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.05) !important;
}

body.light-mode:not(.home-page) .faq-item summary,
body.light-mode:not(.home-page) .faq-item .faq-question {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .faq-answer {
    padding: 0 !important;
    color: rgba(26, 26, 46, 0.72) !important;
}

body.light-mode:not(.home-page) .faq-item .faq-answer p {
    color: #1a1a2e !important;
    opacity: 1 !important;
}

/* ---- Support Chips (Hero) ---- */
body.light-mode:not(.home-page) .support-chip {
    background: #ffffff !important;
    border: 1px solid rgba(26, 26, 46, 0.12) !important;
    color: #64748b !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

body.light-mode:not(.home-page) .support-chip:hover {
    transform: translateY(-2px) !important;
    background: #ffffff !important;
    border-color: #61b564 !important;
    color: #61b564 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

/* Clear any specific child styling to keep them uniform as requested */
body.light-mode:not(.home-page) .support-chip:nth-child(n) {
    background: #ffffff !important;
    color: #64748b !important;
    border-color: rgba(26, 26, 46, 0.12) !important;
}

body.light-mode:not(.home-page) .support-chip:nth-child(n):hover {
    color: #61b564 !important;
    border-color: #61b564 !important;
}

/* ---- FAQ Page Specific (faqs.html) ---- */
body.light-mode:not(.home-page).faq-page {}

body.light-mode:not(.home-page).faq-page .search-bar-wrapper {
    background: #ffffff !important;
    border-color: rgba(26, 26, 46, 0.1) !important;
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.05) !important;
}

body.light-mode:not(.home-page).faq-page .search-bar-wrapper input {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page).faq-page .search-bar-wrapper input::placeholder {
    color: rgba(26, 26, 46, 0.4) !important;
}

body.light-mode:not(.home-page).faq-page .nav-tab {
    background: #ffffff !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
    color: rgba(26, 26, 46, 0.6) !important;
}

body.light-mode:not(.home-page).faq-page .nav-tab:hover {
    border-color: var(--accent-gold) !important;
    color: var(--accent-gold) !important;
}

body.light-mode:not(.home-page).faq-page .nav-tab.active {
    background: var(--accent-gold) !important;
    color: #ffffff !important;
    border-color: var(--accent-gold) !important;
}

body.light-mode:not(.home-page).faq-page .accordion-item {
    background: #ffffff !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page).faq-page .accordion-header {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page).faq-page .accordion-content p {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page).faq-page .accordion-item.active {
    background: #ffffff !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.04) !important;
}

body.light-mode:not(.home-page).faq-page .category-title {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page).faq-page .suggestion-card {
    background: #ffffff !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page).faq-page .suggestion-card h3 {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page).faq-page .suggestion-card p {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page).faq-page .cta-subtext {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page).faq-page .btn-secondary {
    border-color: rgba(26, 26, 46, 0.2) !important;
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page).faq-page .btn-secondary:hover {
    background: rgba(26, 26, 46, 0.05) !important;
    border-color: #1a1a2e !important;
}

/* ---- Legal / page body ---- */
body.light-mode:not(.home-page) .page-body {
    color: rgba(26, 26, 46, 0.75);
}

body.light-mode:not(.home-page) .page-body h2,
body.light-mode:not(.home-page) .page-body h3,
body.light-mode:not(.home-page) .page-body h4 {
    color: #1a1a2e !important;
    filter: none;
}

body.light-mode:not(.home-page) .page-body p,
body.light-mode:not(.home-page) .page-body ul,
body.light-mode:not(.home-page) .page-body ol {
    color: rgba(26, 26, 46, 0.75);
}

body.light-mode:not(.home-page) .page-body strong {
    color: #1a1a2e;
}

body.light-mode:not(.home-page) .page-body hr {
    background: linear-gradient(90deg, transparent, rgba(26, 26, 46, 0.15), transparent);
}

body.light-mode:not(.home-page) .legal-toc {
    background: rgba(26, 26, 46, 0.03);
    border-color: rgba(26, 26, 46, 0.1);
}

body.light-mode:not(.home-page) .legal-toc a {
    color: rgba(26, 26, 46, 0.7);
}

/* ---- Support page ---- */
body.light-mode:not(.home-page) .support-card-item {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .card-title {
    color: #1a1a2e !important;
    filter: none;
}

body.light-mode:not(.home-page) .card-desc {
    color: rgba(26, 26, 46, 0.68) !important;
}

body.light-mode:not(.home-page) .contact-info-card {
    background: transparent !important;
    border-color: transparent !important;
}

body.light-mode:not(.home-page) .info-title {
    color: #1a1a2e !important;
    filter: none;
}

body.light-mode:not(.home-page) .info-item p,
body.light-mode:not(.home-page) .info-item strong {
    color: rgba(26, 26, 46, 0.8) !important;
}

body.light-mode:not(.home-page) .info-item i {
    color: var(--accent-gold) !important;
}

body.light-mode:not(.home-page) .form-container {
    background: rgba(255, 255, 255, 0.82) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .form-container label {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .form-container input,
body.light-mode:not(.home-page) .form-container textarea,
body.light-mode:not(.home-page) .form-container select {
    background: rgba(26, 26, 46, 0.04) !important;
    border-color: rgba(26, 26, 46, 0.15) !important;
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .form-container input::placeholder,
body.light-mode:not(.home-page) .form-container textarea::placeholder {
    color: rgba(26, 26, 46, 0.4) !important;
}

body.light-mode:not(.home-page) .form-note {
    color: rgba(26, 26, 46, 0.5) !important;
}

body.light-mode:not(.home-page) .step-number {
    color: var(--accent-gold) !important;
}

body.light-mode:not(.home-page) .step-content h4 {
    color: #1a1a2e !important;
    filter: none;
}

body.light-mode:not(.home-page) .step-content p {
    color: rgba(26, 26, 46, 0.68) !important;
}

/* Support chips */
body.light-mode:not(.home-page) .support-chip {
    background: rgba(26, 26, 46, 0.06) !important;
    border-color: rgba(26, 26, 46, 0.12) !important;
    color: rgba(26, 26, 46, 0.75) !important;
}

/* ---- Dealers page ---- */
body.light-mode:not(.home-page) .why-card {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .why-card h3 {
    color: #1a1a2e !important;
    filter: none;
}

body.light-mode:not(.home-page) .why-card p {
    color: rgba(26, 26, 46, 0.68) !important;
}

body.light-mode:not(.home-page) .dealer-form-container {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .dealer-form label {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .dealer-form input,
body.light-mode:not(.home-page) .dealer-form textarea,
body.light-mode:not(.home-page) .dealer-form select,
body.light-mode:not(.home-page) .dealer-form .custom-select__trigger {
    background: rgba(26, 26, 46, 0.04) !important;
    border-color: rgba(26, 26, 46, 0.15) !important;
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .dealer-form .custom-select.open .custom-select__trigger {
    border-color: #61B564 !important;
    background: rgba(97, 181, 100, 0.05) !important;
}

body.light-mode:not(.home-page) .dealer-form .custom-select__trigger i {
    color: rgba(26, 26, 46, 0.6) !important;
}

body.light-mode:not(.home-page) .product-chip {
    background: rgba(26, 26, 46, 0.06) !important;
    border-color: rgba(26, 26, 46, 0.12) !important;
    color: rgba(26, 26, 46, 0.75) !important;
}

body.light-mode:not(.home-page) .step-num {
    color: var(--accent-gold) !important;
}

body.light-mode:not(.home-page) .step-item h4 {
    color: #1a1a2e !important;
    filter: none;
}

body.light-mode:not(.home-page) .step-item p {
    color: rgba(26, 26, 46, 0.68) !important;
}

/* ---- Business Hub page ---- */
body.light-mode:not(.home-page) .business-hub-card {
    background: rgba(255, 255, 255, 0.82) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
    box-shadow: 0 4px 18px rgba(26, 26, 46, 0.06) !important;
}

body.light-mode:not(.home-page) .business-hub-card:hover {
    background: #ffffff !important;
    border-color: rgba(97, 181, 100, 0.4) !important;
    box-shadow: 0 16px 44px rgba(26, 26, 46, 0.12) !important;
}

body.light-mode:not(.home-page) .business-hub-card h3 {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .business-hub-card .card-tagline {
    color: #2d6b30 !important;
}

body.light-mode:not(.home-page) .business-hub-card p {
    color: rgba(26, 26, 46, 0.72) !important;
}

body.light-mode:not(.home-page) .business-hub-card .card-body-row {
    border-top-color: rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .business-hub-card .card-bullets li {
    color: rgba(26, 26, 46, 0.78) !important;
}

body.light-mode:not(.home-page) .business-hub-card .card-bullets li i {
    color: #2d6b30 !important;
}

body.light-mode:not(.home-page) .business-hub-card .card-icon {
    background: rgba(97, 181, 100, 0.08) !important;
    border-color: rgba(97, 181, 100, 0.25) !important;
}

body.light-mode:not(.home-page) .business-hub-card:hover .card-icon {
    background: rgba(97, 181, 100, 0.14) !important;
    border-color: rgba(97, 181, 100, 0.45) !important;
}

body.light-mode:not(.home-page) .business-hub-card .cta-btn {
    background: #61B564 !important;
    color: #0c0f17 !important;
}

body.light-mode:not(.home-page) .business-hub-card .cta-btn:hover {
    background: #4da050 !important;
    color: #0c0f17 !important;
    box-shadow: 0 8px 20px rgba(97, 181, 100, 0.25) !important;
}

body.light-mode:not(.home-page) .business-faq-section .section-title {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .business-faq-item {
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .business-faq-item:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(97, 181, 100, 0.2) !important;
}

body.light-mode:not(.home-page) .business-faq-item.active {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(97, 181, 100, 0.3) !important;
}

body.light-mode:not(.home-page) .business-faq-question {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .business-faq-trigger:hover .business-faq-question {
    color: #2d6b30 !important;
}

body.light-mode:not(.home-page) .business-faq-icon {
    background: rgba(97, 181, 100, 0.08) !important;
    border-color: rgba(97, 181, 100, 0.25) !important;
}

body.light-mode:not(.home-page) .business-faq-icon i {
    color: #2d6b30 !important;
}

body.light-mode:not(.home-page) .business-faq-item.active .business-faq-icon {
    background: rgba(97, 181, 100, 0.14) !important;
    border-color: rgba(97, 181, 100, 0.45) !important;
}

body.light-mode:not(.home-page) .business-faq-content-inner {
    border-top-color: rgba(26, 26, 46, 0.06) !important;
}

body.light-mode:not(.home-page) .business-faq-content-inner p {
    color: rgba(26, 26, 46, 0.72) !important;
}

body.light-mode:not(.home-page) .business-faq-content-inner strong {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .business-cta-bar {
    background: rgba(97, 181, 100, 0.08) !important;
    border-color: rgba(97, 181, 100, 0.22) !important;
}

body.light-mode:not(.home-page) .business-cta-bar .cta-content h2 {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .business-cta-bar .cta-content p {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .business-cta-bar .btn-primary {
    background: #61B564 !important;
    color: #0c0f17 !important;
}

body.light-mode:not(.home-page) .business-cta-bar .btn-primary:hover {
    background: #4da050 !important;
    color: #0c0f17 !important;
    box-shadow: 0 8px 20px rgba(97, 181, 100, 0.25) !important;
}

body.light-mode:not(.home-page) .business-cta-bar .btn-secondary {
    border-color: rgba(26, 26, 46, 0.2) !important;
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .business-cta-bar .btn-secondary:hover {
    background: rgba(26, 26, 46, 0.05) !important;
    border-color: #1a1a2e !important;
    color: #1a1a2e !important;
}

/* ---- PDP page ---- */
body.light-mode:not(.home-page) .pdp-hero {
    background: transparent;
}

body.light-mode:not(.home-page) .pdp-tag {
    color: var(--accent-gold) !important;
}

/* =============================================
   FOAM SUPPLY LIGHT MODE
   ============================================= */

/* Trust Strip (Stats) */
body.light-mode:not(.home-page) .foam-trust-strip .trust-cell {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.03) !important;
}

body.light-mode:not(.home-page) .foam-trust-strip .trust-cell strong {
    color: #2d6b30 !important;
}

body.light-mode:not(.home-page) .foam-trust-strip .trust-cell span {
    color: rgba(26, 26, 46, 0.6) !important;
}

body.light-mode:not(.home-page) .foam-trust-strip a.trust-cell:not(.trust-cell--prominent):hover {
    background: #ffffff !important;
    border-color: rgba(26, 26, 46, 0.15) !important;
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .foam-trust-strip a.trust-cell.trust-cell--prominent {
    background: linear-gradient(160deg, rgba(97, 181, 100, 0.16) 0%, rgba(97, 181, 100, 0.06) 100%) !important;
    border-color: rgba(97, 181, 100, 0.5) !important;
    border-width: 1.5px !important;
    box-shadow: 0 4px 15px rgba(97, 181, 100, 0.08) !important;
}

body.light-mode:not(.home-page) .foam-trust-strip a.trust-cell.trust-cell--prominent:hover {
    background: linear-gradient(160deg, rgba(97, 181, 100, 0.26) 0%, rgba(97, 181, 100, 0.1) 100%) !important;
    border-color: rgba(97, 181, 100, 0.85) !important;
    box-shadow: 0 12px 30px rgba(97, 181, 100, 0.18) !important;
}

body.light-mode:not(.home-page) .foam-trust-strip a.trust-cell.trust-cell--prominent strong {
    color: #2d6b30 !important;
}

body.light-mode:not(.home-page) .foam-trust-strip a.trust-cell.trust-cell--prominent span {
    color: rgba(26, 26, 46, 0.85) !important;
}

body.light-mode:not(.home-page) .foam-trust-strip a.trust-cell.trust-cell--prominent span::after {
    color: #2d6b30 !important;
}

/* Vertical Cards */
body.light-mode:not(.home-page) .foam-vertical-card {
    background: rgba(255, 255, 255, 0.75) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.04) !important;
}

body.light-mode:not(.home-page) .foam-vertical-card:hover {
    background: #ffffff !important;
    border-color: rgba(97, 181, 100, 0.4) !important;
    box-shadow: 0 12px 30px rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .foam-vertical-card h3 {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .foam-vertical-card p {
    color: rgba(26, 26, 46, 0.7) !important;
}

/* Callout Box */
body.light-mode:not(.home-page) .foam-callout {
    background: rgba(97, 181, 100, 0.06) !important;
    border-color: rgba(97, 181, 100, 0.15) !important;
}

body.light-mode:not(.home-page) .foam-callout h3 {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .foam-callout p {
    color: rgba(26, 26, 46, 0.75) !important;
}

/* Feature Row Items */
body.light-mode:not(.home-page) .foam-feature-row .feature-item {
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
    color: rgba(26, 26, 46, 0.75) !important;
}

body.light-mode:not(.home-page) .foam-feature-row .feature-item strong {
    color: #2d6b30 !important;
}

/* RFQ Form */
body.light-mode:not(.home-page) .rfq-form {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
    box-shadow: none !important;
}

body.light-mode:not(.home-page) .rfq-form label {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .rfq-form input,
body.light-mode:not(.home-page) .rfq-form textarea,
body.light-mode:not(.home-page) .custom-select__trigger {
    background-color: rgba(26, 26, 46, 0.04) !important;
    border-color: rgba(26, 26, 46, 0.15) !important;
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .custom-select__trigger i {
    color: rgba(26, 26, 46, 0.6) !important;
}

body.light-mode:not(.home-page) .custom-select.open .custom-select__trigger {
    border-color: #61B564 !important;
    background-color: rgba(97, 181, 100, 0.05) !important;
}

body.light-mode:not(.home-page) .rfq-form input::placeholder,
body.light-mode:not(.home-page) .rfq-form textarea::placeholder {
    color: rgba(26, 26, 46, 0.4) !important;
}

body.light-mode:not(.home-page) .rfq-form select option {
    background: #ffffff !important;
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .rfq-form .form-note {
    color: rgba(26, 26, 46, 0.5) !important;
}

/* RFQ CTA Bar */
body.light-mode:not(.home-page) .foam-quote-cta {
    background: rgba(97, 181, 100, 0.08) !important;
    border-color: rgba(97, 181, 100, 0.2) !important;
}

body.light-mode:not(.home-page) .foam-quote-cta .cta-text h3 {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .foam-quote-cta .cta-text p {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .foam-quote-cta .cta-btn-secondary {
    border-color: rgba(26, 26, 46, 0.2) !important;
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .foam-quote-cta .cta-btn-primary:hover {
    background: #4da050 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(97, 181, 100, 0.3) !important;
}

body.light-mode:not(.home-page) .foam-quote-cta .cta-btn-secondary:hover {
    background: rgba(26, 26, 46, 0.05) !important;
    border-color: #1a1a2e !important;
    color: #1a1a2e !important;
}

/* FAQ Blocks on B2B page */
body.light-mode:not(.home-page) .foam-page .faq-block h3 {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .foam-page .faq-block p {
    color: rgba(26, 26, 46, 0.7) !important;
}

/* Spec Tables */
body.light-mode:not(.home-page) .foam-spec-table td {
    border-bottom-color: rgba(26, 26, 46, 0.08) !important;
    color: rgba(26, 26, 46, 0.8) !important;
}

body.light-mode:not(.home-page) .foam-spec-table tr:hover td {
    background: rgba(26, 26, 46, 0.02) !important;
}

/* =============================================
   LOCATIONS LIGHT MODE
   ============================================= */

/* Locations Hub Grid (All Cities) */
body.light-mode:not(.home-page) .location-card {
    background: rgba(255, 255, 255, 0.75) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.04) !important;
}

body.light-mode:not(.home-page) .location-card:hover {
    background: #ffffff !important;
    border-color: rgba(97, 181, 100, 0.45) !important;
    box-shadow: 0 12px 30px rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .location-card h3 {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .location-card p {
    color: rgba(26, 26, 46, 0.7) !important;
}

/* City Proximity Strip (Stats) */
body.light-mode:not(.home-page) .city-proximity-strip .px-cell {
    background: rgba(255, 255, 255, 0.7) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.03) !important;
}

body.light-mode:not(.home-page) .city-proximity-strip .px-cell strong {
    color: #2d6b30 !important;
}

body.light-mode:not(.home-page) .city-proximity-strip .px-cell span {
    color: rgba(26, 26, 46, 0.6) !important;
}

/* Recommended Products for City */
body.light-mode:not(.home-page) .city-recos .reco-item {
    background: rgba(255, 255, 255, 0.65) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.02) !important;
}

body.light-mode:not(.home-page) .city-recos .reco-item h4 {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .city-recos .reco-item p {
    color: rgba(26, 26, 46, 0.7) !important;
}

/* City Buy CTA Bar */
body.light-mode:not(.home-page) .city-buy-cta {
    background: rgba(97, 181, 100, 0.08) !important;
    border-color: rgba(97, 181, 100, 0.25) !important;
}

body.light-mode:not(.home-page) .city-buy-cta .ctab-text h3 {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .city-buy-cta .ctab-text p {
    color: rgba(26, 26, 46, 0.72) !important;
}

body.light-mode:not(.home-page) .city-buy-cta .ctab-btn-secondary {
    border-color: rgba(26, 26, 46, 0.2) !important;
    color: #1a1a2e !important;
}

/* Resource Cards */
body.light-mode:not(.home-page) .city-resources a.res-card {
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(26, 26, 46, 0.07) !important;
}

body.light-mode:not(.home-page) .city-resources a.res-card span {
    color: rgba(26, 26, 46, 0.75) !important;
}

body.light-mode:not(.home-page) .city-resources a.res-card:hover {
    border-color: rgba(97, 181, 100, 0.4) !important;
    background: #ffffff !important;
}

/* Custom Select Dropdown Light Mode */
body.light-mode:not(.home-page) .custom-options {
    background: #ffffff !important;
    border-color: rgba(26, 26, 46, 0.15) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

body.light-mode:not(.home-page) .custom-option {
    color: rgba(26, 26, 46, 0.75) !important;
}

body.light-mode:not(.home-page) .custom-option:hover {
    background: rgba(97, 181, 100, 0.1) !important;
    color: #2d6b30 !important;
}

body.light-mode:not(.home-page) .custom-option.selected {
    background: rgba(97, 181, 100, 0.05) !important;
    color: #2d6b30 !important;
}

/* Support Form Submit Button Light Mode */
body.light-mode:not(.home-page) .submit-btn {
    background: #61B564 !important;
    color: #ffffff !important;
    border-color: #4da050 !important;
    box-shadow: 0 4px 12px rgba(97, 181, 100, 0.2) !important;
}

body.light-mode:not(.home-page) .submit-btn:hover {
    background: #4da050 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(97, 181, 100, 0.3) !important;
}

body.light-mode:not(.home-page) .pdp-tagline {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .benefit-item {
    color: rgba(26, 26, 46, 0.75) !important;
}

body.light-mode:not(.home-page) .size-btn {
    background: rgba(26, 26, 46, 0.05) !important;
    border-color: rgba(26, 26, 46, 0.15) !important;
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .size-btn.active {
    background: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
    color: #fff !important;
}

body.light-mode:not(.home-page) .feature-tile {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .feature-tile h4 {
    color: #1a1a2e !important;
    filter: none;
}

body.light-mode:not(.home-page) .feature-tile p {
    color: rgba(26, 26, 46, 0.65) !important;
}

body.light-mode:not(.home-page) .layer-item {
    border-color: rgba(26, 26, 46, 0.1) !important;
}

body.light-mode:not(.home-page) .layer-info h4 {
    color: #1a1a2e !important;
    filter: none;
}

body.light-mode:not(.home-page) .layer-info p {
    color: rgba(26, 26, 46, 0.68) !important;
}

body.light-mode:not(.home-page) .section-desc {
    color: rgba(26, 26, 46, 0.68) !important;
}

body.light-mode:not(.home-page) .testimonial-card {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
}

/* ---- Mattress buying guide ---- */
body.light-mode:not(.home-page) .guide-section {
    border-color: rgba(26, 26, 46, 0.08) !important;
}

/* ---- Footer ---- */
body.light-mode:not(.home-page) .footer {
    background: linear-gradient(180deg,
            rgba(220, 228, 240, 0) 0%,
            rgba(220, 228, 240, 0.6) 30%,
            rgba(220, 228, 240, 0.9) 100%) !important;
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .footer::before {
    background: linear-gradient(90deg, transparent, rgba(26, 26, 46, 0.12), transparent) !important;
}

body.light-mode:not(.home-page) .footer-tagline,
body.light-mode:not(.home-page) .link-group p {
    color: rgba(26, 26, 46, 0.6) !important;
}

body.light-mode:not(.home-page) .link-group a {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .link-group a:hover {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .footer-socials a {
    border-color: rgba(26, 26, 46, 0.15) !important;
    color: rgba(26, 26, 46, 0.6) !important;
    background: rgba(26, 26, 46, 0.03) !important;
}

body.light-mode:not(.home-page) .footer-socials a:hover {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .footer-bottom {
    border-color: rgba(26, 26, 46, 0.1) !important;
    color: rgba(26, 26, 46, 0.5) !important;
}

body.light-mode:not(.home-page) .footer-legal a {
    color: rgba(26, 26, 46, 0.55) !important;
}

body.light-mode:not(.home-page) .footer-legal a:hover {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .footer-credit,
body.light-mode:not(.home-page) .footer-credits {
    color: rgba(26, 26, 46, 0.45) !important;
}

body.light-mode:not(.home-page) .footer-credits a,
body.light-mode:not(.home-page) .footer-credit a {
    color: rgba(26, 26, 46, 0.7) !important;
}

/* ---- Deco clouds (lighten them in light mode) ---- */
body.light-mode:not(.home-page) .deco-cloud {
    opacity: 0.4 !important;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.08)) !important;
}

/* ---- Scrollbar ---- */
body.light-mode:not(.home-page) ::-webkit-scrollbar-track {
    background: #eef0f5;
}

body.light-mode:not(.home-page) ::-webkit-scrollbar-thumb {
    background: rgba(26, 26, 46, 0.2);
}

/* Footer logo & Dealership logos — v1 already set by JS; add contrast */
body.light-mode:not(.home-page) .footer-logo-link img,
body.light-mode:not(.home-page) .nav-logo img,
body.light-mode:not(.home-page) .dealer-logo-large,
body.light-mode:not(.home-page) .final-cta-logo {
    /* ensure v1 logo (blue on transparent) shows clearly */
    filter: none !important;
    opacity: 1 !important;
}

/* --- Buying Guide Page Light Mode --- */
body.light-mode:not(.home-page).guide-page .guide-toc-sticky {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(26, 26, 46, 0.1);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
}

body.light-mode:not(.home-page).guide-page .guide-toc-sticky h4 {
    border-bottom-color: rgba(26, 26, 46, 0.08);
}

body.light-mode:not(.home-page).guide-page .guide-toc-sticky a {
    color: rgba(26, 26, 46, 0.65);
}

body.light-mode:not(.home-page).guide-page .guide-toc-sticky a:hover {
    color: var(--accent-gold);
    background: rgba(97, 181, 100, 0.05);
}

body.light-mode:not(.home-page).guide-page .guide-toc-sticky a.is-active {
    color: #1a1a2e;
    background: rgba(97, 181, 100, 0.1);
    border-left-color: var(--accent-gold);
}

body.light-mode:not(.home-page).guide-page .guide-toc-sticky a::before {
    color: rgba(26, 26, 46, 0.45);
}


body.light-mode:not(.home-page).guide-page .guide-chapter-meta {
    border-bottom-color: rgba(26, 26, 46, 0.08);
    color: rgba(26, 26, 46, 0.5);
}

body.light-mode:not(.home-page).guide-page .chapter-nav {
    border-top-color: rgba(26, 26, 46, 0.08);
}

body.light-mode:not(.home-page).guide-page .guide-toc-sticky li {
    border-bottom: 1px solid rgba(26, 26, 46, 0.08);
}

body.light-mode:not(.home-page).guide-page .guide-toc-sticky li:last-child {
    border-bottom: none;
}

body.light-mode:not(.home-page).guide-page .chapter-nav-link {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(26, 26, 46, 0.1) !important;
    color: #1a1a2e !important;
}


body.light-mode:not(.home-page) .breadcrumb {
    color: rgba(26, 26, 46, 0.5) !important;
}

body.light-mode:not(.home-page) .breadcrumb a {
    color: rgba(26, 26, 46, 0.75) !important;
}

body.light-mode:not(.home-page) .breadcrumb a:hover {
    color: var(--accent-gold) !important;
}

body.light-mode:not(.home-page) .breadcrumb span {
    color: rgba(26, 26, 46, 0.4) !important;
}


body.light-mode:not(.home-page).guide-page .chapter-nav-link .chapter-nav-title {
    color: #1a1a2e;
}

body.light-mode:not(.home-page).guide-page .guide-callout {
    background: rgba(97, 181, 100, 0.08);
    border-color: rgba(97, 181, 100, 0.2);
    color: #1a1a2e;
}

body.light-mode:not(.home-page).guide-page .guide-callout strong {
    color: #1a1a2e;
}

body.light-mode:not(.home-page).guide-page .tier-card {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(26, 26, 46, 0.1);
}

body.light-mode:not(.home-page).guide-page .tier-card h3 {
    color: #1a1a2e;
}

body.light-mode:not(.home-page).guide-page .tier-card ul li {
    color: rgba(26, 26, 46, 0.75);
}

body.light-mode:not(.home-page).guide-page .tier-card ul li strong {
    color: #1a1a2e;
}

body.light-mode:not(.home-page).guide-page .guide-back-top {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(97, 181, 100, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* Quote button transparent variant */
body.light-mode:not(.home-page) .quote-btn-transparent {
    background: transparent !important;
    border: 1px solid rgba(26, 26, 46, 0.2) !important;
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .quote-btn-transparent:hover {
    background: rgba(26, 26, 46, 0.06) !important;
    color: #1a1a2e !important;
}

/* Blog hero / page intro */
body.light-mode:not(.home-page) .blog-hero,
body.light-mode:not(.home-page) .blog-hero-content {
    background: transparent !important;
}

body.light-mode:not(.home-page) .blog-hero h1 {
    color: #1a1a2e !important;
    -webkit-text-fill-color: #1a1a2e !important;
    background: none !important;
    filter: none !important;
}

/* Filter chips / category tabs on blog page */
body.light-mode:not(.home-page) .filter-chip,
body.light-mode:not(.home-page) .cat-tab {
    background: rgba(26, 26, 46, 0.05) !important;
    border-color: rgba(26, 26, 46, 0.1) !important;
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .filter-chip.active,
body.light-mode:not(.home-page) .cat-tab.active {
    background: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
    color: #fff !important;
}

/* Shooting stars — hide in light mode */
body.light-mode:not(.home-page) .shooting-star {
    opacity: 0 !important;
}

body.light-mode:not(.home-page) .moon {
    opacity: 0.05 !important;
}

body.light-mode:not(.home-page) .stars-container {
    opacity: 0.04 !important;
}

/* Section backgrounds (products page, etc) */
body.light-mode:not(.home-page) .products-section,
body.light-mode:not(.home-page) .blog-section,
body.light-mode:not(.home-page) .support-section,
body.light-mode:not(.home-page) .dealer-section,
body.light-mode:not(.home-page) .faq-section {
    background: transparent !important;
}

/* Blog post body text */
body.light-mode:not(.home-page) .blog-post,
body.light-mode:not(.home-page) .blog-post-body,
body.light-mode:not(.home-page) .article-body {
    color: rgba(26, 26, 46, 0.8) !important;
}


/* ---- Product Detail Page Specific (product-detail.html) ---- */
body.light-mode:not(.home-page).pdp-page {
    /* Inherit global aurora background */
}

body.light-mode:not(.home-page) .pdp-brand {
    color: #61B564 !important;
}

body.light-mode:not(.home-page) .pdp-title {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .pdp-subtitle {
    color: rgba(26, 26, 46, 0.65) !important;
}

body.light-mode:not(.home-page) .pdp-features .feature {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .pdp-config label {
    color: rgba(26, 26, 46, 0.5) !important;
}

body.light-mode:not(.home-page) .size-btn {
    background: rgba(26, 26, 46, 0.05) !important;
    border-color: rgba(26, 26, 46, 0.1) !important;
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .size-btn.active {
    background: #61B564 !important;
    color: #fff !important;
    border-color: #61B564 !important;
}

body.light-mode:not(.home-page) .pdp-trust-badges span {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .section-title {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .section-desc {
    color: rgba(26, 26, 46, 0.65) !important;
}

body.light-mode:not(.home-page) .comp-card {
    background: #ffffff !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .comp-card h3 {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .comp-card li {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) .layer-num {
    color: #61B564 !important;
    border-color: rgba(97, 181, 100, 0.2) !important;
}

body.light-mode:not(.home-page) .layer-info h4 {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .layer-info p {
    color: rgba(26, 26, 46, 0.65) !important;
}

body.light-mode:not(.home-page) .comfort-experience {
    background: #f0f4f0 !important;
}

body.light-mode:not(.home-page) .reveal-faq {
    background: #ffffff !important;
    border-color: rgba(26, 26, 46, 0.08) !important;
}

/* Inline hardcoded white text inside sections */
body.light-mode:not(.home-page) [style*='color: rgba(255,255,255'] {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:not(.home-page) [style*='color: #fff'] {
    color: #1a1a2e !important;
}

/* ============================================================
   PRODUCT DETAIL PAGE (PDP) - LIGHT MODE
   ============================================================ */
body.light-mode:is(.pdp-page, .sku-page) {
    color: #1a1a2e !important;
}

body.light-mode:is(.pdp-page, .sku-page) .pdp-hero {
    background: transparent !important;
}

body.light-mode:is(.pdp-page, .sku-page) .navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(26, 26, 46, 0.1) !important;
}

body.light-mode:is(.pdp-page, .sku-page) .pdp-title {
    color: #1a1a2e !important;
}

body.light-mode:is(.pdp-page, .sku-page) .pdp-tagline,
body.light-mode:is(.pdp-page, .sku-page) .section-desc,
body.light-mode:is(.pdp-page, .sku-page) p {
    color: rgba(26, 26, 46, 0.7) !important;
}

body.light-mode:is(.pdp-page, .sku-page) .original-price {
    color: rgba(26, 26, 46, 0.3) !important;
}

/* Config Buttons (Sizes/Thickness) */
body.light-mode:is(.pdp-page, .sku-page) .size-btn {
    background: #f8fafc !important;
    border: 1px solid rgba(26, 26, 46, 0.12) !important;
    color: #1a1a2e !important;
}

body.light-mode:is(.pdp-page, .sku-page) .size-btn:hover {
    border-color: #61b564 !important;
    color: #61b564 !important;
    background: #fff !important;
}

body.light-mode:is(.pdp-page, .sku-page) .size-btn.active {
    background: #61b564 !important;
    color: #fff !important;
    border-color: #61b564 !important;
    box-shadow: 0 4px 12px rgba(97, 181, 100, 0.3) !important;
}

/* Trust Badges */
body.light-mode:is(.pdp-page, .sku-page) .pdp-trust-badges {
    color: rgba(26, 26, 46, 0.5) !important;
    opacity: 1 !important;
}

/* Comparison Cards */
body.light-mode:is(.pdp-page, .sku-page) .comp-card:first-child {
    background: #f8fafc !important;
    border: 1px solid rgba(26, 26, 46, 0.06) !important;
}

body.light-mode:is(.pdp-page, .sku-page) .comp-card:first-child h3 {
    color: #1a1a2e !important;
    opacity: 0.8 !important;
}

body.light-mode:is(.pdp-page, .sku-page) .comp-card:first-child li {
    color: rgba(26, 26, 46, 0.65) !important;
}

body.light-mode:is(.pdp-page, .sku-page) .comp-card:last-child {
    background: #ffffff !important;
    border-color: rgba(97, 181, 100, 0.2) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05) !important;
}

/* Layer Breakdown */
body.light-mode:is(.pdp-page, .sku-page) .layer-item {
    background: #f8fafc !important;
    border: 1px solid rgba(26, 26, 46, 0.06) !important;
}

body.light-mode:is(.pdp-page, .sku-page) .layer-item:hover {
    background: #ffffff !important;
    border-color: #61b564 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04) !important;
}

body.light-mode:is(.pdp-page, .sku-page) .layer-info h4 {
    color: #1a1a2e !important;
}

body.light-mode:is(.pdp-page, .sku-page) .layer-info p {
    color: rgba(26, 26, 46, 0.55) !important;
}

/* Feature Tiles */
body.light-mode:is(.pdp-page, .sku-page) .feature-tile {
    background: #ffffff !important;
    border: 1px solid rgba(26, 26, 46, 0.08) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

body.light-mode:is(.pdp-page, .sku-page) .feature-tile:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
}

/* Tech Items */
body.light-mode:is(.pdp-page, .sku-page) .tech-item {
    background: #f8fafc !important;
    border: 1px solid rgba(26, 26, 46, 0.06) !important;
}

body.light-mode:is(.pdp-page, .sku-page) .tech-item h4 {
    color: #1a1a2e !important;
}

body.light-mode:is(.pdp-page, .sku-page) .tech-item p {
    color: rgba(26, 26, 46, 0.6) !important;
}

/* Testimonials */
body.light-mode:is(.pdp-page, .sku-page) .testimonial-card {
    background: #ffffff !important;
    border: 1px solid rgba(26, 26, 46, 0.1) !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.07) !important;
}

body.light-mode:is(.pdp-page, .sku-page) .testimonial-text {
    color: #1a1a2e !important;
}

body.light-mode:is(.pdp-page, .sku-page) .testimonial-author span:last-child {
    color: rgba(26, 26, 46, 0.5) !important;
}

/* FAQ (PDP Accordion) */
body.light-mode:is(.pdp-page, .sku-page) .faq-item {
    background: rgba(255, 255, 255, 0) !important;
    border: 1px solid rgba(26, 26, 46, 0.08) !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
}

body.light-mode:is(.pdp-page, .sku-page) .faq-question,
body.light-mode.sku-page .faq-question {
    color: #1a1a2e !important;
    padding: 22px 24px !important;
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    transition: background 0.3s ease !important;
}

body.light-mode:is(.pdp-page, .sku-page) .faq-question:hover,
body.light-mode.sku-page .faq-question:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

body.light-mode.pdp-page .faq-answer {
    color: rgba(26, 26, 46, 0.65) !important;
    padding: 0 24px 22px !important;
}

body.light-mode:is(.pdp-page, .sku-page) .faq-answer p,
body.light-mode.sku-page .faq-answer p {
    margin: 0 !important;
    font-size: 0.95rem !important;
}

/* View Inside Button (PDP & SKU) */
body.light-mode:is(.pdp-page, .sku-page) .view-inside-btn,
body.light-mode.sku-page .view-inside-btn {
    background: #ffffff !important;
    border-color: rgba(26, 26, 46, 0.15) !important;
    color: #1a1a2e !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

body.light-mode:is(.pdp-page, .sku-page) .view-inside-btn:hover,
body.light-mode.sku-page .view-inside-btn:hover {
    background: #f8fafc !important;
    border-color: #61b564 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Layer Visualizer Modal (Light Mode Overrides) */
:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-modal-backdrop {
    background: rgba(255, 255, 255, 0.98) !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    opacity: 1 !important;
    /* Force visibility in light mode if requested */
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) {
    color: #1a1a2e !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-panel {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-title {
    color: #1a1a2e !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) :is(.lv-tagline, .lv-instruction) {
    color: rgba(26, 26, 46, 0.7) !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-close {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #1a1a2e !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-panel-heading {
    color: #166534 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-row {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-row-name {
    color: #1a1a2e !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) :is(.lv-row-material, .lv-row-thickness) {
    color: rgba(26, 26, 46, 0.6) !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-row-function {
    color: #374151 !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-row:hover,
:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-row.is-active {
    background: #f0fdf4 !important;
    border-color: #61b564 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-tooltip {
    background: #ffffff !important;
    color: #1a1a2e !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-tooltip-meta {
    color: rgba(26, 26, 46, 0.7) !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-panel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1) !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-expand-toggle {
    background: #61b564 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(97, 181, 100, 0.3) !important;
}

:is(body.light-mode .lv-modal, .lv-modal.light-mode) .lv-expand-toggle:hover {
    background: #52a455 !important;
    transform: translateY(-2px) !important;
}

/* ==========================================================================
   Site-wide FAQ containers
   Mirrors the Sleep Library "Commonly Asked Questions" card treatment across
   static FAQ blocks, support/product accordions, business accordions and the
   dedicated FAQ page.
   ========================================================================== */

body:not(.home-page) .faq-accordion,
body:not(.home-page) .accordion-group,
body:not(.home-page) .business-faq-accordion {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

body:not(.home-page) .faq-accordion .faq-item,
body:not(.home-page) .faq-section .faq-item,
body:not(.home-page) .support-section .faq-item,
body:not(.home-page) .accordion-group .accordion-item,
body:not(.home-page) .faq-accordion-section .accordion-item,
body:not(.home-page) .business-faq-item {
    margin: 0 0 16px 0 !important;
    padding: 0 28px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    box-shadow: none !important;
    overflow: hidden !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body:not(.home-page) .faq-accordion .faq-item:hover,
body:not(.home-page) .faq-section .faq-item:hover,
body:not(.home-page) .support-section .faq-item:hover,
body:not(.home-page) .accordion-group .accordion-item:hover,
body:not(.home-page) .faq-accordion-section .accordion-item:hover,
body:not(.home-page) .business-faq-item:hover {
    border-color: rgba(97, 181, 100, 0.35) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
}

body:not(.home-page) .faq-accordion .faq-item[open],
body:not(.home-page) .faq-section .faq-item[open],
body:not(.home-page) .support-section .faq-item.active,
body:not(.home-page) .accordion-group .accordion-item.active,
body:not(.home-page) .faq-accordion-section .accordion-item.active,
body:not(.home-page) .business-faq-item.active {
    border-color: rgba(97, 181, 100, 0.35) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2) !important;
}

body:not(.home-page) .faq-accordion .faq-item summary,
body:not(.home-page) .faq-section .faq-item summary,
body:not(.home-page) .support-section .faq-question,
body:not(.home-page) .accordion-group .accordion-header,
body:not(.home-page) .faq-accordion-section .accordion-header,
body:not(.home-page) .business-faq-trigger {
    padding: 24px 0 !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    line-height: 1.45 !important;
    background: transparent !important;
}

body:not(.home-page) .faq-accordion .faq-item summary:hover,
body:not(.home-page) .faq-section .faq-item summary:hover,
body:not(.home-page) .support-section .faq-question:hover,
body:not(.home-page) .accordion-group .accordion-header:hover,
body:not(.home-page) .faq-accordion-section .accordion-header:hover,
body:not(.home-page) .business-faq-trigger:hover .business-faq-question {
    color: var(--accent-gold, #61B564) !important;
    background: transparent !important;
}

body:not(.home-page) details.faq-item .faq-answer {
    padding: 0 0 24px 0 !important;
}

body:not(.home-page) .faq-item:not(details) .faq-answer {
    padding: 0 !important;
}

body:not(.home-page) .faq-item:not(details) .faq-answer p,
body:not(.home-page) .accordion-content p,
body:not(.home-page) .business-faq-content-inner,
body:not(.home-page) .business-faq-content-inner p {
    padding: 0 0 24px 0 !important;
}

body:not(.home-page) .faq-answer,
body:not(.home-page) .faq-answer p,
body:not(.home-page) .accordion-content p,
body:not(.home-page) .business-faq-content-inner p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
}

body:not(.home-page) .business-faq-content-inner {
    border-top: none !important;
}

body:not(.home-page) .business-faq-question {
    color: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
}

body:not(.home-page) .faq-block {
    margin: 0 0 16px 0 !important;
    padding: 24px 28px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    box-shadow: none !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body:not(.home-page) .faq-block:hover {
    border-color: rgba(97, 181, 100, 0.35) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
}

body:not(.home-page) .faq-block h3 {
    margin: 0 0 10px 0 !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
}

body:not(.home-page) .faq-block p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
}

body:not(.home-page) a.res-card,
body:not(.home-page) .res-card,
body:not(.home-page) .city-resources a.res-card,
body:not(.home-page) .city-resources .res-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 24px 28px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
    box-shadow: none !important;
    color: #ffffff !important;
    text-decoration: none !important;
    overflow: hidden !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body:not(.home-page) a.res-card:hover,
body:not(.home-page) .res-card:hover,
body:not(.home-page) .city-resources a.res-card:hover,
body:not(.home-page) .city-resources .res-card:hover {
    border-color: rgba(97, 181, 100, 0.35) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
}

body:not(.home-page) a.res-card strong,
body:not(.home-page) .res-card strong,
body:not(.home-page) .city-resources a.res-card strong,
body:not(.home-page) .city-resources .res-card strong {
    display: block !important;
    margin: 0 0 8px 0 !important;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

body:not(.home-page) a.res-card span,
body:not(.home-page) .res-card span,
body:not(.home-page) .city-resources a.res-card span,
body:not(.home-page) .city-resources .res-card span {
    display: block !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
}

body.light-mode:not(.home-page) .faq-accordion .faq-item,
body.light-mode:not(.home-page) .faq-section .faq-item,
body.light-mode:not(.home-page) .support-section .faq-item,
body.light-mode:not(.home-page) .accordion-group .accordion-item,
body.light-mode:not(.home-page) .faq-accordion-section .accordion-item,
body.light-mode:not(.home-page) .business-faq-item,
body.light-mode:not(.home-page) .faq-block,
body.light-mode:not(.home-page) a.res-card,
body.light-mode:not(.home-page) .res-card,
body.light-mode:not(.home-page) .city-resources a.res-card,
body.light-mode:not(.home-page) .city-resources .res-card {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(26, 26, 46, 0.09) !important;
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.04) !important;
}

body.light-mode:not(.home-page) .faq-accordion .faq-item:hover,
body.light-mode:not(.home-page) .faq-section .faq-item:hover,
body.light-mode:not(.home-page) .support-section .faq-item:hover,
body.light-mode:not(.home-page) .accordion-group .accordion-item:hover,
body.light-mode:not(.home-page) .faq-accordion-section .accordion-item:hover,
body.light-mode:not(.home-page) .business-faq-item:hover,
body.light-mode:not(.home-page) .faq-block:hover,
body.light-mode:not(.home-page) a.res-card:hover,
body.light-mode:not(.home-page) .res-card:hover,
body.light-mode:not(.home-page) .city-resources a.res-card:hover,
body.light-mode:not(.home-page) .city-resources .res-card:hover {
    background: #ffffff !important;
    border-color: rgba(97, 181, 100, 0.3) !important;
    box-shadow: 0 16px 40px rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .faq-accordion .faq-item[open],
body.light-mode:not(.home-page) .faq-section .faq-item[open],
body.light-mode:not(.home-page) .support-section .faq-item.active,
body.light-mode:not(.home-page) .accordion-group .accordion-item.active,
body.light-mode:not(.home-page) .faq-accordion-section .accordion-item.active,
body.light-mode:not(.home-page) .business-faq-item.active {
    background: #ffffff !important;
    border-color: rgba(97, 181, 100, 0.3) !important;
    box-shadow: 0 16px 40px rgba(26, 26, 46, 0.08) !important;
}

body.light-mode:not(.home-page) .faq-accordion .faq-item summary,
body.light-mode:not(.home-page) .faq-section .faq-item summary,
body.light-mode:not(.home-page) .support-section .faq-question,
body.light-mode:not(.home-page) .accordion-group .accordion-header,
body.light-mode:not(.home-page) .faq-accordion-section .accordion-header,
body.light-mode:not(.home-page) .business-faq-trigger,
body.light-mode:not(.home-page) .faq-block h3,
body.light-mode:not(.home-page) a.res-card strong,
body.light-mode:not(.home-page) .res-card strong,
body.light-mode:not(.home-page) .city-resources a.res-card strong,
body.light-mode:not(.home-page) .city-resources .res-card strong {
    color: #1a1a2e !important;
}

body.light-mode:not(.home-page) .faq-answer,
body.light-mode:not(.home-page) .faq-answer p,
body.light-mode:not(.home-page) .accordion-content p,
body.light-mode:not(.home-page) .business-faq-content-inner p,
body.light-mode:not(.home-page) .faq-block p,
body.light-mode:not(.home-page) a.res-card span,
body.light-mode:not(.home-page) .res-card span,
body.light-mode:not(.home-page) .city-resources a.res-card span,
body.light-mode:not(.home-page) .city-resources .res-card span {
    color: rgba(26, 26, 46, 0.72) !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    body:not(.home-page) .faq-accordion .faq-item,
    body:not(.home-page) .faq-section .faq-item,
    body:not(.home-page) .support-section .faq-item,
    body:not(.home-page) .accordion-group .accordion-item,
    body:not(.home-page) .faq-accordion-section .accordion-item,
    body:not(.home-page) .business-faq-item {
        padding: 0 20px !important;
    }

    body:not(.home-page) .faq-block,
    body:not(.home-page) a.res-card,
    body:not(.home-page) .res-card,
    body:not(.home-page) .city-resources a.res-card,
    body:not(.home-page) .city-resources .res-card {
        padding: 22px 20px !important;
    }
}
