/* =====================================================
   AlphaHome Design System — Honey Gold Theme
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Honey Gold Palette */
    --honey-primary:   #E8A020;
    --honey-light:     #F5C842;
    --honey-dark:      #B87A10;
    --honey-bg:        #FFF8EC;
    --honey-amber:     #FFEDBA;
    --honey-shadow:    rgba(232, 160, 32, 0.18);

    /* Surfaces */
    --surface:         #FFFFFF;
    --surface-2:       #FAFAFA;
    --border:          #EDE8DE;

    /* Text */
    --text-primary:    #1A1A1A;
    --text-secondary:  #6B6B6B;
    --text-muted:      #9E9E9E;

    /* Status */
    --status-available:  #2E7D32;
    --status-available-bg: #E8F5E9;
    --status-pending:    #F57C00;
    --status-pending-bg: #FFF3E0;
    --status-rented:     #757575;
    --status-rented-bg:  #F5F5F5;

    /* Price */
    --price-color:     #C62828;

    /* Radius & spacing */
    --radius-card:     14px;
    --radius-btn:      10px;
    --radius-badge:    20px;
}

/* =====================================================
   Base
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--honey-bg);
    font-size: 15px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.fw-bold, .fw-semibold {
    font-family: 'Nunito', 'Inter', sans-serif;
}

/* =====================================================
   Utilities
   ===================================================== */
.bg-honey        { background-color: var(--honey-primary) !important; }
.text-honey      { color: var(--honey-primary) !important; }
.text-price      { color: var(--price-color) !important; }
.border-honey    { border-color: var(--honey-primary) !important; }

/* =====================================================
   Navbar / Header
   ===================================================== */
.ah-navbar {
    background: linear-gradient(135deg, var(--honey-primary) 0%, var(--honey-light) 100%);
    padding: 10px 0;
    box-shadow: 0 2px 16px var(--honey-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}



/* Logo */
.ah-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.2s;
}

.ah-sidebar-toggle {
    width: 36px;
    height: 36px;
    background: rgba(255,193,7,0.1);
    border: 1px solid rgba(255,193,7,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--honey-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 4px;
}
.ah-sidebar-toggle:hover {
    background: var(--honey-amber);
    color: var(--honey-dark);
    transform: scale(1.05);
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    backdrop-filter: blur(4px);
}
.ah-logo .logo-text {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
}
.ah-logo .logo-text span {
    color: rgba(255,255,255,0.7);
}

/* Search bar */
.ah-search {
    flex: 1;
    max-width: 480px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    padding: 6px 8px 6px 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.ah-search input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
    color: var(--text-primary);
}
.ah-search input::placeholder { color: var(--text-muted); }
.ah-search-btn {
    background: var(--honey-primary);
    border: none;
    border-radius: 7px;
    color: #fff;
    padding: 6px 14px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.ah-search-btn:hover { background: var(--honey-dark); }

/* Nav icon buttons */
.ah-nav-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.ah-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    border: none;
    background: transparent;
}
.ah-nav-btn i { font-size: 18px; }
.ah-nav-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.ah-nav-btn.active {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* Top Nav Links (Text only) */
.ah-top-nav {
    display: none; /* Mobile hidden by default */
}
@media (min-width: 992px) {
    .ah-top-nav {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-left: 30px;
    }
}
.ah-top-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s;
}
.ah-top-link:hover, .ah-top-link.active {
    color: #fff;
}
.ah-top-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px; /* Align with bottom of navbar */
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--honey-light);
    border-radius: 3px 3px 0 0;
}


/* Avatar dropdown */
.ah-avatar-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}
.ah-avatar-btn:hover { background: rgba(255,255,255,0.45); }

/* =====================================================
   Sidebar
   ===================================================== */
.ah-sidebar {
    width: 220px;
    min-height: calc(100vh - 60px);
    background: var(--surface);
    border-right: 1px solid var(--border);
    padding: 16px 10px;
    flex-shrink: 0;
    position: sticky;
    top: 60px;
    height: calc(100vh - 60px);
    overflow-y: auto;
}

