:root {
    --color-saffron: #E31E24;
    --color-white: var(--color-bg-surface, #fff);
    --color-green: #138808;
    --color-navy: #1a237e;
    --color-text-main: #1a1a1b;
    --color-text-muted: #616161;
    --color-border: #eee;
    --color-bg-main: #fcfcfc;
    --color-bg-surface: #fff;
    --color-bg-light: #f8f9fa;
    --color-shadow: rgba(26, 35, 126, .08);
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 40px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1280px
}

.dark-theme,
[data-theme=dark] {
    --color-bg-main: #020617;
    --color-bg-surface: #0f172a;
    --color-bg-light: #1e293b;
    --color-text-main: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-border: #1e293b;
    --color-navy: #0f172a;
    --color-text-navy: #f8fafc;
    --color-white: #0f172a;
    --color-shadow: rgba(0, 0, 0, .6)
}

.dark-theme .header-top {
    background: #020617 !important;
    border-bottom: 1px solid hsla(0, 0%, 100%, .05)
}

.dark-theme .header-top a,
.dark-theme .header-top span {
    color: #cbd5e1 !important
}

.dark-theme .main-header {
    background: #0f172a !important;
    border-bottom: 1px solid #1e293b !important
}

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

body {
    background-color: var(--color-bg-main, #fcfcfc);
    background-image: radial-gradient(rgba(26, 35, 126, .02) 1px, transparent 0);
    background-size: 40px 40px;
    color: var(--color-text-main);
    font-family: Poppins, sans-serif;
    line-height: 1.6;
    transition: background-color .3s ease, color .3s ease
}

.dark-theme body {
    background-image: radial-gradient(hsla(0, 0%, 100%, .05) 1px, transparent 0)
}

.font-serif,
h1,
h2,
h3,
h4 {
    font-family: Playfair Display, serif
}

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

img {
    display: block;
    height: auto;
    max-width: 100%
}

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

.grid {
    display: grid;
    gap: var(--spacing-lg)
}

.hidden {
    display: none !important
}

@media (min-width:768px) {
    .hidden-desktop {
        display: none !important
    }

    .flex-desktop {
        display: flex !important
    }
}

@media (max-width:767px) {
    .hidden-mobile {
        display: none !important
    }
}

nav[role=navigation] .flex.justify-between.flex-1 {
    display: none
}

@media (max-width:767px) {
    nav[role=navigation] .flex.justify-between.flex-1 {
        display: flex;
        margin-bottom: 20px
    }

    nav[role=navigation] div:nth-child(2) {
        display: none
    }
}

.flex {
    display: flex
}

.flex-col {
    flex-direction: column
}

.items-center {
    align-items: center
}

.justify-between {
    justify-content: space-between
}

.gap-xs {
    gap: var(--spacing-xs)
}

.gap-sm {
    gap: var(--spacing-sm)
}

.gap-md {
    gap: var(--spacing-md)
}

.gap-lg {
    gap: var(--spacing-lg)
}

.gap-xl {
    gap: var(--spacing-xl)
}

.header-top {
    background: var(--color-navy);
    color: #fff;
    font-size: 10px;
    padding: 8px 0;
    text-align: center
}

.header-top .container {
    flex-direction: row;
    justify-content: space-between
}

@media (min-width:768px) {
    .header-top {
        padding: 6px 0;
        text-align: left
    }

    .header-top .container {
        flex-direction: row;
        justify-content: space-between
    }
}

.main-header {
    background: var(--color-bg-surface);
    border-bottom: 2px solid var(--color-navy);
    position: sticky;
    top: 0;
    transition: background-color .3s ease;
    z-index: 100
}

.branding-container {
    padding: 15px 0
}

.branding-row {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: space-between
}

@media (min-width:1024px) {
    .branding-row {
        flex-direction: row;
        justify-content: space-between
    }
}

.brand-identity {
    gap: 12px
}

.brand-icon,
.brand-identity {
    align-items: center;
    display: flex
}

.brand-icon {
    background: var(--color-saffron);
    border-radius: 50%;
    height: 40px;
    justify-content: center;
    width: 40px
}

.brand-text h1 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1
}

.brand-text h1 span {
    color: var(--color-saffron)
}

.brand-text p {
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase
}

.search-section {
    max-width: 100%;
    width: 100%
}

@media (min-width:768px) {
    .search-section {
        max-width: 400px
    }
}

.search-input-wrapper input {
    background: var(--color-bg-main);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .02);
    color: var(--color-text-main);
    font-size: 14px;
    padding: 12px 15px 12px 40px;
    transition: var(--transition-fast);
    width: 100%
}

