/* =========================================================
   GHP Laboratory — Design Tokens
   ========================================================= */
:root {
    /* Brand colors */
    --ghp-green: #2E9548;
    --ghp-green-dark: #1F7838;
    --ghp-green-darker: #16572A;
    --ghp-green-tint: #EAF6EE;
    --ghp-gold: #F2C94C;
    --ghp-gold-dark: #D9AE2E;
    --ghp-gold-tint: #FDF6E3;
    --ghp-red: #C0392B;
    --ghp-red-tint: #FBEAE8;
    --ghp-cream: #FBF8F1;
    --ghp-gray: #F5F5F5;
    --ghp-charcoal: #222222;
    --ghp-charcoal-soft: #4A4A4A;
    --ghp-border: #E7E4DD;

    /* Spacing rhythm (4/8px base grid) */
    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4rem;
    --space-9: 6rem;

    /* Radius scale */
    --radius-sm: .375rem;
    --radius-md: .625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-pill: 50rem;

    /* Elevation scale */
    --shadow-sm: 0 1px 2px rgba(20, 20, 20, .06), 0 1px 1px rgba(20,20,20,.04);
    --shadow-md: 0 6px 16px rgba(20, 20, 20, .08), 0 2px 6px rgba(20,20,20,.05);
    --shadow-lg: 0 16px 36px rgba(20, 20, 20, .12), 0 4px 12px rgba(20,20,20,.06);
    --shadow-green: 0 10px 24px rgba(46, 149, 72, .25);

    /* Motion */
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    --transition-fast: .15s ease;
    --transition-base: .25s var(--ease-out);

    /* Fluid type scale */
    --fs-xs: .8125rem;
    --fs-sm: .9375rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: clamp(1.25rem, 1.15rem + .4vw, 1.5rem);
    --fs-xl: clamp(1.5rem, 1.3rem + .8vw, 1.875rem);
    --fs-2xl: clamp(1.875rem, 1.55rem + 1.3vw, 2.5rem);
    --fs-3xl: clamp(2.25rem, 1.75rem + 2vw, 3.25rem);
}

/* =========================================================
   Base
   ========================================================= */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Noto Sans Bengali', sans-serif;
    font-size: var(--fs-base);
    line-height: 1.65;
    color: var(--ghp-charcoal);
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}

html[lang="bn"] body,
.font-bn {
    font-family: 'Noto Sans Bengali', 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.25;
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }

.lead {
    font-size: var(--fs-md);
    line-height: 1.7;
}

p {
    color: var(--ghp-charcoal-soft);
}

a {
    color: var(--ghp-green);
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--ghp-green-dark);
}

/* Accessible focus ring everywhere, mouse users unaffected */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
    outline: 3px solid var(--ghp-gold-dark);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ghp-green);
    box-shadow: 0 0 0 .2rem rgba(46, 149, 72, .15);
}

::selection {
    background-color: var(--ghp-gold);
    color: var(--ghp-charcoal);
}

/* Skip link for keyboard users */
.skip-link {
    position: absolute;
    top: -48px;
    left: 1rem;
    z-index: 2000;
    background: var(--ghp-green);
    color: #fff;
    padding: .65rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: top var(--transition-base);
}
.skip-link:focus {
    top: 1rem;
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   Color / background utilities
   ========================================================= */
.bg-ghp-green { background-color: var(--ghp-green) !important; }
.bg-ghp-gold { background-color: var(--ghp-gold) !important; }
.bg-ghp-red { background-color: var(--ghp-red) !important; }
.bg-ghp-cream { background-color: var(--ghp-cream) !important; }
.bg-ghp-gray { background-color: var(--ghp-gray) !important; }
.bg-ghp-green-tint { background-color: var(--ghp-green-tint) !important; }
.text-ghp-green { color: var(--ghp-green) !important; }
.text-ghp-gold { color: var(--ghp-gold-dark) !important; }
.text-ghp-red { color: var(--ghp-red) !important; }
.text-ghp-soft { color: var(--ghp-charcoal-soft) !important; }

.section-cream { background-color: var(--ghp-cream); }
.section-gray { background-color: var(--ghp-gray); }
.section-py { padding-block: var(--space-8); }

@media (max-width: 767.98px) {
    .section-py { padding-block: var(--space-7); }
}

/* Section eyebrow label (small caps tag above headings) */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ghp-green);
    background: var(--ghp-green-tint);
    padding: .35rem .9rem;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-3);
}
.section-eyebrow i { color: var(--ghp-gold-dark); }