.ah-sidebar-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 12px 4px;
}

.ah-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.18s;
    margin-bottom: 2px;
}
.ah-sidebar-link i { width: 18px; text-align: center; font-size: 15px; }
.ah-sidebar-link:hover {
    background: var(--honey-amber);
    color: var(--honey-dark);
}
.ah-sidebar-link.active {
    background: var(--honey-primary);
    color: #fff;
    font-weight: 600;
}
.ah-sidebar-link.active i { color: #fff; }

/* =====================================================
   Page Layout
   ===================================================== */
.ah-layout {
    display: flex;
    min-height: calc(100vh - 60px);
}
.ah-main-content {
    flex: 1;
    padding: 24px;
    max-width: 100%;
    overflow-x: hidden;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn-honey {
    background: linear-gradient(135deg, var(--honey-primary), var(--honey-light));
    border: none;
    color: #1A1A1A;
    font-weight: 700;
    border-radius: var(--radius-btn);
    padding: 10px 24px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px var(--honey-shadow);
}
.btn-honey:hover {
    background: linear-gradient(135deg, var(--honey-dark), var(--honey-primary));
    transform: translateY(-1px);
    box-shadow: 0 4px 14px var(--honey-shadow);
    color: #fff;
}
.btn-honey:active { transform: translateY(0); }

.btn-honey-outline {
    background: transparent;
    border: 2px solid var(--honey-primary);
    color: var(--honey-dark);
    font-weight: 600;
    border-radius: var(--radius-btn);
    padding: 8px 20px;
    transition: all 0.2s;
}
.btn-honey-outline:hover {
    background: var(--honey-amber);
    border-color: var(--honey-dark);
    color: var(--honey-dark);
}

.btn-chot-sale {
    background: linear-gradient(135deg, #E8A020, #F5C842);
    border: none;
    color: #1A1A1A;
    font-weight: 800;
    border-radius: var(--radius-btn);
    padding: 12px 28px;
    font-size: 15px;
    transition: all 0.22s;
    box-shadow: 0 4px 16px var(--honey-shadow);
    letter-spacing: 0.3px;
}
.btn-chot-sale:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,160,32,0.35);
    color: #fff;
    background: linear-gradient(135deg, #B87A10, #E8A020);
}

/* =====================================================
   Stat Cards (Dashboard)
   ===================================================== */
.stat-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid var(--border);
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--honey-shadow);
}
.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.stat-icon.honey  { background: var(--honey-amber); color: var(--honey-dark); }
.stat-icon.green  { background: var(--status-available-bg); color: var(--status-available); }
.stat-icon.orange { background: var(--status-pending-bg); color: var(--status-pending); }
.stat-icon.gray   { background: var(--status-rented-bg); color: var(--status-rented); }
.stat-value {
    font-family: 'Nunito', sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    color: var(--text-primary);
}
.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 500;
}

/* =====================================================
   Category Cards
   ===================================================== */
.category-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 24px 16px;
    text-align: center;
    display: block;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.22s;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.category-card:hover {
    border-color: var(--honey-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--honey-shadow);
    color: var(--honey-dark);
}
.category-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--honey-amber);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 26px;
    color: var(--honey-dark);
    transition: background 0.2s;
}
.category-card:hover .category-icon-wrap {
    background: var(--honey-primary);
    color: #fff;
}
.category-count {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* =====================================================
   Product Card
   ===================================================== */
.ah-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: all 0.22s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.ah-card:hover {
    border-color: var(--honey-primary);
    box-shadow: 0 6px 22px var(--honey-shadow);
    transform: translateY(-3px);
}

/* Card image */
.ah-card-img {
    position: relative;
    padding-top: 62%;
    overflow: hidden;
    background: #f0f0f0;
}
.ah-card-img img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}
.ah-card:hover .ah-card-img img { transform: scale(1.04); }
.ah-card-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--honey-amber);
    color: var(--honey-dark);
    font-size: 40px;
}