.search-input-wrapper input:focus {
    border-color: var(--color-saffron);
    box-shadow: 0 4px 12px rgba(227, 30, 36, .1);
    outline: none
}

.main-nav ul {
    -webkit-overflow-scrolling: touch;
    display: flex;
    list-style: none;
    overflow-x: auto;
    padding: 10px 0;
    white-space: nowrap
}

.nav-link {
    font-size: 11px;
    font-weight: 700;
    padding: 8px 15px;
    text-transform: uppercase
}

@media (min-width:1024px) {
    .main-nav ul {
        justify-content: flex-start;
        overflow-x: visible
    }
}

.breaking-ticker {
    background: var(--color-saffron);
    color: #fff;
    overflow: hidden;
    padding: 6px 0
}

.ticker-content {
    animation: ticker-loop 30s linear infinite;
    display: flex;
    white-space: nowrap
}

@keyframes ticker-loop {
    0% {
        transform: translateX(100%)
    }

    to {
        transform: translateX(-100%)
    }
}

.hero-card {
    border-radius: 12px;
    height: 300px;
    overflow: hidden;
    position: relative
}

@media (min-width:1024px) {
    .hero-card {
        height: 450px
    }
}

.grid-cols-12 {
    grid-template-columns: 1fr
}

@media (min-width:1024px) {
    .grid-cols-12 {
        grid-template-columns: repeat(12, 1fr)
    }

    .col-span-8 {
        grid-column: span 8
    }

    .col-span-4 {
        grid-column: span 4
    }
}

.section-title {
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    width: 100%
}

.section-title h2 {
    color: var(--color-navy) !important;
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    line-height: 1;
    margin: 0
}

.section-title span {
    color: var(--color-text-main) !important;
    display: block;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: normal;
    margin-top: 10px;
    text-transform: none
}

@media (max-width:767px) {
    .section-title {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px
    }

    .section-title h2 {
        font-size: 1.8rem !important
    }
}

.listing-main {
    padding-bottom: 100px !important;
    padding-top: 80px !important
}

.listing-header {
    margin-bottom: 60px
}

.listing-header h1 {
    border-left: 12px solid var(--color-saffron);
    color: var(--color-navy) !important;
    font-size: clamp(2.5rem, 8vw, 4rem) !important;
    font-weight: 900 !important;
    line-height: 1;
    margin-bottom: 20px;
    padding-left: 30px
}

.listing-breadcrumb {
    color: var(--color-saffron);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase
}

@media (max-width:767px) {
    .listing-main {
        padding-bottom: 80px !important;
        padding-top: 40px !important
    }

    .listing-header h1 {
        border-left-width: 8px;
        font-size: 2.2rem !important;
        padding-left: 20px
    }
}

.main-footer-dark {
    background: #0f172a !important;
    border-top: 4px solid var(--color-saffron);
    color: #f8fafc !important;
    margin-top: 120px;
    padding: 80px 0 40px;
    text-align: center
}

.footer-title {
    color: var(--color-saffron);
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase
}

.footer-grid {
    display: grid;
    gap: 60px
}

@media (min-width:1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr
    }
}

@media (min-width:768px) {
    .main-footer-dark {
        text-align: left
    }
}

.social-icon {
    align-items: center;
    background: hsla(0, 0%, 100%, .05);
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    height: 36px;
    justify-content: center;
    transition: var(--transition-fast);
    width: 36px
}

.social-icon:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
    opacity: .9;
    transform: translateY(-3px)
}

@media (max-width:767px) {
    .social-icon {
        margin: 0
    }
}

.footer-logo {
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
    width: auto
}

.footer-text-logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px
}

.footer-description {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px
}

.footer-social-links {
    display: flex;
    gap: 15px;
    justify-content: center
}

@media (min-width:768px) {
    .footer-social-links {
        justify-content: flex-start
    }
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: 15px
}

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
    transition: var(--transition-fast)
}

.footer-links a:hover {
    color: var(--color-saffron);
    padding-left: 5px
}

.footer-newsletter-text {
    color: #94a3b8;
    font-size: 12px;
    margin-bottom: 25px
}

.newsletter-form {
    display: flex;
    gap: 10px
}