.section-heading {
    margin-bottom: var(--space-6);
}
.section-heading p {
    max-width: 46rem;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    border-radius: var(--radius-md);
    font-weight: 600;
    padding: .65rem 1.4rem;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.btn:active { transform: translateY(1px); }

.btn-lg {
    padding: .85rem 1.9rem;
    border-radius: var(--radius-md);
}
.btn-sm {
    border-radius: var(--radius-sm);
}

.btn-ghp-primary {
    background-color: var(--ghp-green);
    border-color: var(--ghp-green);
    color: #fff;
}
.btn-ghp-primary:hover {
    background-color: var(--ghp-green-dark);
    border-color: var(--ghp-green-dark);
    color: #fff;
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
}

.btn-ghp-outline {
    background-color: transparent;
    border: 2px solid var(--ghp-green);
    color: var(--ghp-green);
}
.btn-ghp-outline:hover {
    background-color: var(--ghp-green);
    color: #fff;
    transform: translateY(-2px);
}

.btn-ghp-gold {
    background-color: var(--ghp-gold);
    border-color: var(--ghp-gold);
    color: var(--ghp-charcoal);
}
.btn-ghp-gold:hover {
    background-color: var(--ghp-gold-dark);
    border-color: var(--ghp-gold-dark);
    color: var(--ghp-charcoal);
    box-shadow: 0 10px 24px rgba(242, 201, 76, .35);
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* =========================================================
   Top accent strip
   ========================================================= */
.ghp-top-strip {
    height: 5px;
    background: linear-gradient(90deg, var(--ghp-gold) 0%, var(--ghp-gold) 50%, var(--ghp-red) 50%, var(--ghp-red) 100%);
}

/* =========================================================
   Navbar
   ========================================================= */
.navbar-ghp {
    background-color: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--ghp-border);
    padding-block: 1rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base), padding-block var(--transition-base);
}
.navbar-ghp.is-scrolled {
    box-shadow: var(--shadow-md);
    padding-block: .6rem;
}

/* Brand mark echoing the official logo: green fill, gold inner border, red outer ring */
.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--ghp-green);
    color: #fff;
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .03em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ghp-gold);
    box-shadow: 0 0 0 2px var(--ghp-red);
    flex-shrink: 0;
}

.navbar-ghp .nav-link {
    color: var(--ghp-charcoal);
    font-weight: 500;
    font-size: var(--fs-sm);
    padding: .55rem .85rem !important;
    position: relative;
    white-space: nowrap;
}

.navbar-ghp .nav-link::after {
    content: "";
    position: absolute;
    left: .9rem;
    right: .9rem;
    bottom: .2rem;
    height: 2px;
    background: var(--ghp-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.navbar-ghp .nav-link:hover,
.navbar-ghp .nav-link.active {
    color: var(--ghp-green);
}
.navbar-ghp .nav-link:hover::after,
.navbar-ghp .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-brand-text {
    font-weight: 700;
    color: var(--ghp-green-darker);
    line-height: 1.2;
    font-size: 1.2rem;
}

.navbar-brand-text small {
    display: block;
    font-size: .68rem;
    font-weight: 500;
    color: var(--ghp-charcoal-soft);
    letter-spacing: .03em;
}

.navbar-toggler {
    border: 1px solid var(--ghp-border);
    padding: .4rem .6rem;
}
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(46,149,72,.2); }

/* Mega / dropdown menu */
.navbar-ghp .dropdown-menu {
    border: 1px solid var(--ghp-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: .6rem;
    margin-top: .75rem !important;
}

.navbar-ghp .dropdown-item {
    border-radius: var(--radius-sm);
    padding: .6rem .75rem;
    font-size: var(--fs-sm);
    display: flex;
    align-items: center;
    gap: .1rem;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}
.navbar-ghp .dropdown-item:hover,
.navbar-ghp .dropdown-item:focus {
    background-color: var(--ghp-green-tint);
    color: var(--ghp-green-darker);
    transform: translateX(2px);
}
.navbar-ghp .dropdown-item i {
    width: 1.75rem;
    text-align: center;
}

@media (max-width: 1199.98px) {
    .navbar-ghp .navbar-collapse {
        margin-top: var(--space-4);
        border-top: 1px solid var(--ghp-border);
        padding-top: var(--space-4);
    }
    .navbar-ghp .nav-link::after { display: none; }
    .navbar-ghp .dropdown-menu {
        box-shadow: none;
        border: none;
        background: var(--ghp-gray);
        margin-top: .25rem !important;
    }
}

/* Slightly tighter link padding at the smallest width the full nav shows */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .navbar-ghp .nav-link {
        padding-inline: .55rem !important;
        font-size: .85rem;
    }
}

/* =========================================================
   Hero
   ========================================================= */
.hero-ghp {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ghp-green) 0%, var(--ghp-green-darker) 100%);
    color: #fff;
    padding-block: var(--space-9);
}

