/* Easy Groceries Wireframe CSS */

/* Variables */
:root {
    --primary-green: #16A34A;
    --light-green: #22C55E;
    --accent-green: #0EA5E9;
    --text-dark: #0F172A;
    --text-light: #475569;
    --border-light: rgba(15, 23, 42, 0.10);
    --background-light: #F8FAFC;
    --white: #FFFFFF;
    --shadow: 0 12px 30px rgba(2, 6, 23, 0.10);

    --bg: #ffffff;
    --card: #ffffff;
    --text: #0f172a;
    --muted: rgba(15, 23, 42, 0.66);
    --line: rgba(15, 23, 42, 0.10);
    --accent: #10b981;
    --accent2: #0ea5e9;
    --shadow-sm: 0 6px 16px rgba(15, 23, 42, 0.06);
    --s1: 0.25rem;
    --s2: 0.5rem;
    --s3: 0.75rem;
    --s4: 1rem;
    --s5: 1.25rem;
    --s6: 1.5rem;
    --s7: 2rem;
    --s8: 2.75rem;
}

button {
    font-family: inherit;
}

/* General Styles */
body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

/* eg-* design system (static_site_final) */
.eg-topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
}

.eg-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s6);
    padding: 0.7rem 0;
}

.eg-topbar__left {
    flex: 0 0 auto;
}

.eg-topbar__center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.eg-topbar__right {
    flex: 0 0 auto;
}

.eg-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.eg-brand span:last-child {
    font-size: 0.98rem;
}

.eg-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
}

.eg-searchbar {
    width: min(520px, 100%);
    display: flex;
    align-items: center;
}

.eg-searchbar input {
    width: 100%;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: #fff;
    padding: 0 1.05rem;
    outline: none;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.eg-searchbar input::placeholder {
    color: rgba(15, 23, 42, 0.40);
}

.eg-nav {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    align-items: center;
}

.eg-link {
    text-decoration: none;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    border: 1px solid transparent;
    color: var(--muted);
    font-weight: 750;
    transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
    background: transparent;
    cursor: pointer;
    appearance: none;
}

.eg-link.eg-link--pill {
    padding: 0.52rem 0.9rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #fff;
    color: rgba(15, 23, 42, 0.88);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.eg-link:hover {
    color: var(--text);
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.10);
}

.eg-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.35rem;
    min-width: 18px;
    height: 18px;
    padding: 0 0.32rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(15, 23, 42, 0.03);
    color: rgba(15, 23, 42, 0.72);
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1;
}

.eg-nav-divider {
    width: 1px;
    height: 18px;
    background: rgba(15, 23, 42, 0.14);
    display: inline-block;
    margin: 0 0.15rem;
}

.eg-text {
    color: var(--muted);
    line-height: 1.7;
}

.eg-shell {
    padding: var(--s8) 0;
}

.eg-kicker {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(15, 23, 42, 0.76);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eg-kicker--subtle {
    border-color: rgba(15, 23, 42, 0.10);
    background: rgba(15, 23, 42, 0.02);
}

.eg-h1 {
    margin: 0.9rem 0 0;
    font-size: clamp(2.1rem, 5vw, 3.2rem);
    line-height: 1.06;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.eg-lead {
    margin: var(--s4) 0 0;
    color: var(--muted);
    max-width: 65ch;
    line-height: 1.65;
}

.eg-actions {
    margin-top: var(--s6);
    display: flex;
    gap: var(--s3);
    flex-wrap: wrap;
}

.eg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: rgba(255, 255, 255, 0.90);
    text-decoration: none;
    font-weight: 800;
}

.eg-btn--primary {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, rgba(16, 185, 129, 1), rgba(14, 165, 233, 1));
    box-shadow: var(--shadow-sm);
}

.eg-btn--ghost {
    background: #fff;
    border-color: rgba(15, 23, 42, 0.12);
    color: var(--text);
}

.eg-btn--add {
    padding: 0.62rem 0.9rem;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, rgba(16, 185, 129, 1), rgba(14, 165, 233, 1));
    box-shadow: var(--shadow-sm);
}