/* Card body */
.ah-card-body {
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.ah-card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}
.ah-card-price {
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: var(--price-color);
    margin-bottom: 4px;
}
.ah-card-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ah-card-footer {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

/* Horizontal list card */
.ah-list-card {
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 1.5px solid var(--border);
    display: flex;
    gap: 0;
    overflow: hidden;
    transition: all 0.22s;
    margin-bottom: 12px;
}
.ah-list-card:hover {
    border-color: var(--honey-primary);
    box-shadow: 0 4px 18px var(--honey-shadow);
    transform: translateY(-2px);
}
.ah-list-card-img {
    width: 150px;
    height: 130px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}
.ah-list-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.ah-list-card:hover .ah-list-card-img img { transform: scale(1.06); }
.ah-list-card-body {
    padding: 12px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* =====================================================
   Status Badges
   ===================================================== */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: var(--radius-badge);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.badge-available {
    background: var(--status-available-bg);
    color: var(--status-available);
}
.badge-pending {
    background: var(--status-pending-bg);
    color: var(--status-pending);
}
.badge-rented {
    background: var(--status-rented-bg);
    color: var(--status-rented);
}
.badge-honey {
    background: var(--honey-amber);
    color: var(--honey-dark);
}

/* =====================================================
   Filter Box
   ===================================================== */
.ah-filter-box {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.ah-filter-box .form-select,
.ah-filter-box .form-control {
    border-radius: 8px;
    border-color: var(--border);
    font-size: 14px;
}
.ah-filter-box .form-select:focus,
.ah-filter-box .form-control:focus {
    border-color: var(--honey-primary);
    box-shadow: 0 0 0 3px rgba(232,160,32,0.15);
}

/* =====================================================
   Forms & Inputs (global)
   ===================================================== */
.form-control:focus,
.form-select:focus {
    border-color: var(--honey-primary);
    box-shadow: 0 0 0 3px rgba(232,160,32,0.15);
}
.form-label { font-weight: 600; font-size: 13px; color: var(--text-secondary); }

/* =====================================================
   Panel / Card container
   ===================================================== */
.ah-panel {
    background: var(--surface);
    border-radius: var(--radius-card);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.ah-panel-title {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--honey-amber);
    display: flex;
    align-items: center;
    gap: 8px;
}
.ah-panel-title i { color: var(--honey-primary); }

/* =====================================================
   Section Title
   ===================================================== */
.ah-section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ah-section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--honey-amber), transparent);
    border-radius: 2px;
    margin-left: 8px;
}

/* =====================================================
   Login Page
   ===================================================== */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    background: var(--honey-bg);
}
.login-left {
    flex: 1;
    background: linear-gradient(145deg, var(--honey-primary) 0%, #F5C842 60%, #FFF8EC 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.login-left::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    top: -100px; left: -100px;
}
.login-left::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    bottom: -80px; right: -80px;
}
.login-right {
    width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--surface);
}
.login-card {
    width: 100%;
    max-width: 360px;
}
.login-card .form-control {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    font-size: 15px;
}

/* =====================================================
   Sale Action Box (detail page sidebar)
   ===================================================== */
.sale-box {
    background: var(--surface);
    border-radius: var(--radius-card);
    border: 2px solid var(--honey-amber);
    padding: 20px;
    position: sticky;
    top: 80px;
}
.sale-box-header {
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

/* =====================================================
   Table Styles
   ===================================================== */
.ah-table {
    background: var(--surface);
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--border);
}
.ah-table thead th {
    background: var(--honey-amber);
    color: var(--honey-dark);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    padding: 12px 16px;
}
.ah-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    font-size: 14px;
}
.ah-table tbody tr:hover { background: var(--honey-bg); }
.ah-table tbody tr:last-child td { border-bottom: none; }