.newsletter-input {
    background: hsla(0, 0%, 100%, .05) !important;
    border: 1px solid hsla(0, 0%, 100%, .1) !important;
    border-radius: 12px;
    color: #fff !important;
    flex: 1;
    font-size: 14px;
    padding: 12px 20px
}

.newsletter-btn {
    background: var(--color-saffron);
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    padding: 12px 25px;
    transition: var(--transition-fast)
}

.newsletter-btn:hover {
    background: #E31E24;
    transform: scale(1.05)
}

.newsletter-form {
    flex-direction: column
}

@media (min-width:480px) {
    .newsletter-form {
        flex-direction: row
    }
}

@keyframes pulse-orange {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.2)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.pulse-icon {
    animation: pulse-orange 1.5s infinite;
    background: red;
    border-radius: 50%;
    height: 8px;
    width: 8px
}

.hero-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, .9), transparent);
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 20px;
    position: absolute;
    right: 0
}

nav[role=navigation] svg {
    display: inline-block;
    height: 20px;
    vertical-align: middle;
    width: 20px
}

nav[role=navigation] a,
nav[role=navigation] span {
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    margin: 0 2px;
    padding: 8px 12px
}

nav[role=navigation] [aria-current=page] span {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: #fff
}

nav[role=navigation] a:hover {
    background: var(--color-bg-light);
    border-color: var(--color-saffron)
}

.trending-item {
    border-bottom: 1px solid var(--color-border);
    display: flex;
    gap: 15px;
    padding: 10px 0
}

.trending-number {
    color: #e2e8f0;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    min-width: 40px
}

.trending-content h4 {
    color: var(--color-navy);
    font-size: .95rem;
    line-height: 1.3;
    margin-bottom: 4px
}

.indices-box {
    background: var(--color-bg-light);
    border-radius: 12px;
    margin-top: 30px;
    padding: 20px
}

.index-row {
    align-items: center;
    border-bottom: 1px dotted #cbd5e1;
    display: flex;
    justify-content: space-between;
    padding: 10px 0
}

.index-name {
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase
}

.index-value {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 700
}

.index-up {
    color: #10b981
}

.market-box {
    background: #0f172a;
    border-radius: 20px;
    color: #fff;
    margin: 40px 0;
    padding: 30px
}

.market-header {
    border-left: 4px solid var(--color-saffron);
    margin-bottom: 30px;
    padding-left: 20px
}

.market-header h2 {
    color: #fff;
    font-family: Playfair Display, serif;
    font-size: 2rem;
    font-style: italic
}

.market-item {
    border-bottom: 1px solid hsla(0, 0%, 100%, .1);
    margin-bottom: 20px;
    padding-bottom: 20px
}

@media (min-width:768px) {
    .market-item {
        border-bottom: none;
        border-right: 1px solid hsla(0, 0%, 100%, .1);
        margin-bottom: 0;
        padding-right: 20px
    }

    .market-item:last-child {
        border-right: none
    }
}

.market-title {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 10px
}

.market-excerpt {
    color: #94a3b8;
    font-size: .9rem;
    margin-bottom: 15px
}

.market-link {
    border-bottom: 1px solid var(--color-saffron);
    color: var(--color-saffron);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase
}

.compact-item {
    border-bottom: 1px solid var(--color-border);
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    transition: transform .3s ease
}

.compact-item:hover {
    transform: translateX(5px)
}

.compact-img {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
    flex-shrink: 0;
    height: 85px;
    overflow: hidden;
    width: 120px
}

.compact-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.compact-content h3 {
    color: var(--color-navy);
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 5px 0
}

.compact-meta {
    align-items: center;
    color: #94a3b8;
    display: flex;
    font-size: 10px;
    font-weight: 600;
    gap: 10px
}

.btn-see-all {
    border: 1px solid var(--color-saffron);
    border-radius: 20px;
    color: var(--color-saffron);
    font-size: 10px;
    font-weight: 800;
    padding: 6px 16px;
    text-transform: uppercase;
    transition: all .3s
}

.btn-see-all:hover {
    background: var(--color-saffron);
    color: #fff
}

.article-container {
    max-width: 100%
}

@media (min-width:1024px) {
    .article-layout {
        display: grid;
        gap: 60px;
        grid-template-columns: 1fr 350px
    }
}

.article-header {
    margin-bottom: 40px
}