.eg-card {
    background: var(--card);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.eg-card__body {
    padding: var(--s5);
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
}

.eg-media {
    height: 200px;
    background: rgba(15, 23, 42, 0.02);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.eg-media--tall {
    height: 320px;
}

.eg-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.eg-media--contain img {
    object-fit: contain;
    background: #fff;
}

.eg-panel {
    border: 1px solid rgba(16, 185, 129, 0.18);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.80), rgba(255, 255, 255, 0.10));
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: var(--s7);
    position: relative;
    overflow: hidden;
}

.eg-hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.eg-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: translateX(100%);
    transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.eg-hero-slide--current {
    transform: translateX(0);
}

.eg-hero-slide--next {
    transform: translateX(100%);
}

.eg-hero-slides.is-animating .eg-hero-slide--current {
    transform: translateX(-100%);
}

.eg-hero-slides.is-animating .eg-hero-slide--next {
    transform: translateX(0);
}

.eg-hero-slides.is-resetting .eg-hero-slide {
    transition: none;
}

.eg-hero-content {
    position: relative;
    z-index: 1;
}

.eg-h2 {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 950;
    letter-spacing: -0.02em;
}

.eg-sub {
    margin: 0.35rem 0 0;
    color: var(--muted);
    max-width: 70ch;
}

.eg-grid-head {
    display: flex;
    justify-content: space-between;
    gap: var(--s4);
    align-items: flex-end;
    margin-bottom: var(--s5);
}

.eg-card--link {
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.eg-card--link:hover {
    transform: translateY(-1px);
    border-color: rgba(14, 165, 164, 0.25);
    box-shadow: var(--shadow);
}

#home-departments > .cell,
#home-featured > .cell {
    margin-bottom: var(--s5);
    display: flex;
}

#department-products > .cell {
    margin-bottom: var(--s5);
    display: flex;
}

#product-related > .cell {
    margin-bottom: var(--s5);
    display: flex;
}

.eg-spacer-4 {
    height: var(--s4);
}

.eg-spacer-6 {
    height: var(--s6);
}

.eg-spacer-7 {
    height: var(--s7);
}

.eg-section-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 950;
}

.eg-card-kicker {
    display: block;
    font-size: 0.70rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.55);
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.eg-card-title {
    font-size: 1.05rem;
    font-weight: 950;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.eg-card-sub {
    margin-top: 0.2rem;
    font-size: 0.86rem;
    color: rgba(15, 23, 42, 0.58);
}

.eg-card-price {
    margin-top: 0.65rem;
    font-weight: 950;
}

.eg-card__actions {
    margin-top: var(--s4);
    display: flex;
    gap: var(--s3);
    flex-wrap: wrap;
}

.eg-card__actions--between {
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.eg-actions-right {
    display: flex;
    gap: var(--s3);
    align-items: center;
}

.eg-form {
    display: block;
}

.eg-field {
    margin-bottom: var(--s4);
}

.eg-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.62);
    margin: 0 0 0.4rem 0;
}

.eg-input {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(15, 23, 42, 0.02);
    color: var(--text);
    box-shadow: none;
}

.eg-input:focus {
    outline: none;
    border-color: rgba(14, 165, 164, 0.45);
    box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.12);
    background: #fff;
}

.eg-field--check {
    display: flex;
    align-items: flex-start;
    gap: var(--s3);
}

.eg-field--check input[type="checkbox"] {
    margin: 0.25rem 0 0 0;
}

.eg-check-label {
    margin: 0;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.72);
}

.eg-auth-modal {
    max-width: 460px;
    margin: 0 auto;
}

#loginModal {
    background: transparent;
    border: 0;
    padding: 0;
}

#forgotModal {
    background: transparent;
    border: 0;
    padding: 0;
}

#loginModal .eg-card__body {
    position: relative;
}

#forgotModal .eg-card__body {
    position: relative;
}

#loginModal .close-button {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
}

#loginModal .close-button:hover {
    background: rgba(15, 23, 42, 0.05);
}