/* =====================================================
   Pagination
   ===================================================== */
.page-link {
    color: var(--honey-dark);
    border-color: var(--border);
    border-radius: 8px !important;
    margin: 0 2px;
}
.page-link:hover { background: var(--honey-amber); border-color: var(--honey-primary); }
.page-item.active .page-link {
    background: var(--honey-primary);
    border-color: var(--honey-primary);
    color: #fff;
}

/* =====================================================
   Toast / Alert
   ===================================================== */
.ah-toast {
    border-radius: 12px;
    border-left: 4px solid var(--honey-primary);
    background: var(--surface);
    box-shadow: 0 4px 20px var(--honey-shadow);
}

/* =====================================================
   Modal customization
   ===================================================== */
.modal-content { border-radius: 16px; border: none; }
.modal-header {
    background: linear-gradient(135deg, var(--honey-primary), var(--honey-light));
    border-radius: 16px 16px 0 0;
    color: #fff;
    border: none;
}
.modal-header .btn-close { filter: brightness(0) invert(1); }

/* =====================================================
   Photo count badge
   ===================================================== */
.badge-photo {
    position: absolute;
    bottom: 8px; left: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* =====================================================
   Footer
   ===================================================== */
.ah-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 20px 0;
    margin-top: auto;
}
.ah-footer-text {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

/* =====================================================
   Responsive & Mobile Optimization
   ===================================================== */
@media (max-width: 991.98px) {
    .ah-sidebar { display: none; }
    .ah-main-content { padding: 15px; margin-bottom: 70px; }
    .ah-navbar .ah-top-nav, .ah-navbar .ah-search { display: none !important; }
    .ah-navbar .container-fluid { padding: 0 15px; }
    
    .ah-layout { display: block; }
    
    /* Grid adjustments */
    .stat-card { padding: 12px; }
    .stat-value { font-size: 18px; }
    .stat-label { font-size: 11px; }
    
    .ah-section-title { font-size: 16px; }
    
    /* Table responsive */
    .ah-table { border: none; border-radius: 0; margin-left: -15px; margin-right: -15px; overflow-x: auto; }
    .ah-table table { min-width: 600px; }
    
    /* Login */
    .login-left { display: none; }
    .login-right { width: 100%; padding: 30px 20px; }
    
    /* Hero Section on detail */
    .ah-hero-panel { grid-template-columns: 1fr; gap: 15px; }
    .ah-action-box { position: static; border-left: none; border-top: 1px solid var(--border); }

    /* Mobile Sidebar Drawer */
    .ah-sidebar {
        position: fixed !important;
        top: 0;
        left: -280px; /* Hidden */
        width: 260px !important;
        height: 100vh !important;
        z-index: 3000 !important;
        background: var(--surface) !important;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 20px 15px !important;
        margin: 0 !important;
        display: block !important;
    }
    .ah-sidebar.show { left: 0; }
    
    .ah-sidebar-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(2px);
        z-index: 2999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .ah-sidebar-overlay.show { display: block; opacity: 1; }

    /* List card responsive */
    .ah-list-card { flex-direction: column; }
    .ah-list-card-img { width: 100%; height: 180px; }
    .ah-list-card-body { padding: 12px; }
    .ah-card-title { font-size: 15px !important; }
    .ah-card-price { font-size: 18px !important; }
    .ah-card-meta { white-space: normal; } /* Allow wrapping for address */
}

/* Bottom Navigation (Mobile Only) */
.ah-mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.08);
    z-index: 2000;
    padding: 0 5px;
    border-top: 1px solid var(--border);
}

.ah-mobile-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    gap: 4px;
    flex: 1;
}

.ah-mobile-link i {
    font-size: 20px;
}

.ah-mobile-link.active {
    color: var(--honey-primary);
}

.ah-mobile-link.active i {
    color: var(--honey-primary);
}

@media (min-width: 992px) {
    .ah-mobile-nav { display: none; }
}
