:root {
    --bg-color: #0d0d0d;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #ffffff;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --nav-height: 80px;
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

body.light-mode {
    --bg-color: #f8f8f8;
    --card-bg: #ffffff;
    --text-primary: #000000;
    --text-secondary: #666666;
    --accent: #000000;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================= NAVBAR ================= */

.hero-nav-tab {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg-color);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20;
    border-bottom-right-radius: 20px;
    overflow: visible;
}

.hero-nav-tab::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 100%, transparent 20px, var(--bg-color) 20px);
}

.hero-nav-tab::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 100%, transparent 20px, var(--bg-color) 20px);
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}

body.light-mode .logo-dot {
    background: #000000;
}

.logo-text {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after,
.mobile-nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

.nav-link-cta,
.mobile-nav-link-cta {
    color: var(--text-primary);
    font-weight: 600;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    padding: 0;
    flex-shrink: 0;
}

.theme-toggle:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

body.light-mode .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.06);
}

.theme-toggle .icon-moon {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle .icon-sun {
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

body.light-mode .theme-toggle .icon-moon {
    display: none;
}

body.light-mode .theme-toggle .icon-sun {
    display: block;
    color: var(--text-secondary);
}

/* Desktop dropdown */

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    color: var(--text-secondary);

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
    color: var(--text-primary);
}

.nav-dropdown-toggle.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

.nav-dropdown-arrow {
    font-size: 11px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.nav-dropdown.open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 200px;
    background: var(--bg-color);
    border-radius: 18px;
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 60;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

body.light-mode .nav-dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.nav-dropdown.open .nav-dropdown-menu {
    display: flex;
}

.nav-dropdown-item {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--text-secondary);
    transition: var(--transition);
    font-size: 13px;
}

.nav-dropdown-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

body.light-mode .nav-dropdown-item:hover {
    background: rgba(0, 0, 0, 0.04);
}

/* Mobile menu */

.mobile-menu-tab {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bg-color);
    border: none;
    color: var(--text-primary);
    padding: 14px 18px;
    z-index: 25;
    border-bottom-left-radius: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: var(--transition);
}

.mobile-menu-tab::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 0% 100%, transparent 20px, var(--bg-color) 20px);
}

.mobile-menu-tab::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 0% 100%, transparent 20px, var(--bg-color) 20px);
}

.mobile-menu-tab span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: var(--transition);
}

.mobile-menu-tab.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.mobile-menu-tab.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav-menu {
    position: absolute;
    top: 58px;
    right: 0;
    z-index: 24;
    background: var(--bg-color);
    padding: 14px 16px;
    min-width: 190px;
    border-bottom-left-radius: 20px;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-menu.open {
    display: flex;
}

.mobile-nav-menu::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 0% 100%, transparent 20px, var(--bg-color) 20px);
}

.mobile-nav-menu::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 0% 100%, transparent 20px, var(--bg-color) 20px);
}

.mobile-nav-link {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 4px;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--text-primary);
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 8px 0;
}

body.light-mode .mobile-nav-divider {
    background: rgba(0, 0, 0, 0.08);
}

.mobile-nav-section-title {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 2px 4px 6px;
}

/* ================= HOME LAYOUT ================= */

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px;
    height: 100vh;
}

.hero-section {
    position: relative;
}

.slider-container {
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.slides {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

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

.slide-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.view-project {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.8;
    transition: var(--transition);
}

.view-project:hover {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.control-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: var(--transition);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: #ffffff;
}

/* ================= RIGHT SECTION ================= */

.work-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    padding-right: 4px;
}

.work-section::-webkit-scrollbar {
    width: 4px;
}

.work-section::-webkit-scrollbar-track {
    background: transparent;
}

.work-section::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

body.light-mode .work-section::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
}

.section-header {
    background: var(--card-bg);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h2 {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all {
    font-size: 14px;
    color: var(--text-primary);
    text-decoration: underline;
    opacity: 0.8;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ================= GENERIC CARDS ================= */

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    background: var(--card-bg);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.card-tab {
    position: absolute;
    top: 0;
    background: var(--bg-color);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-tab.left {
    left: 0;
    border-bottom-right-radius: 20px;
}

.card-tab.left::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 100%, transparent 20px, var(--bg-color) 20px);
}

.card-tab.left::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 100%, transparent 20px, var(--bg-color) 20px);
}

.card-tab.bottom {
    left: 0;
    top: auto;
    bottom: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 0;
}

.card-tab.bottom::after {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    top: auto;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 0%, transparent 20px, var(--bg-color) 20px);
}

.card-tab.bottom::before {
    content: "";
    position: absolute;
    left: 0;
    top: -20px;
    bottom: auto;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 0%, transparent 20px, var(--bg-color) 20px);
}

.card-image {
    width: 100%;
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card:hover .card-image img {
    transform: scale(1.05);
}

.framer-badges {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.badge-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.made-in-framer {
    background: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================= FOOTER ================= */

.site-footer {
    margin: 12px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 12px;
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand-card,
.footer-links-card,
.footer-instagram-card {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.footer-brand-card {
    min-height: 100%;
    display: flex;
}

.footer-brand-tab {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg-color);
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom-right-radius: 20px;
}

.footer-brand-tab::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 100%, transparent 20px, var(--bg-color) 20px);
}

.footer-brand-tab::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 100% 100%, transparent 20px, var(--bg-color) 20px);
}