#forgotModal .close-button {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
}

#forgotModal .close-button:hover {
    background: rgba(15, 23, 42, 0.05);
}

.eg-auth-links {
    margin-top: var(--s5);
    display: flex;
    justify-content: space-between;
    gap: var(--s4);
    flex-wrap: wrap;
}

.eg-price-card {
    padding: var(--s6);
}

.eg-price-kicker {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.60);
}

.eg-price-amount {
    margin-top: 0.3rem;
    font-size: 2.1rem;
    font-weight: 1000;
    letter-spacing: -0.03em;
}

.eg-price-sub {
    margin-top: 0.25rem;
    color: rgba(15, 23, 42, 0.55);
    font-size: 0.92rem;
}

.eg-stack {
    display: grid;
    gap: var(--s5);
}

.eg-detail-row {
    display: flex;
    justify-content: space-between;
    gap: var(--s4);
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.02);
    font-size: 0.92rem;
}

.eg-detail-row strong {
    font-weight: 900;
}

@media (max-width: 900px) {
    .eg-shell {
        padding: var(--s7) 0;
    }
}

.eg-footer {
    border-top: 1px solid rgba(15, 23, 42, 0.10);
    padding: 2rem 0;
    color: rgba(15, 23, 42, 0.60);
    background-color: var(--white);
    margin-top: 2rem;
}

.eg-footer-link {
    color: rgba(15, 23, 42, 0.62);
    text-decoration: none;
    font-weight: 650;
    display: inline-block;
    padding: 0.22rem 0;
}

.eg-footer-link:hover {
    color: rgba(15, 23, 42, 0.88);
    text-decoration: underline;
}

.eg-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.eg-table thead th {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.56);
    font-weight: 900;
    padding: 0.6rem 0.6rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(15, 23, 42, 0.02);
}

.eg-table tbody td {
    padding: 0.8rem 0.6rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    vertical-align: middle;
}

.eg-cart-title {
    font-weight: 950;
}

.eg-cart-sub {
    margin-top: 0.15rem;
    color: rgba(15, 23, 42, 0.55);
    font-size: 0.86rem;
}

.eg-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

.eg-qty-btn {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0.3rem 0.65rem;
    font-weight: 950;
    color: rgba(15, 23, 42, 0.70);
    cursor: pointer;
}

.eg-qty-btn:hover {
    background: rgba(15, 23, 42, 0.04);
}

.eg-qty-val {
    min-width: 28px;
    text-align: center;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.80);
    padding: 0 0.25rem;
}

.eg-remove {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 0.45rem 0.75rem;
    background: rgba(239, 68, 68, 0.12);
    color: rgba(185, 28, 28, 1);
    font-weight: 900;
    cursor: pointer;
}

.eg-remove:hover {
    background: rgba(239, 68, 68, 0.18);
}

.eg-summary {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(15, 23, 42, 0.02);
    border-radius: 12px;
    padding: 0.75rem;
}

.eg-summary-row {
    display: flex;
    justify-content: space-between;
    gap: var(--s4);
    font-size: 0.92rem;
    color: rgba(15, 23, 42, 0.66);
    padding: 0.25rem 0;
}

.eg-summary-row strong {
    color: rgba(15, 23, 42, 0.82);
    font-weight: 950;
}

.eg-summary-row--total {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.10);
}

@media (max-width: 640px) {
    .eg-table thead {
        display: none;
    }
    .eg-table tbody td {
        display: block;
        padding: 0.55rem 0;
        border-bottom: 0;
    }
    .eg-table tbody tr {
        display: block;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }
}

@media (max-width: 640px) {
    .eg-topbar__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .eg-topbar__center {
        width: 100%;
        justify-content: flex-start;
    }
    .eg-searchbar {
        width: 100%;
    }
}

.kicker {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.62);
}

.h1 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.35rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--text-dark);
}

.h2 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    line-height: 1.25;
}

.subtext {
    margin: 0;
    color: rgba(15, 23, 42, 0.65);
    font-weight: 500;
    line-height: 1.5;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border: none;
    color: #fff;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea {
    margin: 0;
}