.hero-ghp::before,
.hero-ghp::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
}
.hero-ghp::before {
    width: 26rem;
    height: 26rem;
    top: -10rem;
    right: -6rem;
}
.hero-ghp::after {
    width: 16rem;
    height: 16rem;
    bottom: -8rem;
    left: -4rem;
    background: rgba(242, 201, 76, .12);
}

.hero-ghp .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    padding: .4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero-ghp h1 {
    text-wrap: balance;
}

.hero-ghp .hero-media {
    position: relative;
    z-index: 1;
}
.hero-ghp .hero-media img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-6);
}
.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    padding: .5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(2px);
}
.hero-trust-pill i { color: var(--ghp-gold); }

/* Hero showcase visual (composed in CSS — no placeholder photography needed) */
.hero-showcase {
    position: relative;
    background: rgba(255,255,255,.97);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
}
.hero-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}
.hero-showcase-tile {
    background: var(--ghp-green-tint);
    border-radius: var(--radius-lg);
    padding: var(--space-5) var(--space-3);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.hero-showcase-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.hero-showcase-tile i {
    font-size: 1.9rem;
    color: var(--ghp-green);
    margin-bottom: var(--space-2);
    display: block;
}
.hero-showcase-tile span {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--ghp-charcoal);
}
.hero-showcase-badge {
    position: absolute;
    left: -1.25rem;
    bottom: -1.25rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}
.hero-showcase-badge .badge-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ghp-gold);
    color: var(--ghp-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}
.hero-showcase-badge strong {
    display: block;
    font-size: var(--fs-sm);
    color: var(--ghp-charcoal);
    line-height: 1.2;
}
.hero-showcase-badge span {
    font-size: var(--fs-xs);
    color: var(--ghp-charcoal-soft);
}
@media (max-width: 991.98px) {
    .hero-showcase-badge { position: static; margin-top: var(--space-4); }
}

/* =========================================================
   Stat blocks
   ========================================================= */
.stat-card {
    background: #fff;
    border: 1px solid var(--ghp-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-4);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.stat-card i {
    color: var(--ghp-gold-dark);
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
}
.stat-block .stat-number,
.stat-card .stat-number {
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--ghp-green);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

/* =========================================================
   Cards
   ========================================================= */
.card-ghp {
    border: 1px solid var(--ghp-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
    box-shadow: var(--shadow-sm);
    background: #fff;
}
.card-ghp:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.card-ghp .card-img-top {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background-color: var(--ghp-gray);
}
.card-ghp .card-img-wrap {
    overflow: hidden;
}
.card-ghp .card-img-wrap img {
    transition: transform .5s var(--ease-out);
}
.card-ghp:hover .card-img-wrap img {
    transform: scale(1.06);
}
.card-ghp .card-body {
    padding: var(--space-5);
}
.card-ghp .card-body h2,
.card-ghp .card-body h3 {
    font-size: var(--fs-md);
}

/* Product placeholder tiles (icon-forward, used until real product photography is available) */
.product-tile {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.14) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
}
.product-tile i {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,.15));
    transition: transform var(--transition-base);
}
.card-ghp:hover .product-tile i {
    transform: scale(1.08) rotate(-2deg);
}
.product-tile-green {
    background: linear-gradient(135deg, var(--ghp-green) 0%, var(--ghp-green-dark) 100%);
    color: #fff;
}
.product-tile-green-dark {
    background: linear-gradient(135deg, var(--ghp-green-dark) 0%, var(--ghp-green-darker) 100%);
    color: #fff;
}
.product-tile-deep {
    background: linear-gradient(135deg, var(--ghp-green-darker) 0%, #0E3D1E 100%);
    color: var(--ghp-gold);
}
.product-tile-gold {
    background: linear-gradient(135deg, var(--ghp-gold) 0%, var(--ghp-gold-dark) 100%);
    color: var(--ghp-charcoal);
}

/* Blog / editorial cover tiles */
.cover-tile {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ghp-green-tint) 0%, #fff 100%);
}
.cover-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(46,149,72,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(46,149,72,.08) 1px, transparent 1px);
    background-size: 22px 22px;
}
.cover-tile i {
    position: relative;
    z-index: 1;
    font-size: 2.75rem;
    color: var(--ghp-green);
    filter: drop-shadow(0 4px 10px rgba(46,149,72,.2));
}
.cover-tile-lg .cover-tile i {
    font-size: 4.5rem;
}
.product-tile-lg .product-tile i {
    font-size: 5rem;
}
.product-tile-mini .product-tile i {
    font-size: 1.1rem;
}
.product-tile-mini .product-tile::before {
    background-size: 8px 8px;
}

