/* Learn More modal (Vitamins Bank) */
.learn-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10004;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.learn-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.learn-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 860px;
    background: #0f0f23;
    color: #fff;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    transform: scale(0.98) translateY(10px);
    transition: transform 0.25s ease;
    outline: none;
}
.learn-modal.is-visible .learn-modal__dialog {
    transform: scale(1) translateY(0);
}
.learn-modal__header {
    padding: 24px 24px 0;
}
.learn-modal__title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
    color: #ffffff;
}
.learn-modal__subtitle {
    color: #a3b2d1;
    margin-bottom: 0.25rem;
}
.learn-modal__bullets {
    color: #e5e7eb;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}
.learn-modal__body {
    padding: 0 24px 16px;
    max-height: min(70vh, 720px);
    overflow: auto;
}
.learn-modal__section {
    margin: 1rem 0 1.5rem;
}
.learn-modal__h3 {
    color: #67e8f9;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.learn-modal__list {
    color: #e5e7eb;
    padding-left: 1.25rem;
}
.learn-modal__footer {
    padding: 0 24px 24px;
    display: flex;
    justify-content: flex-end;
}
.learn-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}
.learn-modal__close:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
}
/* Order modal */
.order-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10005;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.order-modal.is-visible { opacity: 1; pointer-events: auto; }
.order-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 680px;
    background: #0f0f23;
    color: #fff;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    transform: scale(0.98) translateY(10px);
    transition: transform 0.25s ease;
    outline: none;
    padding: 20px 20px 16px;
}
.order-modal.is-visible .order-modal__dialog { transform: scale(1) translateY(0); }
.order-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}
.order-modal__close:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.order-modal__header { padding: 8px 4px 8px; }
.order-modal__title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
    color: #ffffff;
}
.order-modal__product { color: #a3b2d1; margin-bottom: 0.75rem; }
.order-modal__form { padding-top: 4px; }
.order-modal__actions { display: flex; justify-content: center; padding-top: 4px; }
.order-modal input, .order-modal textarea {
    background: rgba(255,255,255,0.02);
    color: #fff;
    border-color: rgba(255,255,255,0.16);
}
.order-modal input:focus, .order-modal textarea:focus {
    border-color: #67e8f9;
}
.order-submit {
    width: 100%;
    background: linear-gradient(90deg, #67e8f9, #a78bfa 45%, #ff66cc 90%);
}
@media (max-width: 768px) {
    .learn-modal__dialog {
        border-radius: 14px;
    }
    .learn-modal__header {
        padding: 20px 16px 0;
    }
    .learn-modal__body {
        padding: 0 16px 16px;
    }
    .learn-modal__footer {
        padding: 0 16px 16px;
    }
}
/*
Theme Name: VITLZ Theme
Description: Retro-futurist wellness supplements WordPress theme
Version: 1.0
Author: VITLZ Team
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

:root {
    /* Colors */
    --bg-dark: #0f0f23;
    --text-main: #e5e7eb;
    --text-muted: #a3b2d1;
    --brand-1: #667eea;
    --brand-2: #764ba2;
    --neon-cyan: #67e8f9;
    --neon-purple: #a78bfa;
    --neon-pink: #ff66cc;

    /* Gradients, radii, shadows */
    --gradient-brand: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-1: 0 6px 20px rgba(0,0,0,0.15);
    --shadow-2: 0 12px 40px rgba(0,0,0,0.35);

    /* Spacing scale */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-6: 3rem;
    --space-8: 4rem;

    /* Typography scale */
    --font-size-h1: clamp(2.2rem, 2.5vw + 1rem, 3.2rem);
    --font-size-h2: clamp(1.6rem, 1.3vw + 1rem, 2.2rem);
    --font-size-body: clamp(1rem, 0.4vw + 0.9rem, 1.125rem);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: rgba(15, 23, 42, 0.8);
    color: #e2e8f0;
    padding: 0.85rem 0;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 30;
    transition: box-shadow 0.3s ease;
}

.site-header.sticky-header {
    box-shadow: none;
    background: rgba(15, 23, 42, 0.8);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-branding {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.6rem 1rem;
    border-radius: 14px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo__img {
    display: block;
    width: 170px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.35));
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-cta .cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.header-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.lang-switcher {
    margin: 0;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(15,23,42,0.35);
    color: #f8fafc;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 0 12px rgba(255,255,255,0.15);
    min-width: 110px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    -webkit-text-stroke: 0.75px rgba(255,255,255,0.9);
    text-shadow:
        -1px -1px 0 rgba(255,255,255,0.75),
        1px -1px 0 rgba(255,255,255,0.75),
        -1px 1px 0 rgba(255,255,255,0.75),
        1px 1px 0 rgba(255,255,255,0.75);
}

.lang-switcher:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.15);
}

