/*
Theme Name: Medicalo.Co.Il News Theme
Theme URI: https://medicalo.co.il
Author: AI Theme Builder
Description: Modern fast light Hebrew news theme for medicalo.co.il
Version: 1.0.0
Text Domain: theme-medicalo-co-il
*/

:root {
    --font-primary: 'Rubik', sans-serif;
    --color-bg: #f8f9fa;
    --color-surface: #ffffff;
    --color-text: #212529;
    --color-muted: #6c757d;
    --color-primary: #1e3a8a;
    --color-primary-hover: #1d4ed8;
    --color-accent: #0284c7;
    --color-border: #e2e8f0;
    --color-link: #0284c7;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
    --radius: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--color-primary-hover);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.site-header {
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    background: #1e293b;
    color: #cbd5e1;
    font-size: 0.85rem;
    padding: 6px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.site-title a {
    color: var(--color-primary);
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

.main-navigation a {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-text);
    padding: 8px 0;
}

.main-navigation a:hover {
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--color-text);
    margin: 4px 0;
    border-radius: 2px;
}

/* Hero Section */
.news-hero-section {
    margin: 30px 0;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-border);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.hero-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.hero-card.main-hero {
    height: 420px;
}

.card-image-link {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    background: #e2e8f0;
}

.card-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
    color: #ffffff;
}

.card-category a {
    background: var(--color-accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}

.card-title a {
    color: #ffffff;
}

.card-meta {
    font-size: 0.8rem;
    opacity: 0.85;
}

/* Category Section Grid */
.news-category-section {
    margin-bottom: 40px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 10px;
}

.category-title a {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
}

.view-all-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
}

.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.post-card {
    background: var(--color-surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.post-card-thumb {
    height: 200px;
    display: block;
    overflow: hidden;
    background: #f1f5f9;
}

.post-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #64748b;
    font-weight: 700;
}

.post-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-card-title a {
    color: var(--color-text);
}

.post-card-excerpt {
    font-size: 0.92rem;
    color: var(--color-muted);
    margin-bottom: 15px;
    flex-grow: 1;
}

.post-card-meta {
    font-size: 0.8rem;
    color: var(--color-muted);
    border-top: 1px solid var(--color-border);
    padding-top: 10px;
}

/* Single Post Layout */
.single-post-layout {
    margin: 40px auto;
    background: var(--color-surface);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.entry-header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
}

.entry-breadcrumbs {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 10px;
}

.entry-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
    color: #0f172a;
}