.badge-ghp-gold {
    background-color: var(--ghp-gold);
    color: var(--ghp-charcoal);
    font-weight: 600;
    padding: .4em .75em;
    border-radius: var(--radius-pill);
    font-size: var(--fs-xs);
}

/* Testimonials */
.testimonial-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--ghp-border);
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-5) var(--space-5);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.testimonial-card .quote-icon {
    position: absolute;
    top: var(--space-4);
    right: var(--space-5);
    color: var(--ghp-green-tint);
    font-size: 2.25rem;
}
.testimonial-stars {
    color: var(--ghp-gold-dark);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-2);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ghp-green-tint);
    color: var(--ghp-green-darker);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.05rem;
}

/* =========================================================
   Footer
   ========================================================= */
footer.site-footer {
    background-color: var(--ghp-charcoal);
    color: #C9C9C9;
    position: relative;
}
footer.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ghp-green) 0%, var(--ghp-gold) 50%, var(--ghp-red) 100%);
}
footer.site-footer a {
    color: #C9C9C9;
    text-decoration: none;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}
footer.site-footer a:hover {
    color: var(--ghp-gold);
    padding-left: .2rem;
}
footer.site-footer h5 {
    color: #fff;
    font-size: var(--fs-sm);
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 2px solid var(--ghp-gold);
    display: inline-block;
    padding-bottom: .5rem;
    margin-bottom: var(--space-4);
}

.breadcrumb-ghp {
    background-color: var(--ghp-cream);
}
.breadcrumb-ghp .breadcrumb-item + .breadcrumb-item::before {
    color: var(--ghp-charcoal-soft);
}
.breadcrumb-ghp a {
    color: var(--ghp-charcoal-soft);
    font-weight: 500;
}
.breadcrumb-ghp a:hover {
    color: var(--ghp-green);
}
.breadcrumb-ghp .active {
    color: var(--ghp-green-darker);
    font-weight: 600;
}

.social-icon-circle {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,.08);
    color: #fff;
    transition: background-color var(--transition-fast), transform var(--transition-fast), color var(--transition-fast);
}
.social-icon-circle:hover {
    background-color: var(--ghp-gold);
    color: var(--ghp-charcoal);
    transform: translateY(-2px);
}

/* =========================================================
   Map / Find Representative
   ========================================================= */
#map-view {
    width: 100%;
    height: 520px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--ghp-border);
    box-shadow: var(--shadow-sm);
}
@media (max-width: 575.98px) {
    #map-view { height: 380px; }
}

.filter-panel {
    background: #fff;
    border: 1px solid var(--ghp-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.form-select, .form-control {
    border-radius: var(--radius-sm);
    border-color: var(--ghp-border);
    padding: .6rem .85rem;
}

/* =========================================================
   Admin
   ========================================================= */
.disabled-action {
    pointer-events: none;
    opacity: .55;
}

.admin-sidebar {
    background-color: var(--ghp-charcoal);
    min-height: 100vh;
}
.admin-sidebar a {
    color: #ccc;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}
.admin-sidebar a:hover,
.admin-sidebar a.active {
    color: #fff;
    background-color: var(--ghp-green);
}
