/* ===================================
   VEDIC INSIGHT - LIGHT THEME
   Ancient Wisdom, Modern Design
   =================================== */

/* ===== CSS VARIABLES - LIGHT THEME ===== */
:root {
    /* Colors - Bright, Warm, Premium */
    --primary-deep: #4a2c7f;
    /* Deep purple */
    --primary-medium: #6b46a8;
    /* Medium purple */
    --primary-light: #8b5fd9;
    /* Light purple */
    --accent-gold: #d4af37;
    /* Sacred gold */
    --accent-copper: #b87333;
    /* Warm copper */

    --bg-light: #fdfbf7;
    /* Warm off-white background */
    --bg-medium: #f5f1eb;
    /* Light beige */
    --bg-card: #ffffff;
    /* Pure white cards */
    --bg-accent: #faf6f0;
    /* Subtle accent background */

    --text-primary: #1a1a2e;
    /* Dark text */
    --text-secondary: #4a4a5e;
    /* Medium text */
    --text-muted: #6b6b7b;
    /* Muted text */

    --border-light: #e8e4dd;
    /* Light borders */
    --border-medium: #d4cfc4;
    /* Medium borders */

    --gradient-cosmic: linear-gradient(135deg, #4a2c7f 0%, #6b46a8 50%, #8b5fd9 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b87333 100%);
    --gradient-subtle: linear-gradient(135deg, #fdfbf7 0%, #f5f1eb 100%);

    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(74, 44, 127, 0.08);
    --shadow-md: 0 4px 16px rgba(74, 44, 127, 0.12);
    --shadow-lg: 0 8px 32px rgba(74, 44, 127, 0.16);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.25);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gradient-cosmic);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: var(--gradient-cosmic);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: white;
    color: var(--primary-deep);
    border: 2px solid var(--accent-gold);
}

.btn-secondary-large:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: white;
    color: var(--primary-deep);
    border: 2px solid var(--primary-light);
}

.btn-outline:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-symbol {
    color: var(--accent-gold);
    font-size: 2rem;
}

.logo-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-image {
    height: 60px;
    width: 60px;
    object-fit: contain;
    transition: var(--transition-medium);
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Footer logo - larger and properly sized */
.footer-brand .logo-image {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    z-index: 10;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

/* Special styling for Book Consultation CTA in nav */
.nav-link.btn-primary {
    background: var(--gradient-cosmic);
    color: white !important;
    padding: 0.625rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(74, 44, 127, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateZ(0);
    /* Enforce clipping */
}

.nav-link.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
    /* Prevent capturing clicks */
}

.nav-link.btn-primary:hover::before {
    left: 100%;
}

.nav-link.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4), 0 0 25px rgba(212, 175, 55, 0.2);
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(139, 95, 217, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 44, 127, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #fdfbf7 0%, #f5f1eb 100%);
    z-index: -1;
}

.cosmic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(212, 175, 55, 0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(212, 175, 55, 0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(212, 175, 55, 0.15), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(212, 175, 55, 0.1), transparent);
    background-size: 200% 200%, 180% 180%, 150% 150%, 220% 220%;
    animation: cosmicFloat 20s ease-in-out infinite;
}

@keyframes cosmicFloat {

    0%,
    100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%;
    }

    50% {
        background-position: 100% 100%, 0% 0%, 100% 0%, 100% 0%;
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    color: var(--text-secondary);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.trust-indicators {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s forwards;
    opacity: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== VALUE SECTION ===== */
.value-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-medium);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
    background: white;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-title {
    margin-bottom: 1rem;
    color: var(--primary-deep);
    font-size: 1.4rem;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: auto;
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.7;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 3/4;
    background: var(--gradient-cosmic);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 2px solid var(--accent-gold);
}

.placeholder-icon {
    font-size: 4rem;
    filter: brightness(2);
}

.placeholder-text {
    color: white;
    font-style: italic;
}

.about-title {
    margin-bottom: var(--spacing-md);
    color: var(--primary-deep);
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.credentials {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.credentials-title {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-medium);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
    background: white;
}

.service-card.featured {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(135deg, rgba(139, 95, 217, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-gold);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 1rem;
}

.service-title {
    color: var(--primary-deep);
    margin-bottom: 0.5rem;
}

.service-duration {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-includes li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-cosmic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-gold);
    color: white;
}

.step-title {
    margin-bottom: 1rem;
    color: var(--primary-deep);
}

.step-description {
    color: var(--text-secondary);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-glow);
    background: white;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== RESOURCES SECTION ===== */
.resources-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-medium);
}

.resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.resource-category {
    display: inline-block;
    background: var(--gradient-cosmic);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.resource-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.resource-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.resource-link {
    color: var(--accent-gold);
    font-weight: 600;
    transition: var(--transition-fast);
}

.resource-link:hover {
    color: var(--accent-copper);
}

.resources-cta {
    text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-title {
    margin-bottom: var(--spacing-md);
    color: var(--primary-deep);
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.form-title {
    margin-bottom: 2rem;
    color: var(--primary-deep);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-deep);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-light);
}

.form-section-title:first-of-type {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-tagline {
    color: var(--text-muted);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-heading {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-list a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-disclaimer {
    margin-top: 0.5rem;
    font-style: italic;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .trust-indicators {
        gap: 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .value-grid,
    .services-grid,
    .process-steps,
    .testimonials-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== CHART STYLE TOGGLE ===== */
.style-toggle {
    display: inline-flex;
    background: white;
    padding: 0.35rem;
    border-radius: 2rem;
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.style-toggle-btn {
    border: none;
    background: transparent;
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-family: var(--font-body);
}

.style-toggle-btn:hover {
    color: var(--primary-deep);
    background: var(--bg-accent);
}

.style-toggle-btn.active {
    background: var(--primary-deep);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}