/*== Navigation dark mode ==*/
html[data-theme="dark"] .navbar-modern {
    background: rgba(17, 24, 39, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .brand-mark {
    color: #ff6b6b;
}

html[data-theme="dark"] .navbar-main-nav .nav-link {
    color: var(--text);
}

html[data-theme="dark"] .navbar-main-nav .nav-link:hover,
html[data-theme="dark"] .navbar-main-nav .nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

/*== Wishlist ==*/
html[data-theme="dark"] .wishlist-pill {
    background: #111827;
    border-color: var(--border);
    color: var(--text);
}

html[data-theme="dark"] .wishlist-pill:hover,
html[data-theme="dark"] .wishlist-pill:focus-visible {
    color: var(--text);
    border-color: rgba(255, 122, 24, 0.25);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .wishlist-pill-label {
    color: var(--muted);
}

html[data-theme="dark"] .wishlist-pill-price,
html[data-theme="dark"] .wishlist-pill-icon {
    color: var(--text);
}

/*== Account buttons ==*/
html[data-theme="dark"] .navbar-account-btn {
    background: #111827;
    border-color: var(--border);
    color: var(--text);
}

html[data-theme="dark"] .navbar-account-btn:hover,
html[data-theme="dark"] .navbar-account-btn:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 122, 24, 0.22);
    color: #fff;
}

/*== Dropdowns ==*/
html[data-theme="dark"] .pp-dropdown-menu {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text);
}

html[data-theme="dark"] .pp-dropdown-item {
    color: var(--text);
    background: transparent;
}

html[data-theme="dark"] .pp-dropdown-item:hover,
html[data-theme="dark"] .pp-dropdown-item:focus-visible,
html[data-theme="dark"] .pp-dropdown-item.active {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

html[data-theme="dark"] .pp-text-danger {
    color: #f87171;
}

html[data-theme="dark"] .pp-text-danger:hover,
html[data-theme="dark"] .pp-text-danger:focus-visible {
    background: rgba(248, 113, 113, 0.12);
    color: #fecaca;
}

html[data-theme="dark"] .pp-dropdown-divider {
    background: rgba(255, 255, 255, 0.08);
}

/*== Shared nav text ==*/

html[data-theme="dark"] .card-meta,
html[data-theme="dark"] .section-subtitle,
html[data-theme="dark"] .pp-dropdown-item-text {
    color: var(--muted);
}

/*== Footer ==*/

html[data-theme="dark"] .footer-modern {
    background: #020617;
    border-top-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
}

html[data-theme="dark"] .footer-brand,
html[data-theme="dark"] .footer-title {
    color: #fff;
}

html[data-theme="dark"] .footer-text,
html[data-theme="dark"] .footer-links a {
    color: rgba(255, 255, 255, 0.72);
}

html[data-theme="dark"] .footer-links a:hover,
html[data-theme="dark"] .footer-copyright-link:hover {
    color: #fff;
}

html[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
}