:root {
    --primary-color: #1a1a2e;
    --secondary-color: #e94560;
    --accent-color: #0f3460;
    --text-color: #2d2d3a;
    --text-muted: #6b7280;
    --bg-color: #ffffff;
    --bg-subtle: #f8f9fc;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --header-height: 80px;
    --font-display: 'Playfair Display', serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.font-display { font-family: var(--font-display); }

.glass-card, .glass-header {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hover-lift {
    transition: transform var(--transition), box-shadow var(--transition);
}
.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Announcement */
.announcement-bar {
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}
.announcement-link { color: #fff; text-decoration: underline; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-logo { height: 42px; width: auto; }

/* Brand / Logo */
.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    text-decoration: none !important;
    color: inherit;
    transition: opacity var(--transition);
}
.brand-lockup:hover { opacity: 0.88; }
.brand-mark {
    height: 46px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.brand-logo-custom {
    height: 52px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}
.brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}
.brand-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    white-space: nowrap;
}
.brand-amp {
    color: #b8956b;
    font-weight: 500;
}
.brand-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.38em;
    color: var(--text-muted);
    margin-top: 3px;
    text-indent: 0.12em;
}
.brand-text { font-weight: 700; font-size: 1.5rem; color: var(--primary-color); }
.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color);
    padding: 0.5rem 1rem !important;
    transition: color var(--transition);
}
.navbar-nav .nav-link:hover { color: var(--secondary-color); }

/* Mobile menu toggle */
.mobile-menu-toggle {
    border: none;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--bg-subtle);
    transition: background var(--transition);
}
.mobile-menu-toggle:focus { box-shadow: none; }
.mobile-menu-toggle:hover { background: rgba(0,0,0,0.08); }
.mobile-menu-icon,
.mobile-menu-icon::before,
.mobile-menu-icon::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    position: relative;
    transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu-icon::before,
.mobile-menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
}
.mobile-menu-icon::before { top: -7px; }
.mobile-menu-icon::after { top: 7px; }
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon { background: transparent; }
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

.search-box { min-width: 180px; }
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.5rem;
    padding: 0.5rem;
    z-index: 100;
    max-height: 320px;
    overflow-y: auto;
}
.search-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
}
.search-item:hover { background: var(--bg-subtle); }
.search-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 6px; }

/* Hero Slider */
.hero-slider { margin-top: -1px; }
.hero-slider .carousel-item { height: 85vh; min-height: 500px; max-height: 800px; }
.slide-bg {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: #000;
}
.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    max-width: 600px;
}
.slide-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    opacity: 0.9;
}
.slide-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin: 0.5rem 0 1rem;
}
.slide-desc { font-size: 1.1rem; opacity: 0.9; margin-bottom: 1.5rem; }

/* Sections */
.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }
.bg-light-subtle { background: var(--bg-subtle); }
.section-subtitle {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 600;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Page Hero */
.page-hero {
    padding: 4rem 0;
    background: var(--bg-subtle);
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin: 0;
    color: var(--primary-color);
}
.page-hero[style] .page-hero-title { color: #fff; }

/* Page content typography */
.page-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}
.page-content h2, .page-content h3 {
    font-family: var(--font-display);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.page-content p { margin-bottom: 1.25rem; }
.page-content ul, .page-content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.page-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}
.page-content a:hover { text-decoration: underline; }

/* Banner cards */
.banner-card {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
    border-radius: var(--radius);
    overflow: hidden;
}
.banner-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius);
}
.banner-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.banner-card:hover .banner-card-image img { transform: scale(1.05); }
.banner-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.banner-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #fff;
    z-index: 2;
}
.banner-card-sub {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 0.35rem;
}
.banner-card-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #fff;
}
.banner-card-desc {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
    color: rgba(255,255,255,0.95);
}

/* Campaign cards */
.campaign-card {
    display: block;
    text-decoration: none !important;
    color: var(--text-color) !important;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow);
    height: 100%;
}
.campaign-card:hover {
    color: var(--text-color) !important;
}
.campaign-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.campaign-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.campaign-card:hover .campaign-card-image img { transform: scale(1.04); }
.campaign-card-body { padding: 1.5rem; }
.campaign-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    color: var(--primary-color);
    text-decoration: none;
}
.campaign-card:hover .campaign-card-title { color: var(--secondary-color); }
.campaign-card-sub {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
    margin: 0 0 0.5rem;
}
.campaign-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0 0 1rem;
    line-height: 1.6;
}
.campaign-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