.site-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.mobile-nav-picker {
    display: none;
    width: 100%;
}

.mobile-nav-select {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(15,23,42,0.55);
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.mobile-nav-select option {
    color: #0f172a;
}

.site-navigation a {
    position: relative;
    color: rgba(148, 181, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
    -webkit-text-stroke: 0.75px rgba(255,255,255,0.9);
    text-shadow:
        -1px -1px 0 rgba(255,255,255,0.85),
        1px -1px 0 rgba(255,255,255,0.85),
        -1px 1px 0 rgba(255,255,255,0.85),
        1px 1px 0 rgba(255,255,255,0.85),
        0 3px 10px rgba(10,10,25,0.5);
}

.site-navigation a:hover {
    opacity: 0.85;
}

.site-header .header-cta .cta-button,
.section-header .section-cta {
    color: rgba(148, 181, 255, 0.97);
    -webkit-text-stroke: 0.75px rgba(255,255,255,0.92);
    text-shadow:
        -1px -1px 0 rgba(255,255,255,0.85),
        1px -1px 0 rgba(255,255,255,0.85),
        -1px 1px 0 rgba(255,255,255,0.85),
        1px 1px 0 rgba(255,255,255,0.85),
        0 4px 12px rgba(10,10,25,0.55);
}

@media (max-width: 768px) {
    .site-header .container {
        justify-content: center;
        gap: 1.25rem;
    }
    .site-branding {
        width: 100%;
        justify-content: space-between;
    }
    .site-logo__img {
        width: 150px;
    }
    .lang-switcher {
        flex: 0 0 auto;
        padding: 0.8rem 1.1rem;
        font-size: 1.05rem;
    }
    .site-navigation {
        display: none;
    }
    .mobile-nav-picker {
        display: block;
    }
}

.hero-section {
    background: #0f0f23;
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

#space-bg-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
    #space-bg-hero { display: none; }
}

.retro-grid {
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.hero-content h1 {
    font-size: var(--font-size-h1);
    font-weight: 900;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 0 12px rgba(240, 147, 251, 0.35);
}

@keyframes glowPulse {
    0% {
        text-shadow: 
            -2px -2px 0 #f093fb,
            2px -2px 0 #f093fb,
            -2px 2px 0 #f093fb,
            2px 2px 0 #f093fb,
            0 0 8px rgba(240, 147, 251, 0.8),
            0 0 16px rgba(240, 147, 251, 0.6),
            0 0 24px rgba(240, 147, 251, 0.4);
    }
    100% {
        text-shadow: 
            -2px -2px 0 #f093fb,
            2px -2px 0 #f093fb,
            -2px 2px 0 #f093fb,
            2px 2px 0 #f093fb,
            0 0 12px rgba(240, 147, 251, 1),
            0 0 20px rgba(240, 147, 251, 0.8),
            0 0 30px rgba(240, 147, 251, 0.6);
    }
}

.hero-content p {
    font-size: var(--font-size-body);
    margin-bottom: 2rem;
    color: #a0aec0;
    line-height: 1.6;
}

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

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 500px;
    justify-self: end;
}

.hero-images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    object-fit: cover;
    aspect-ratio: 1;
}

.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* removed duplicate hero h1/p definitions */

.cta-button {
    display: inline-block;
    background: var(--gradient-brand);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.buy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-button.outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cta-button.outline:hover {
    background: #667eea;
    color: white;
}

.content-section {
    padding: var(--space-8) 0;
}

.bg-muted {
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-header .section-cta {
    margin: 0.75rem auto 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.product-card {
    padding: var(--space-4);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;              /* ensure equal alignment inside */
    flex-direction: column;     /* allow pushing actions to bottom */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: auto;
    margin: 0 auto 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    object-fit: cover;
    aspect-ratio: 1;
    transition: all 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.product-actions { 
    margin-top: auto;           /* push Buy button to the bottom */
    padding-top: 1rem;
}
.product-actions .buy-button {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.dark-section {
    background: radial-gradient(1200px 600px at 20% -10%, rgba(102,126,234,0.15), transparent 60%),
                radial-gradient(1000px 600px at 100% 0%, rgba(240,147,251,0.12), transparent 60%),
                #0f0f23;
    color: #e5e7eb;
}
.dark-section .section-title {
    color: #ffffff;
}
.dark-section .section-subtitle {
    color: #a3b2d1;
}
.dark-section .product-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.dark-section .product-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.product-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #ffffff; /* fallback */
}
.neon-gradient {
    background: linear-gradient(90deg, #67e8f9, #a78bfa 45%, #ff66cc 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
    .product-title.neon-gradient {
        background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple) 45%, var(--neon-pink) 90%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
}
.product-tagline {
    color: #67e8f9;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.product-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.2rem;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.quality-card {
    padding: 2rem;
}

.quality-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.quality-card ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.quality-card li {
    color: #666;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

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

.universe-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

.universe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.universe-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.universe-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.story-link {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.story-link:hover {
    color: #764ba2;
}

.contact-text {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.dark-section .universe-card h3 {
    color: #ffffff;
}
.dark-section .universe-card p {
    color: #cbd5e1;
}
.dark-section .story-link {
    color: #67e8f9;
}
.dark-section .story-link:hover {
    color: #a78bfa;
}
.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
}
.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #a3b2d1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.social-link svg { width: 22px; height: 22px; }
.social-link:hover {
    transform: translateY(-2px);
    color: #ffffff;
    border-color: rgba(240,147,251,0.35);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    background: rgba(255,255,255,0.1);
}
.dark-section .contact-text {
    color: #cbd5e1;
}
.dark-section .contact-text a {
    color: #67e8f9;
}
.dark-section .contact-text a:hover {
    color: #a78bfa;
}

/* ----- About: EU QUALITY section ----- */
.mega-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin-bottom: 1rem;
}
.about-lead {
    max-width: 980px;
    margin: 0 auto;
    color: #cbd5e1;
    font-size: 1.125rem;
}
.about-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.badge-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.badge-card:hover {
    border-color: rgba(240,147,251,0.35);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    transform: translateY(-4px);
}
.badge-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    color: #a78bfa; /* fallback */
}
.badge-label {
    color: #e5e7eb;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.icon-blue { color: #60a5fa; }
.icon-pink { color: #f472b6; }
.icon-purple { color: #a78bfa; }
.icon-cyan { color: #22d3ee; }

@media (max-width: 900px) {
    .mega-title { font-size: 2.4rem; }
    .about-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .mega-title { font-size: 2rem; }
    .about-badges { grid-template-columns: 1fr; }
}

.contact-text a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #764ba2;
}

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

.card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.card p {
    color: #666;
    line-height: 1.6;
}

/* Vitamins Bank thumbnails */
.bank-thumb {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Nested accordions inside article content */
.entry-content details {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin: 0.75rem 0;
}
.entry-content summary {
    cursor: pointer;
    font-weight: 700;
    color: #e5e7eb;
    outline: none;
}
.entry-content summary::-webkit-details-marker { display: none; }
.entry-content summary::before {
    content: '▸';
    display: inline-block;
    margin-right: 0.5rem;
    transition: transform 0.2s ease;
}
.entry-content details[open] summary::before {
    transform: rotate(90deg);
}
.entry-content details > div {
    color: #cbd5e1;
    margin-top: 0.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-button {
    background: var(--gradient-brand);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
}

.site-footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #2d1b69 50%, #c44569 75%, #f093fb 100%);
    color: white;
    padding: var(--space-6) 0;
    border-top: 1px solid #4a5568;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(240, 147, 251, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 147, 251, 0.2) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    opacity: 0.6;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25px 25px, rgba(240, 147, 251, 0.4) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: center center;
    opacity: 0.8;
    z-index: 1;
    animation: gridMove 20s linear infinite reverse;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-navigation {
    display: flex;
    gap: 2rem;
}

.footer-navigation a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-navigation a:hover {
    color: #f093fb;
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(240, 147, 251, 0.5);
}

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

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-section a:hover {
    color: #f093fb;
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(240, 147, 251, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(240, 147, 251, 0.3);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        text-shadow: 
            -1px -1px 0 #f093fb,
            1px -1px 0 #f093fb,
            -1px 1px 0 #f093fb,
            1px 1px 0 #f093fb,
            0 0 6px rgba(240, 147, 251, 0.8),
            0 0 12px rgba(240, 147, 251, 0.6);
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 420px;
        margin: 0 auto;
        gap: 0.75rem;
    }
    
    .site-header {
        background: rgba(15, 23, 42, 0.8);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .site-header .container {
        position: relative;
        align-items: flex-start;
    }
    
    .site-navigation {
        flex: 1 1 100%;
        background: rgba(15, 23, 42, 0.75);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.35);
        padding: 0.75rem 1.25rem 1rem;
        box-shadow: 0 20px 40px rgba(10, 10, 30, 0.45);
        max-height: 65vh;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        margin-top: 0.5rem;
    }
    
    .site-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .site-navigation a {
        display: block;
        padding: 0.6rem 0;
        font-size: 0.98rem;
        line-height: 1.4;
    }
    
    .header-cta {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header .section-cta {
        width: 100%;
        margin-top: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .universe-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-navigation {
        justify-content: center;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Override header text colors to ensure readability */
.site-header .site-title,
.site-header .site-navigation a {
    color: #111;
}
.site-header.sticky-header .site-title,
.site-header.sticky-header .site-navigation a {
    color: #111;
}

/* Cookie modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 10003;
    display: flex;
    align-items: flex-end; /* bottom sheet */
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.cookie-modal.is-visible {
    opacity: 1;
}

.cookie-modal__dialog {
    width: 100%;
    max-width: 720px;
    background: #0f0f23;
    color: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    padding: 24px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
    border: 1px solid rgba(255,255,255,0.1);
    transform: translateY(110%);
    transition: transform 0.35s ease;
}

.cookie-modal.is-visible .cookie-modal__dialog {
    transform: translateY(0);
}

.cookie-modal__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cookie-modal__text {
    line-height: 1.6;
    color: #e5e7eb;
}

.cookie-modal__text a {
    color: #a5b4fc;
    text-decoration: underline;
}

.cookie-modal__actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.cookie-modal__btn {
    background: var(--gradient-brand);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-weight: 600;
    cursor: pointer;
}

.cookie-modal__btn--secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .cookie-modal__dialog {
        padding: 20px;
    }
}
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.page-content .entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.page-content .entry-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.page-content .entry-content p {
    margin-bottom: 1.5rem;
}

.page-content .entry-content h2,
.page-content .entry-content h3,
.page-content .entry-content h4 {
    margin: 2rem 0 1rem;
    color: #333;
}

.page-content .entry-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
}

.page-content .entry-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.page-content .entry-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

.page-content .entry-content ul,
.page-content .entry-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.page-content .entry-content li {
    margin-bottom: 0.5rem;
}

.page-content .entry-content blockquote {
    border-left: 4px solid #667eea;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

.page-content .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Accessibility: Skip link & focus-visible outline */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 0.5rem 0.75rem;
    background: #111827;
    color: #fff;
    border-radius: 8px;
    z-index: 9999;
}
.site-navigation a:focus-visible,
.cta-button:focus-visible,
.story-link:focus-visible {
    outline: 3px solid var(--neon-cyan);
    outline-offset: 2px;
    border-radius: 10px;
}
.site-navigation a[aria-current="page"] {
    color: var(--brand-2);
}

/* Motion: will-animate pattern and reduced motion */
.will-animate {
    opacity: 0;
    transform: translateY(30px);
}
.will-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    .will-animate,
    .will-animate.is-visible {
        opacity: 1;
        transform: none;
    }
    .site-footer::before,
    .site-footer::after {
        animation: none !important;
    }
}

/* Hover behavior on touch devices */
@media (hover: none) {
    .cta-button:hover,
    .product-card:hover,
    .product-image:hover,
    .hover-scale:hover,
    .universe-card:hover {
        transform: none;
        box-shadow: var(--shadow-1);
    }
}

.single-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.single-post-content .entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.2;
}

.single-post-content .entry-meta {
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e1e5e9;
    color: #666;
    font-size: 0.9rem;
}

.single-post-content .entry-meta span {
    margin-right: 1.5rem;
}

.single-post-content .entry-meta a {
    color: #667eea;
    text-decoration: none;
}

.single-post-content .entry-meta a:hover {
    text-decoration: underline;
}

.single-post-content .post-thumbnail {
    margin: 2rem 0;
    text-align: center;
}

.single-post-content .post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.single-post-content .entry-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.single-post-content .entry-content p {
    margin-bottom: 1.5rem;
}

.single-post-content .entry-content h2,
.single-post-content .entry-content h3,
.single-post-content .entry-content h4 {
    margin: 2rem 0 1rem;
    color: #333;
}

.single-post-content .entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e5e9;
}

.single-post-content .tags-links {
    margin-bottom: 1rem;
}

.single-post-content .tags-links a {
    display: inline-block;
    background: #f1f5f9;
    color: #64748b;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.single-post-content .tags-links a:hover {
    background: #667eea;
    color: white;
}

.post-navigation {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e1e5e9;
    border-bottom: 1px solid #e1e5e9;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.post-navigation a:hover {
    color: #764ba2;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-header .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.archive-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.post-card .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card .post-content {
    padding: 1.5rem;
}

.post-card .entry-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-card .entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.post-card .entry-title a:hover {
    color: #667eea;
}

.post-card .entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.post-card .entry-meta span {
    margin-right: 1rem;
}

.post-card .entry-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-card .read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.post-card .read-more:hover {
    color: #764ba2;
}

.post-card .cat-links {
    margin-top: 1rem;
}

.post-card .cat-links a {
    display: inline-block;
    background: #f1f5f9;
    color: #64748b;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.post-card .cat-links a:hover {
    background: #667eea;
    color: white;
}

.navigation.pagination {
    text-align: center;
    margin: 3rem 0;
}

.navigation.pagination .nav-links {
    display: inline-flex;
    gap: 0.5rem;
}

.navigation.pagination .page-numbers {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #e1e5e9;
    transition: all 0.3s;
    min-width: 45px;
}

.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers.current {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.navigation.pagination .prev,
.navigation.pagination .next {
    font-weight: 600;
}

.search-form-container {
    max-width: 500px;
    margin: 2rem auto;
}

.search-form {
    display: flex;
    gap: 0.5rem;
}

.search-form .search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.search-form .search-field:focus {
    outline: none;
    border-color: #667eea;
}

.search-form .search-submit {
    padding: 0.75rem 1.5rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form .search-submit:hover {
    background: #764ba2;
}

.search-results .search-result-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.search-result-item .entry-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.search-result-item .entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.search-result-item .entry-title a:hover {
    color: #667eea;
}

.search-result-item .entry-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.search-result-item .entry-meta span {
    margin-right: 1rem;
}

.search-result-item .entry-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.no-search-results {
    text-align: center;
    padding: 3rem 0;
}

.no-search-results h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.no-search-results p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.search-suggestions {
    margin-top: 2rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.search-suggestions h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
}

.search-suggestions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e1e5e9;
    color: #666;
}

.search-suggestions li:last-child {
    border-bottom: none;
}

.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e1e5e9;
}

.comments-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.comment-list .comment .comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-list .comment .comment-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.comment-list .comment .comment-author .fn {
    font-weight: 600;
    color: #333;
}

.comment-list .comment .comment-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.comment-list .comment .comment-content {
    color: #333;
    line-height: 1.6;
}

.comment-list .comment .reply {
    margin-top: 1rem;
}

.comment-list .comment .reply a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.comment-list .comment .reply a:hover {
    text-decoration: underline;
}

.comment-respond {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comment-reply-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.comment-form p {
    margin-bottom: 1.5rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.comment-form .submit {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.comment-form .submit:hover {
    background: #764ba2;
}

.error-404 {
    text-align: center;
    padding: 4rem 0;
}

.error-404 .page-title {
    font-size: 8rem;
    font-weight: 900;
    color: #667eea;
    margin-bottom: 1rem;
    line-height: 1;
}

.error-404 .error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.error-404 .error-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-404 .error-actions {
    margin-bottom: 3rem;
}

.error-404 .search-form-container {
    margin: 2rem auto;
}

.error-404 .error-suggestions {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.error-404 .error-suggestions h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-404 .error-suggestions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e1e5e9;
}

.error-404 .error-suggestions li:last-child {
    border-bottom: none;
}

.error-404 .error-suggestions a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.error-404 .error-suggestions a:hover {
    color: #764ba2;
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-navigation .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .post-navigation .nav-next {
        text-align: center;
    }
    
    .error-404 .page-title {
        font-size: 6rem;
    }
    
    .error-404 .error-title {
        font-size: 2rem;
    }
    
    .single-post-content .entry-title,
    .page-content .entry-title {
        font-size: 2rem;
    }
    
    .page-header .page-title {
        font-size: 2rem;
    }
}