.hideAll {
    display: none;
}

.pointer {
    cursor: pointer;
}

/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--white);
    color: var(--text-dark);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-search {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 180px;
}

.header-search .search-bar {
    width: 100%;
    max-width: 520px;
    min-width: 220px;
}

@media (max-width: 1023px) {
    .header-search .search-bar {
        max-width: 420px;
        min-width: 170px;
    }
}

@media (max-width: 860px) {
    .header-search .search-bar {
        max-width: 320px;
        min-width: 140px;
    }
}

@media (max-width: 720px) {
    .header-search {
        display: none;
    }
}

.site-header .grid-container,
.site-main .grid-container,
.site-footer .grid-container {
    max-width: 1200px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.35rem;
    font-weight: bold;
    color: var(--primary-green);
    text-decoration: none;
    gap: 0.5rem;
}

.logo-badge {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e, #14b8a6);
    color: #fff;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 1.05rem;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 20px rgba(2, 6, 23, 0.10);
}

.logo-text {
    font-size: 0.95rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.92);
    letter-spacing: -0.02em;
}


.site-header .logo {
    padding-right: 1.25rem;
    min-width: 190px;
    flex: 0 0 auto;
}

.header-divider {
    width: 1px;
    height: 22px;
    background: rgba(15, 23, 42, 0.12);
    margin: 0 0.35rem;
    flex: 0 0 auto;
}

.site-header .logo-text {
    white-space: nowrap;
}

.header-middle {
    display: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(15, 23, 42, 0.82);
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1;
    cursor: pointer;
    position: relative;
}

.nav-link:hover {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.08);
}

.nav-link--departments {
    padding-right: 1.1rem;
}

.location-dropdown {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    padding: 0.4rem;
    color: var(--text-dark);
    min-width: 260px;
    max-width: min(360px, 90vw);
    font-weight: 600;
    appearance: none;
    background-image: none;
    position: absolute;
    top: calc(100% + 1rem);
    right: -60px;
    list-style-type: none;
    z-index: 1000;
    display: none;
    border-radius: 0.9rem;
    box-shadow: 0 16px 34px rgba(2, 6, 23, 0.10);
    max-height: min(70vh, 520px);
    overflow: auto;
}

.location-dropdown > li:hover {
    background-color: rgba(15, 23, 42, 0.04);
}

.eg-departments {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.eg-departments.is-open .location-dropdown {
    display: block;
}

.location-dropdown > li {
    border-radius: 0.75rem;
}

.location-dropdown > li > a {
    display: block;
    padding: 0.55rem 0.65rem;
    color: rgba(15, 23, 42, 0.86);
    text-decoration: none;
}



.reduce {
    background-color: rgba(233, 247, 246, 1);
    color: var(--primary-green);
    border: 1px solid rgba(14, 165, 164, 0.55);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    font-weight: 800;
    line-height: 1;
}

.plus {
    background-color: rgba(233, 247, 246, 1);
    color: var(--primary-green);
    border: 1px solid rgba(14, 165, 164, 0.55);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    font-weight: 800;
    line-height: 1;
}

.quantity {
    margin: 0 0.2rem;
    width: 2.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.92);
    text-align: center;
}

.plus-container {
    margin-bottom: 0.85rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.plus-container {
    padding: 0.35rem;
    border: 1px solid rgba(14, 165, 164, 0.35);
    border-radius: 14px;
    background-color: rgba(233, 247, 246, 0.55);
}

.location-caret {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    margin-left: -0.05rem;
    padding-right: 0;
}

.search-bar {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    max-width: 520px;
}

.search-bar i {
    position: absolute;
    left: 1rem;
    color: var(--text-light);
}

.search-bar input {
    width: 100%;
    padding: 0.9rem 1.1rem 0.9rem 2.75rem;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    font-size: 1rem;
    background-color: #F1F3F4;
    height: 44px;
}

.theme-toggle {
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.35rem 0.75rem;
    font-weight: 800;
}

.theme-toggle:hover {
    background: rgba(15, 23, 42, 0.04);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
    flex-wrap: nowrap;
}

@media (max-width: 860px) {
    .header-actions .go_search,
    .header-actions .go_location {
        display: none;
    }
}

.header-actions .nav-link {
    flex: 0 0 auto;
}

@media (max-width: 1023px) {
    .header-actions {
        gap: 0.15rem;
    }
    .nav-link {
        padding: 0.4rem 0.5rem;
    }
}

.header-actions a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.cart-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border: none;
    color: #fff;
    padding: 0.5rem 1.15rem;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
    height: 40px;
}