/* Corporate page */
.corp-hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    text-align: center;
}
.corp-hero .section-subtitle { color: rgba(255,255,255,0.8); }
.corp-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    margin: 0.5rem 0 1rem;
}
.corp-hero-lead {
    font-size: 1.15rem;
    max-width: 640px;
    margin: 0 auto;
    opacity: 0.92;
    line-height: 1.7;
}
.corp-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.corp-intro-img { box-shadow: var(--shadow); }
.corp-value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 100%;
}
.corp-value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--secondary-color);
}
.corp-value-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}
.corp-value-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}
.corp-link-card {
    display: block;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    text-decoration: none !important;
    color: var(--text-color) !important;
    height: 100%;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.corp-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--secondary-color);
    color: var(--text-color) !important;
}
.corp-link-icon {
    font-size: 1.75rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 1rem;
}
.corp-link-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.corp-link-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.corp-link-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
}
.corp-cta-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}
.corp-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.corp-contact-list li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-muted);
}
.corp-contact-list i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}
.corp-contact-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
}
.corp-contact-list a:hover { color: var(--secondary-color); }

/* Nav dropdown (desktop) */
@media (min-width: 992px) {
    .navbar-nav.mx-auto,
    .mobile-nav-list {
        margin-left: auto !important;
        margin-right: auto !important;
        flex-direction: row;
    }
    .mobile-nav-list .nav-item-has-children { position: relative; }
    .mobile-nav-list .nav-submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        list-style: none;
        margin: 0;
        padding: 0.5rem;
        background: #fff;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        z-index: 1000;
    }
    .mobile-nav-list .nav-item-has-children:hover .nav-submenu,
    .mobile-nav-list .nav-item-has-children:focus-within .nav-submenu {
        display: block;
    }
    .mobile-nav-list .nav-link-sub {
        display: block;
        padding: 0.5rem 1rem !important;
        border: none !important;
        font-size: 0.95rem !important;
        border-radius: 8px;
    }
    .mobile-nav-list .nav-link-sub:hover {
        background: var(--bg-subtle);
        color: var(--secondary-color);
    }
    .mobile-nav-list .nav-link-parent::after {
        display: none;
    }
    .mobile-header-actions {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 0.5rem;
}
.dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}
.dropdown-item:hover {
    background: var(--bg-subtle);
    color: var(--secondary-color);
}

/* Products */
.product-card { overflow: hidden; height: 100%; }
.product-card-link { text-decoration: none; color: inherit; display: block; }
.product-image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-subtle);
}
.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.05); }
.product-no-image { min-height: 360px; display: flex; align-items: center; justify-content: center; }
.product-placeholder-lg {
    width: 100%;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 4rem;
    background: var(--bg-subtle);
}
.product-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    color: #fff;
}
.badge-new { background: var(--accent-color); }
.badge-sale { background: var(--secondary-color); }
.product-card-body { padding: 1.25rem; }
.product-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem; }
.price-old { text-decoration: line-through; color: var(--text-muted); margin-right: 0.5rem; font-size: 0.9rem; }
.price-current { font-weight: 700; color: var(--secondary-color); }

/* Filter */
.size-chip span {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
}
.size-chip input:checked + span {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Blog */
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card a {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}
.blog-card a:visited { color: inherit !important; }
.blog-card h3 {
    font-family: var(--font-display);
    color: var(--primary-color);
    transition: color var(--transition);
}
.blog-card:hover h3 { color: var(--secondary-color); }
.blog-cat { font-size: 0.75rem; color: var(--secondary-color); text-transform: uppercase; }
.blog-content { font-size: 1.05rem; line-height: 1.8; color: var(--text-color); }
.blog-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}
.blog-content a:hover { text-decoration: underline; }

/* Gallery */
.gallery-album-card {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}
.gallery-album-card:visited { color: inherit !important; }
.gallery-album-card h3 {
    font-family: var(--font-display);
    color: var(--primary-color);
    transition: color var(--transition);
}
.gallery-album-card:hover h3 { color: var(--secondary-color); }