.article-title {
    color: var(--color-navy);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px
}

.article-meta {
    border-bottom: 1px solid var(--color-border);
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 600;
    gap: 12px 25px;
    padding: 20px 0
}

.article-meta,
.article-meta span {
    align-items: center;
    display: flex
}

.article-author {
    color: var(--color-navy);
    font-weight: 800;
    text-transform: uppercase
}

.article-image-box {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
    margin: 40px 0;
    overflow: hidden
}

.article-body {
    color: #2d3748;
    font-size: 1.15rem;
    line-height: 1.8
}

.article-body p {
    margin-bottom: 2rem
}

.article-body blockquote {
    border-left: 5px solid var(--color-saffron);
    color: var(--color-navy);
    font-size: 1.4rem;
    font-style: italic;
    margin: 30px 0;
    padding: 20px 30px
}

.article-body img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    display: block;
    height: auto;
    margin: 32px auto;
    max-width: 100%
}

.article-body iframe {
    aspect-ratio: 16/9;
    border-radius: 12px;
    margin: 32px 0;
    width: 100%
}

.breadcrumb {
    color: var(--color-saffron);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    padding-top: 15px;
    text-transform: uppercase
}

.breadcrumb a:hover {
    text-decoration: underline
}

.sidebar-sticky {
    position: sticky;
    top: 100px
}

.auth-page {
    align-items: center;
    background: #0b1120;
    background-image: radial-gradient(at 0 0, rgba(227, 30, 36, .1) 0, transparent 50%), radial-gradient(at 100% 100%, rgba(26, 35, 126, .2) 0, transparent 50%);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 20px
}

.auth-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
    max-width: 450px;
    padding: 40px;
    width: 100%
}

.auth-header {
    margin-bottom: 40px;
    text-align: center
}

.auth-header h1 {
    color: var(--color-navy);
    font-size: 1.8rem;
    margin-top: 15px
}

.auth-form-group {
    margin-bottom: 25px
}

.auth-label {
    color: var(--color-text-muted);
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase
}

.auth-input {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: Outfit, sans-serif;
    font-size: 14px;
    padding: 14px 20px;
    transition: all .3s;
    width: 100%
}

.auth-input:focus {
    border-color: var(--color-saffron);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, .1);
    outline: none
}

.auth-btn {
    background: var(--color-navy);
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 16px;
    text-transform: uppercase;
    transition: all .3s;
    width: 100%
}

.auth-btn:hover {
    background: var(--color-saffron);
    box-shadow: 0 10px 20px rgba(227, 30, 36, .2);
    transform: translateY(-2px)
}

.auth-footer {
    color: var(--color-text-muted);
    font-size: 13px;
    margin-top: 30px;
    text-align: center
}

.auth-footer a {
    color: var(--color-saffron);
    font-weight: 700
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px
}

.mobile-menu-btn {
    align-items: center;
    background: var(--color-navy) !important;
    border: none !important;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 35, 126, .25);
    color: #fff !important;
    cursor: pointer;
    display: flex;
    height: 44px;
    justify-content: center;
    margin-right: 10px;
    padding: 0;
    transition: var(--transition-smooth);
    width: 44px
}

.mobile-menu-btn:active {
    transform: scale(.9)
}

.mobile-menu-btn i {
    height: 24px;
    width: 24px
}

.sidebar-overlay {
    backdrop-filter: blur(10px) !important;
    background: rgba(2, 6, 23, .7) !important;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: var(--transition-smooth);
    visibility: hidden;
    width: 100%;
    z-index: 1000 !important
}

.sidebar-overlay.open {
    opacity: 1;
    visibility: visible
}

.mobile-sidebar {
    background: var(--color-bg-surface) !important;
    border-right: 1px solid var(--color-border);
    box-shadow: 25px 0 50px rgba(0, 0, 0, .4) !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    left: -100%;
    max-width: 320px;
    position: fixed;
    top: 0;
    transition: var(--transition-smooth);
    width: 85%;
    z-index: 1001 !important
}

.mobile-sidebar.open {
    left: 0
}

.sidebar-header {
    align-items: center;
    border-bottom: 2px solid var(--color-bg-light);
    display: flex;
    justify-content: space-between;
    padding: 30px 25px
}