.cart-btn:hover {
    transform: translateY(-1px);
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: rgba(15, 23, 42, 0.9);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
}

.cart-btn .pill {
    background: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.95);
}

/* Main Content */
.site-main {
    flex: 1 0 auto;
    padding: 2rem 0;
    background-color: var(--background-light);
}

/* Ensure articles have bottom spacing */
.show-review {
    padding-bottom: 3rem;
}

.show-home {
    padding-top: 0.5rem;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.35rem;
    margin-top: 1.25rem;
}

@media (min-width: 640px) {
    .show-home .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .show-home .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-card {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 16px;
}

.product-image .media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    padding: 0;
    min-height: 0;
}

.product-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.product-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.show-department .product-actions-row {
    margin-top: 0.85rem;
}

.show-department .btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.85rem;
}

.show-department .btn--primary {
    padding: 0.45rem 0.95rem;
}

.product-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111827;
}

.product-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-brand {
    margin: 0;
    color: #6b7280;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.product-sku {
    margin: 0;
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-info .price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-green);
    margin: 0.2rem 0 0.4rem 0;
}

.add-btn {
    height: 48px;
    background: linear-gradient(135deg, #10b981, #0d9488);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 150ms ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
    white-space: nowrap;
}

.add-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.45);
}

.product-actions .btn.product-details-btn {
    background: transparent;
    border: 1.5px solid #e5e5e5;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.15s ease;
}

.product-actions .btn.product-details-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.product-buy-actions {
    display: grid;
    gap: 0.6rem;
    margin-top: 0.85rem;
}

.product-buy-actions .btn {
    width: 100%;
}

.product-buy-actions .btn {
    height: 44px;
    border-radius: 999px;
    font-weight: 900;
}

#product-go-cart {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.12);
}

.product-panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

@media (min-width: 900px) {
    .product-panels {
        grid-template-columns: 1fr 1fr;
    }
}

.product-panel {
    padding: 1rem;
}

.product-page .product-description {
    margin: 0;
    color: rgba(15, 23, 42, 0.62);
    line-height: 1.6;
}

.panel-title {
    margin: 0 0 0.75rem 0;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 1rem;
    color: rgba(15, 23, 42, 0.92);
}

.details-list {
    display: grid;
    gap: 0.6rem;
}

.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(15, 23, 42, 0.02);
}

.detail-label {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.62);
}

.detail-value {
    font-weight: 900;
    font-size: 0.9rem;
    color: rgba(15, 23, 42, 0.92);
}

.product-details h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-meta {
    margin-bottom: 2rem;
}

.product-meta .weight {
    color: var(--text-light);
    font-size: 1.1rem;
}

.product-meta .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-top: 0.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.quantity-selector button {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 0.5rem;
}

.add-to-cart-btn {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
}



.section-block {
    margin-top: 2.1rem;
}

.show-product .section-block {
    margin-top: var(--s7);
    margin-bottom: var(--s7);
}

.section-subtext {
    margin: 0 0 1rem 0;
    color: rgba(15, 23, 42, 0.65);
    font-weight: 500;
}

.show-home .section-subtext {
    margin-bottom: 1.15rem;
}

.show-home .section-title {
    font-size: 1.05rem;
}

.section-title {
    text-align: left;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    position: relative;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: "";
    display: none;
}



/* Placeholders */
.media-placeholder,
.thumb-placeholder,
.icon-placeholder,
.avatar-placeholder {
    background-color: #F1F3F5;
    border: 2px dashed #C5C9CD;
    color: #8C9196;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    padding: 1rem;
    min-height: 90px;
}