/* Sidebar link lists (blog, gallery vb.) */
.sidebar-links a {
    display: block;
    padding: 0.35rem 0;
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition);
}
.sidebar-links a:hover,
.sidebar-links a.is-active {
    color: var(--secondary-color);
}
.sidebar-links a.is-active { font-weight: 600; }
.sidebar-links li + li { margin-top: 0.1rem; }

/* Counters */
.counter-value { font-size: 2.5rem; font-weight: 700; color: var(--primary-color); }
.counter-label { color: var(--text-muted); font-size: 0.9rem; }

/* Category */
.category-img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; }
.category-card { color: var(--text-color); }

/* Footer */
.site-footer { background: var(--primary-color); color: rgba(255,255,255,0.8); }
.footer-top { padding: 4rem 0 2rem; }
.footer-logo { height: 40px; filter: brightness(0) invert(1); }
.footer-brand-lockup {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.15;
}
.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
}
.footer-brand-amp { color: #d4b896; }
.footer-brand-label {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    margin-top: 4px;
    text-indent: 0.15em;
}
.footer-title { color: #fff; font-weight: 600; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 0.5rem; }
.social-links a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    margin-right: 0.5rem;
    transition: background var(--transition);
}
.social-links a:hover { background: var(--secondary-color); }
.footer-bottom { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); }

/* Cookie & WhatsApp & Popup */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 0;
    border-radius: 0;
}
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.site-popup { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; }
.popup-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.popup-content { position: relative; max-width: 480px; width: 90%; padding: 2rem; text-align: center; }
.popup-close { position: absolute; top: 0.5rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.popup-image { max-width: 100%; border-radius: 8px; margin-bottom: 1rem; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade { animation: fadeIn 0.8s ease; }
.animate-up { animation: slideUp 0.8s ease; }

/* Product detail */
.product-detail-title { font-family: var(--font-display); font-size: 2rem; }
.thumb-btn { cursor: pointer; opacity: 0.7; transition: opacity var(--transition); }
.thumb-btn:hover, .thumb-btn.active { opacity: 1; outline: 2px solid var(--secondary-color); }

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

@media (max-width: 991px) {
    .hero-slider .carousel-item { height: 60vh; min-height: 400px; }
    .section-padding { padding: 3rem 0; }
    .filter-sidebar { position: static !important; margin-bottom: 2rem; }

    .site-header .container {
        position: relative;
    }

    .mobile-nav-panel {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: #fff;
        border-radius: var(--radius);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(0, 0, 0, 0.06);
        padding: 0.75rem 1rem 1rem;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        z-index: 1050;
    }

    .mobile-nav-list {
        width: 100%;
        margin: 0 !important;
        padding: 0;
    }

    .mobile-nav-list .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .mobile-nav-list .nav-item:last-child {
        border-bottom: none;
    }

    .mobile-nav-list .nav-link {
        padding: 0.9rem 0.25rem !important;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--primary-color);
    }

    .mobile-nav-list .nav-link-parent {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .mobile-nav-list .nav-link-parent::after {
        content: '';
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--secondary-color);
        border-bottom: 2px solid var(--secondary-color);
        transform: rotate(45deg);
        margin-right: 4px;
        opacity: 0.7;
    }

    .mobile-nav-list .nav-submenu {
        list-style: none;
        margin: 0;
        padding: 0 0 0.5rem 0.75rem;
    }

    .mobile-nav-list .nav-link-sub {
        padding: 0.65rem 0.5rem !important;
        font-size: 0.95rem !important;
        font-weight: 500;
        color: var(--text-muted);
        border-left: 2px solid var(--bg-subtle);
        margin-left: 0.25rem;
    }
    .mobile-nav-list .nav-link-sub:hover {
        color: var(--secondary-color);
        border-left-color: var(--secondary-color);
    }

    .mobile-header-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mobile-header-actions .search-box {
        width: 100%;
        min-width: 0;
    }

    .mobile-header-actions .form-control {
        height: 44px;
        border-radius: 10px;
        font-size: 1rem;
    }

    .mobile-header-actions .theme-toggle {
        align-self: flex-end;
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .announcement-bar .container {
        font-size: 0.75rem;
    }

    .brand-mark { display: none; }
    .brand-copy { display: flex !important; }
    .brand-name { font-size: 1.2rem; }
    .brand-label { font-size: 0.55rem; letter-spacing: 0.28em; }
}