.sidebar-close-btn {
    align-items: center;
    background: var(--color-bg-light) !important;
    border: none !important;
    border-radius: 50%;
    color: var(--color-text-muted) !important;
    cursor: pointer;
    display: flex;
    height: 36px;
    justify-content: center;
    transition: var(--transition-fast);
    width: 36px
}

.sidebar-close-btn:hover {
    background: var(--color-saffron) !important;
    color: #fff !important;
    transform: rotate(90deg)
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px 25px
}

.mobile-search-wrapper {
    margin-bottom: 35px
}

.mobile-search-wrapper form {
    align-items: center;
    display: flex;
    position: relative
}

.mobile-search-input {
    background: var(--color-bg-light) !important;
    border: 2px solid transparent !important;
    border-radius: 16px !important;
    color: var(--color-text-main) !important;
    font-family: Poppins, sans-serif;
    font-size: 14px !important;
    padding: 14px 50px 14px 20px !important;
    transition: var(--transition-fast);
    width: 100%
}

.mobile-search-input:focus {
    background: var(--color-bg-surface) !important;
    border-color: var(--color-saffron) !important;
    box-shadow: 0 10px 25px rgba(227, 30, 36, .1);
    outline: none
}

.mobile-search-btn {
    background: transparent !important;
    border: none !important;
    color: var(--color-text-muted) !important;
    cursor: pointer;
    position: absolute;
    right: 15px
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.mobile-nav-list li {
    margin-bottom: 10px
}

.mobile-nav-list a {
    border-radius: 14px;
    color: var(--color-text-main);
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 14px 20px;
    text-transform: uppercase;
    transition: var(--transition-smooth)
}

.mobile-nav-list a.active,
.mobile-nav-list a:hover {
    background: var(--color-bg-light);
    color: var(--color-saffron) !important;
    padding-left: 25px
}

.mobile-nav-list a.active {
    background: var(--color-bg-light);
    border-left: 4px solid var(--color-saffron)
}

.sidebar-footer {
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    padding: 30px 25px
}

.mobile-theme-btn {
    align-items: center;
    background: var(--color-bg-surface) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 30px;
    color: var(--color-navy) !important;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 10px 20px;
    transition: var(--transition-smooth)
}

.mobile-theme-btn:active {
    transform: scale(.95)
}

.dark-theme .mobile-theme-btn {
    background: #1e293b !important;
    border-color: #334155 !important;
    color: var(--color-saffron) !important
}

.dark-theme .moon-icon-mobile,
.sun-icon-mobile {
    display: none
}

.dark-theme .sun-icon-mobile {
    display: block
}

.text-saffron {
    color: var(--color-saffron) !important
}

.mobile-logo-img {
    height: auto;
    max-width: 180px;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width:480px) {
    .mobile-logo-img {
        max-width: 140px
    }
}

.opacity-40 {
    opacity: .4
}

.admin-sidebar {
    background: #020617;
    border-right: 1px solid hsla(0, 0%, 100%, .05);
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: var(--transition-smooth);
    width: 280px;
    z-index: 50
}

.sidebar-header-admin {
    border-bottom: 1px solid hsla(0, 0%, 100%, .05);
    padding: 30px 25px
}

.sidebar-title {
    color: var(--color-saffron);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase
}

.sidebar-nav {
    flex: 1;
    padding: 20px 15px
}

.nav-section-title {
    color: hsla(0, 0%, 100%, .2);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin: 30px 0 15px 10px;
    text-transform: uppercase
}

.nav-item {
    align-items: center;
    border-radius: 12px;
    color: #94a3b8;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    gap: 12px;
    margin-bottom: 4px;
    padding: 12px 15px;
    transition: all .3s
}

.nav-item i {
    height: 20px;
    width: 20px
}

.nav-item:hover {
    background: hsla(0, 0%, 100%, .05);
    color: #fff
}

.nav-item.active {
    background: var(--color-navy);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    color: #fff
}

.sidebar-divider {
    background: hsla(0, 0%, 100%, .05);
    height: 1px;
    margin: 20px 10px
}

.logout-link:hover {
    color: var(--color-saffron)
}

.logout-btn {
    background: transparent;
    border: none;
    cursor: pointer
}

.logout-btn:hover {
    background: rgba(239, 68, 68, .1);
    color: #ef4444
}

@media (max-width:1023px) {
    .admin-sidebar {
        display: none
    }
}

@media (max-width:480px) {
    .branding-row {
        align-items: center !important;
        flex-direction: row !important;
        justify-content: space-between !important
    }
}