.thumb-placeholder {
    min-height: 70px;
}

.icon-placeholder {
    width: 64px;
    height: 64px;
    margin: 0 auto 0.75rem auto;
    border-radius: 50%;
}

.avatar-placeholder {
    width: 84px;
    height: 84px;
    margin: 0 auto 0.75rem auto;
    border-radius: 50%;
}

/* Product Page Extras */
.breadcrumb {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.item-code {
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
}



/* Forms */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 2rem;
}

.form-container input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.submit-btn {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.auth-wrap {
    max-width: 520px;
    margin: 0 auto;
}

.auth-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    padding: 2rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-title {
    margin: 0 0 0.4rem 0;
    font-size: 1.8rem;
}

.auth-subtitle {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.input-group {
    position: relative;
    margin-bottom: 1rem;
}

.input-group input {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    background-color: #F8F9FA;
}

.auth-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
}

.auth-actions a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.auth-actions a:hover {
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    height: 1px;
    background-color: var(--border-light);
    flex: 1;
}

.auth-cta {
    text-align: center;
    margin-top: 0.5rem;
}

.auth-cta a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.auth-cta a:hover {
    text-decoration: underline;
}

.form-links {
    margin-top: 0.75rem;
    text-align: center;
}

.form-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-link:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 2.25rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr auto 1fr;
        align-items: start;
    }
}

.footer-logo {
    font-weight: 900;
    color: rgba(15, 23, 42, 0.92);
    letter-spacing: -0.03em;
    font-size: 0.95rem;
    line-height: 1.25;
}

.footer-brand p {
    margin: 0.35rem 0 0 0;
    color: rgba(15, 23, 42, 0.62);
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 42ch;
}

.footer-col h4 {
    margin: 0;
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: -0.03em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0.35rem 0 0 0;
}

.footer-col li {
    margin: 0.25rem 0;
}

.footer-col a {
    color: rgba(15, 23, 42, 0.62);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

.footer-col a:hover {
    color: rgba(15, 23, 42, 0.92);
}

.footer-col p {
    margin: 0.35rem 0 0 0;
    color: rgba(15, 23, 42, 0.62);
    font-weight: 600;
    font-size: 0.85rem;
}

@media (min-width: 900px) {
    .footer-col:nth-child(2) {
        justify-self: center;
        text-align: left;
    }
    .footer-col:nth-child(3) {
        justify-self: end;
        text-align: left;
    }
}

.cart-btn {
    background: transparent;
    border: 1px solid transparent;
    color: rgba(15, 23, 42, 0.82);
    padding: 0.45rem 0.6rem;
    border-radius: 999px;
    font-weight: 700;
    min-width: 0;
    height: auto;
    box-shadow: none;
}

.cart-btn:hover {
    transform: none;
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.08);
}

.cart-btn .pill {
    background: rgba(15, 23, 42, 0.08);
    color: rgba(15, 23, 42, 0.9);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: rgba(15, 23, 42, 0.72);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-green);
}

.footer-links h4 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: "";
    display: block;
    height: 2px;
    width: 90px;
    background-color: rgba(15, 23, 42, 0.16);
    margin-top: 0.35rem;
    border-radius: 999px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(15, 23, 42, 0.72);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-newsletter h4 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-newsletter h4::after {
    content: "";
    display: block;
    height: 2px;
    width: 110px;
    background-color: rgba(255,255,255,0.8);
    margin-top: 0.35rem;
    border-radius: 999px;
}

.footer-newsletter p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 999px;
}

.subscribe-btn {
    background-color: var(--light-green);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
}

.footer-legal {
    margin-top: 1rem;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}

/* Order Summary */
.order-summary {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-green);
    border-top: 2px solid var(--border-light);
    padding-top: 1rem;
}

/* Locations */
.locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    text-align: center;
}

/* Responsive Design */


/* Legacy Classes for Compatibility */
.pink {
    background-color: pink;
}

.paleblue {
    background-color: paleturquoise;
}