.entry-meta {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.entry-featured-image {
    margin-bottom: 30px;
    border-radius: var(--radius);
    overflow: hidden;
}

.entry-featured-image img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

/* Table of Contents */
.post-toc {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-right: 4px solid var(--color-primary);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.toc-header button {
    background: #e2e8f0;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
}

.toc-list ul {
    list-style: none;
    padding-right: 15px;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-list a {
    color: var(--color-primary);
    font-weight: 600;
}

.toc-hidden {
    display: none;
}

/* CRITICAL: Anchor Links Bold & Visible inside Post Content */
.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2, .entry-content h3, .entry-content h4 {
    margin: 30px 0 15px 0;
    color: #0f172a;
    font-weight: 800;
}

.entry-content a {
    font-weight: 700 !important;
    color: #0284c7 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 3px !important;
    background-color: #f0f9ff;
    padding: 1px 4px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.entry-content a:hover {
    color: #0369a1 !important;
    background-color: #e0f2fe;
}

.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-weight: 700;
}

/* Footer Styling */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 50px 0 20px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-widget h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    border-bottom: 2px solid #334155;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: #cbd5e1;
    font-weight: 500;
}

.footer-fixed-links a, .footer-mandatory-links a {
    font-weight: 700 !important;
    color: #38bdf8 !important;
    text-decoration: underline !important;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
}

.footer-mandatory-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-card.main-hero {
        height: 300px;
    }
    .main-navigation .primary-menu-container {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--color-surface);
        box-shadow: var(--shadow-md);
        padding: 20px;
    }
    .main-navigation .primary-menu-container.is-active {
        display: block;
    }
    .main-navigation ul {
        flex-direction: column;
        gap: 12px;
    }
    .menu-toggle {
        display: block;
    }
    .single-post-layout {
        padding: 20px;
    }
    .entry-title {
        font-size: 1.6rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Footer Mobile Responsiveness Fix */
    .site-footer {
        overflow-x: hidden;
    }
    .footer-widgets {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        width: 100% !important;
    }
    .footer-widget {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
        width: 100% !important;
    }
    .footer-mandatory-links {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

}

/* =========================================================================

/* ==========================================================================
   SINGLE POST & FOOTER FULL RESPONSIVE FIX (DESKTOP & MOBILE)
   ========================================================================== */

/* --- SINGLE POST PAGE STYLING --- */
.single-post-wrapper, .single-post-layout, .single-article {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

.layout-main-sidebar {
    display: grid !important;
    grid-template-columns: 1fr 320px !important;
    gap: 30px !important;
    width: 100% !important;
    margin-top: 25px !important;
    box-sizing: border-box !important;
}

.main-articles-col, .single-article {
    width: 100% !important;
    min-width: 0 !important; /* Prevents overflow */
    box-sizing: border-box !important;
}

.sidebar-col, .widget-area {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.post-content-body, .entry-content {
    width: 100% !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #334155 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    box-sizing: border-box !important;
}

.post-content-body img, .entry-content img,
.hero-featured-img, .single-post-hero-image-wrap img, .entry-featured-image img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
}

/* --- FOOTER STYLING --- */
.main-footer, .site-footer {
    background-color: #0f172a !important;
    color: #94a3b8 !important;
    padding: 50px 0 25px 0 !important;
    margin-top: 60px !important;
    direction: rtl !important;
    text-align: right !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.main-footer .container, .site-footer .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.footer-grid, .footer-widgets {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
    gap: 30px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.footer-col, .footer-widget {
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}

.footer-col h3, .footer-widget h3 {
    color: #ffffff !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    border-bottom: 2px solid #0284c7 !important;
    padding-bottom: 8px !important;
    display: inline-block !important;
}

.footer-about {
    color: #94a3b8 !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    margin-top: 10px !important;
}

.footer-menu, .footer-links-list, .footer-fixed-links, .footer-mandatory-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-menu li, .footer-links-list li, .footer-fixed-links li, .footer-mandatory-links li {
    margin-bottom: 10px !important;
}

.footer-menu a, .footer-links-list a, .footer-fixed-links a, .footer-mandatory-links a {
    color: #cbd5e1 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.footer-menu a:hover, .footer-links-list a:hover, .footer-fixed-links a:hover {
    color: #38bdf8 !important;
}

.required-links-col a, .footer-links-list a, .footer-fixed-links a, .footer-mandatory-links a {
    font-weight: 700 !important;
    color: #38bdf8 !important;
    text-decoration: underline !important;
}

.footer-bottom {
    border-top: 1px solid #1e293b !important;
    margin-top: 35px !important;
    padding-top: 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.copy-text, .footer-copyright {
    color: #94a3b8 !important;
    font-size: 0.9rem !important;
}

.back-to-top-btn {
    background: #1e293b !important;
    color: #38bdf8 !important;
    border: 1px solid #334155 !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
}

.back-to-top-btn:hover {
    background: #0284c7 !important;
    color: #ffffff !important;
}

/* ==========================================================================
   MOBILE RESPONSIVE BREAKPOINTS (MAX-WIDTH: 900PX & 600PX)
   ========================================================================== */
@media screen and (max-width: 900px) {
    .layout-main-sidebar {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        width: 100% !important;
    }

    .main-articles-col, .sidebar-col, .widget-area {
        width: 100% !important;
        max-width: 100% !important;
    }

    .single-post-title, .entry-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    .author-meta-bar {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .share-buttons-bar {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .footer-grid, .footer-widgets {
        grid-template-columns: 1fr 1fr !important;
        gap: 25px !important;
    }
}

@media screen and (max-width: 600px) {
    .breadcrumbs, .entry-breadcrumbs {
        font-size: 0.82rem !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
    }

    .single-post-title, .entry-title {
        font-size: 1.4rem !important;
    }

    .hero-img-caption-badge {
        font-size: 0.75rem !important;
        padding: 4px 8px !important;
    }

    .post-content-body, .entry-content {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }

    .main-footer, .site-footer {
        padding: 35px 0 20px 0 !important;
    }

    .footer-grid, .footer-widgets {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
        width: 100% !important;
    }

    .footer-col, .footer-widget {
        width: 100% !important;
        text-align: right !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
    }

    .copy-text, .footer-copyright {
        text-align: center !important;
    }
}


/* ==========================================================================
   MEDICALO PROMO BANNERS STYLING
   ========================================================================== */

/* Universal Strip Banner (Runs on Homepage & All Single Posts) */
.universal-promo-strip {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    border-bottom: 3px solid #0284c7 !important;
    color: #ffffff !important;
    padding: 12px 0 !important;
    margin-bottom: 25px !important;
    direction: rtl !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.strip-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

.strip-text {
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #f1f5f9 !important;
}

.strip-icon {
    font-size: 1.3rem !important;
}

.strip-btn {
    background: #0284c7 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 3px 10px rgba(2, 132, 199, 0.4) !important;
    display: inline-block !important;
    white-space: nowrap !important;
}

.strip-btn:hover {
    background: #0369a1 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(2, 132, 199, 0.6) !important;
}

/* Homepage Main Feature Banner (Medication Shipping) */
.promo-banner-main {
    background: linear-gradient(135deg, #0284c7 0%, #0f766e 100%) !important;
    border-radius: 12px !important;
    padding: 30px 35px !important;
    margin: 25px 0 35px 0 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    direction: rtl !important;
    text-align: right !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.promo-banner-main::after {
    content: "🚚" !important;
    position: absolute !important;
    left: -20px !important;
    bottom: -30px !important;
    font-size: 140px !important;
    opacity: 0.12 !important;
    pointer-events: none !important;
}

.promo-banner-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 850px !important;
}

.promo-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(5px) !important;
    color: #ffffff !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    padding: 4px 14px !important;
    border-radius: 20px !important;
    display: inline-block !important;
    margin-bottom: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.promo-title {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
}

.promo-desc {
    font-size: 1.05rem !important;
    color: #e0f2fe !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.promo-btn {
    background: #ffffff !important;
    color: #0284c7 !important;
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.promo-btn:hover {
    background: #f0f9ff !important;
    color: #0369a1 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
}

/* Mobile Responsiveness for Banners */
@media (max-width: 768px) {
    .strip-inner {
        flex-direction: column !important;
        text-align: center !important;
    }
    .strip-text {
        justify-content: center !important;
        text-align: center !important;
        font-size: 0.95rem !important;
    }
    .strip-btn {
        width: 100% !important;
        text-align: center !important;
    }
    .promo-banner-main {
        padding: 22px 20px !important;
    }
    .promo-title {
        font-size: 1.3rem !important;
    }
    .promo-desc {
        font-size: 0.95rem !important;
    }
    .promo-btn {
        width: 100% !important;
        text-align: center !important;
        font-size: 0.95rem !important;
        padding: 10px 20px !important;
    }
}

/* Disclaimer Box Styling */
.footer-disclaimer-box {
    margin-top: 25px !important;
    padding: 14px 20px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid #334155 !important;
    border-radius: 6px !important;
    color: #94a3b8 !important;
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    text-align: right !important;
    direction: rtl !important;
}
.footer-disclaimer-box strong {
    color: #cbd5e1 !important;
}


/* ==========================================================================
   MOBILE NAVIGATION MENU FIX
   ========================================================================== */
.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid #0284c7;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    color: #0284c7;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: #0284c7;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block !important;
    }

    .main-navigation {
        position: relative !important;
    }

    .main-navigation .primary-menu-container,
    .main-navigation .menu-primary-container,
    .main-navigation div[class*="menu"] {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #ffffff;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        border-radius: 8px;
        padding: 15px 20px;
        z-index: 999;
        margin-top: 10px;
        width: 260px;
    }

    .main-navigation .primary-menu-container.is-active,
    .main-navigation .menu-primary-container.is-active,
    .main-navigation div[class*="menu"].is-active,
    .main-navigation.is-active div[class*="menu"] {
        display: block !important;
    }

    .main-navigation ul {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .main-navigation li {
        width: 100% !important;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 8px;
    }

    .main-navigation a {
        display: block !important;
        padding: 6px 0 !important;
        font-size: 1rem !important;
    }
}