.footer-brand-content {
    padding: 92px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
}

.footer-heading {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 500;
    margin: 22px 0 14px;
    max-width: 520px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 520px;
}

.footer-cta-wrap {
    margin-top: 24px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    background: var(--text-primary);
    color: var(--bg-color);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.footer-links-card,
.footer-instagram-card {
    padding: 28px;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4,
.footer-card-header h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer-link,
.footer-inline-link {
    position: relative;
    width: fit-content;
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-link::after,
.footer-inline-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.35s ease;
}

.footer-link:hover,
.footer-inline-link:hover {
    color: var(--text-primary);
}

.footer-link:hover::after,
.footer-inline-link:hover::after {
    width: 100%;
}

.footer-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.instagram-item {
    display: block;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg-color);
    aspect-ratio: 1 / 1;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s ease;
}

.instagram-item:hover img {
    transform: scale(1.06);
    opacity: 0.94;
}

.footer-bottom {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-secondary);
}

body.light-mode .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}


/* ================= SCROLL TO TOP ================= */

.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--transition);
}

.scroll-top-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

body.light-mode .scroll-top-btn {
    background: rgba(0, 0, 0, 0.08);
}

body.light-mode .scroll-top-btn:hover {
    background: rgba(0, 0, 0, 0.15);
}

/* Desktop logo separator */
@media (min-width: 769px) {
    .logo {
        padding-right: 16px;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    body.light-mode .logo {
        border-right: 1px solid rgba(0, 0, 0, 0.12);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        height: auto;
        padding-top: 12px;
    }

    .hero-section {
        height: 80vh;
    }

    .work-section {
        height: auto;
        overflow: visible;
        padding-right: 0;
    }

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

    .footer-brand-content {
        min-height: auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-nav-tab {
        gap: 12px;
        padding: 12px 16px;
    }

    .logo-group {
        gap: 8px;
    }

    .slide-overlay {
        bottom: 24px;
        left: 24px;
    }

    .slider-controls {
        padding: 0 12px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
    }

    .slider-pagination {
        bottom: 24px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 400px;
    }

    .section-header {
        padding: 20px 22px;
    }

    .site-footer {
        margin: 12px;
        margin-top: 0;
    }

    .footer-brand-content,
    .footer-links-card,
    .footer-instagram-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-brand-content {
        padding-top: 84px;
        padding-bottom: 24px;
    }

    .footer-heading {
        font-size: 24px;
        margin-top: 18px;
    }

    .footer-links-card,
    .footer-instagram-card {
        padding-top: 22px;
        padding-bottom: 22px;
    }

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

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 16px 20px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .content-grid {
        gap: 10px;
        padding: 10px;
    }

    .hero-section {
        height: 72vh;
    }

    .hero-nav-tab {
        padding: 10px 14px;
    }

    .mobile-menu-tab {
        padding: 12px 16px;
    }

    .mobile-nav-menu {
        top: 52px;
        min-width: 170px;
        padding: 12px 14px;
    }

    .section-header {
        padding: 18px 18px;
    }

    .section-header h2 {
        font-size: 15px;
    }

    .view-all {
        font-size: 13px;
    }

    .project-card {
        height: 320px;
    }

    .card-tab {
        padding: 10px 16px;
        font-size: 13px;
    }

    .slide-overlay {
        bottom: 18px;
        left: 18px;
    }

    .view-project {
        font-size: 13px;
    }

    .slider-pagination {
        bottom: 18px;
    }

    .footer-heading {
        font-size: 21px;
    }

    .footer-brand-tab {
        padding: 10px 16px;
        font-size: 13px;
    }

    .footer-links-card,
    .footer-instagram-card {
        padding: 18px;
    }

    .footer-brand-content {
        padding: 78px 18px 18px;
    }

    .instagram-item {
        border-radius: 14px;
    }
}

.mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav-dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-nav-dropdown-arrow {
    font-size: 11px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding-left: 12px;
    margin-top: 2px;
}

.mobile-nav-dropdown.open .mobile-nav-submenu {
    display: flex;
}

.mobile-nav-sublink {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 4px;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-sublink:hover,
.mobile-nav-sublink.active {
    color: var(--text-primary);
}
.mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav-dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 4px;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-dropdown-toggle:hover,
.mobile-nav-dropdown-toggle.active {
    color: var(--text-primary);
}

.mobile-nav-dropdown-toggle.active::after {
    content: '';
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: 4px;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

.mobile-nav-dropdown-arrow {
    font-size: 11px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.mobile-nav-dropdown.open .mobile-nav-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-nav-submenu {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding-left: 12px;
    margin-top: 2px;
}

.mobile-nav-dropdown.open .mobile-nav-submenu {
    display: flex;
}

.mobile-nav-sublink {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 4px;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-sublink:hover,
.mobile-nav-sublink.active {
    color: var(--text-primary);
}

/* EMPTY SLIDER */
.empty-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
}

.empty-slide-content {
    text-align: center;
    max-width: 420px;
    padding: 20px;
}

.empty-slide-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.empty-slide-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* EMPTY CARD */
.empty-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    background: var(--card-bg);
}

.empty-card-content {
    text-align: center;
    padding: 20px;
}

.empty-card-content h3 {
    margin-bottom: 8px;
}

.empty-card-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* CTA */
.empty-cta {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: underline;
}