.red {
    background-color: red;
}

.blue {
    background-color: blue;
}

.header_background {
    background-color: red;
}

.callout {
    border: none;
}

.splash {
    display: block;
}

/* Checkout Flow - Confirmation Page */
.eg-card--centered {
    text-align: center;
}

.eg-confirmation-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    font-size: 40px;
    line-height: 80px;
    text-align: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

/* Location Cards */
.location-card .eg-section-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.location-card .eg-text {
    margin-bottom: 0.25rem;
}

/* Form Layout Utilities */
.eg-actions-right {
    display: flex;
    gap: var(--s3);
    justify-content: flex-end;
    flex-wrap: wrap;
}

.eg-stack {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

.eg-summary {
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}

.eg-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eg-summary-row--total {
    border-top: 1px solid var(--line);
    padding-top: var(--s3);
    margin-top: var(--s2);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Search Page */
.eg-searchbar-large {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
}

.eg-searchbar-large input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Advanced Search Page */
.show-search select.eg-input {
    appearance: auto;
    padding-right: 2rem;
    background-image: none;
}

.show-search-results .eg-h2 {
    margin-bottom: 0.5rem;
}

#adv-search-results .cell {
    margin-bottom: var(--s4);
}

#adv-search-results .eg-card {
    height: 100%;
}

#header-search-results {
    min-height: 200px;
}

/* User Dropdown Menu */
.eg-user-menu {
    position: relative;
    display: inline-block;
}

.eg-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.eg-user-avatar:hover {
    transform: scale(1.05);
}

.eg-user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 1rem 0;
    z-index: 100;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.eg-user-dropdown.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.eg-user-info {
    padding: 0 1rem 0.75rem;
}

.eg-user-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.eg-user-email {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

.eg-user-divider {
    height: 1px;
    background: var(--line);
    margin: 0.5rem 0;
}

.eg-user-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eg-user-links li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.15s ease;
}

.eg-user-links li a:hover {
    background: var(--background-light);
}

.eg-user-links li a i {
    width: 18px;
    text-align: center;
    color: var(--text-light);
}

.eg-user-logout {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

.eg-user-logout:hover {
    color: #ef4444;
}

.eg-user-logout i {
    width: 18px;
    text-align: center;
}

/* Dark Theme */
[data-theme="dark"] {
    --text-dark: #f1f5f9;
    --text-light: #94a3b8;
    --text-muted: #64748b;
    --line: #334155;
    --line-subtle: #1e293b;
    --background-light: #0f172a;
    --white: #1e293b;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] body {
    background: #0f172a;
    color: #f1f5f9;
}

[data-theme="dark"] .eg-topbar {
    background: #1e293b;
    border-bottom-color: #334155;
}

[data-theme="dark"] .eg-footer {
    background: #1e293b;
    border-top-color: #334155;
}

[data-theme="dark"] .eg-card {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .eg-input {
    background: #0f172a;
    border-color: #334155;
    color: #f1f5f9;
}

[data-theme="dark"] .eg-input::placeholder {
    color: #64748b;
}

[data-theme="dark"] .eg-btn--ghost {
    background: transparent;
    border-color: #334155;
    color: #f1f5f9;
}

[data-theme="dark"] .eg-btn--ghost:hover {
    background: #334155;
}

[data-theme="dark"] .eg-user-dropdown {
    background: #1e293b;
    border: 1px solid #334155;
}

[data-theme="dark"] .eg-user-links li a:hover {
    background: #334155;
}

[data-theme="dark"] #departments-dropdown {
    background: #1e293b;
    border: 1px solid #334155;
}

[data-theme="dark"] #departments-dropdown a:hover {
    background: #334155;
}

[data-theme="dark"] .location-dropdown {
    background: #1e293b;
    border: 1px solid #334155;
}

[data-theme="dark"] .location-dropdown a:hover {
    background: #334155;
}

[data-theme="dark"] .show-search-results,
[data-theme="dark"] .show-department {
    background: #0f172a;
}

[data-theme="dark"] .eg-panel {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
