﻿/* =========================================================
   BASE / GLOBAL
   ========================================================= */

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
}

main {
    overflow: visible;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.muted {
    color: #6b7280;
    font-weight: 700;
}

/* =========================================================
   BUTTONS / FORM STATES
   ========================================================= */

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid transparent;
}

.btn {
    background: #fff;
    color: #111827;
    border-color: #d1d5db;
}

    .btn:hover {
        background: #f3f4f6;
    }

.btn-primary {
    background: #111827;
    color: #fff;
    border-color: #111827;
    height: 38px;
    padding: 0 14px;
    font-weight: 600;
}

    .btn-primary:hover {
        opacity: .92;
    }

.btn-dark {
    background: #111827;
    color: #fff;
}

.btn-light {
    background: #fff;
    color: #111827;
    border-color: #d1d5db;
}

.btn-featured {
    height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #fff;
    font-weight: 600;
}

    .btn-featured:hover {
        background: #f3f4f6;
    }

/* =========================================================
   IMAGE / PHOTO MODALS
   ========================================================= */

.img-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
}

    .img-modal.is-open {
        display: block;
    }

.img-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
}

.img-modal-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.img-modal-img {
    max-width: 95vw;
    max-height: 92vh;
    border-radius: 10px;
    background: #fff;
    object-fit: contain;
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.img-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,.9);
    font-size: 28px;
    line-height: 44px;
    cursor: pointer;
}

    .img-modal-close:hover {
        background: #fff;
    }

/* =========================================================
   Detail Photo slider
   ========================================================= */
.inv-details-hero-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 540px;
    padding: 24px;
    border: 1px solid #d9dee7;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.inv-details-hero {
    display: block;
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: zoom-in;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: #0f172a;
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background 120ms ease, box-shadow 120ms ease;
}

    .hero-nav:hover {
        background: #ffffff;
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    }

.hero-prev {
    left: 16px;
}

.hero-next {
    right: 16px;
}

.inv-details-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.inv-details-thumb {
    width: 110px;
    height: 78px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
    transition: border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
}

    .inv-details-thumb:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.10);
    }

    .inv-details-thumb.is-active {
        border-color: #1e3a8a;
        box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.12);
    }

.photo-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.88);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.photo-modal-content {
    max-width: min(92vw, 1400px);
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
}

.photo-close {
    position: absolute;
    top: 18px;
    right: 22px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 2100;
}

.photo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2100;
}

    .photo-nav:hover {
        background: rgba(255,255,255,0.26);
    }

.photo-prev {
    left: 24px;
}

.photo-next {
    right: 24px;
}



/* =========================================================
   DASHBOARD
   ========================================================= */

.dash {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 12px;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 14px;
}

.dash-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: .2px;
}

.dash-sub {
    margin-top: 2px;
    color: #6b7280;
}

.dash-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dash-grid {
    display: grid;
    grid-template-columns: 1.4fr .9fr;
    gap: 12px;
}

.card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.panel {
    padding: 14px;
}

.panel-title {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
    color: #111827;
}

.kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
    gap: 16px;
    margin-top: 16px;
    margin-bottom: 12px;
}

.kpi {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90px;
    padding: 18px 16px;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    transition: all .15s ease;
}

    .kpi:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0,0,0,.08);
    }

.kpi-center {
    text-align: center;
}

.kpi-label {
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-align: center;
    color: #6b7280;
}

.kpi-value {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    color: #111827;
}

.kpi-meta {
    margin-top: 4px;
    font-size: 12px;
    text-align: center;
    color: #6b7280;
}

.kpi-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.kpi-tile {
    display: block;
    min-width: 240px;
    flex: 1 1 240px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(17,24,39,.04);
}

    .kpi-tile:hover {
        transform: translateY(-1px);
        border-color: #d1d5db;
        box-shadow: 0 6px 18px rgba(17,24,39,.08);
    }

.kpi-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.kpi-number {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.kpi-sub {
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
}

.kpi-badge {
    padding: 3px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #f9fafb;
    font-size: 12px;
    color: #374151;
}

.kpi-tile--warn {
    border-color: #f3d08a;
    background: #fffbeb;
}

    .kpi-tile--warn .kpi-badge {
        border-color: #f3d08a;
        background: #fff7dd;
    }

.alert-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #111827;
    text-decoration: none;
}

    .alert-item:hover {
        background: #f9fafb;
    }

.alert-name {
    font-weight: 800;
}

.alert-desc {
    margin-top: 2px;
    font-size: 12px;
    color: #6b7280;
}

.alert-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-weight: 800;
}

.quick {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-item {
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #111827;
    text-decoration: none;
}

    .quick-item:hover {
        background: #f9fafb;
    }

.quick-desc {
    margin-top: 2px;
    font-size: 12px;
    color: #6b7280;
}

.panel-footer {
    margin-top: 10px;
    font-size: 12px;
    color: #6b7280;
}

.desc-block {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.desc-title {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 800;
    color: #111827;
}

.desc-text {
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    white-space: pre-wrap;
    line-height: 1.55;
}

.aging-card {
    padding: 18px;
}

.aging-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.aging-label {
    color: #555;
}

.aging-value {
    font-weight: 600;
}

.aging-danger .aging-value {
    color: #b91c1c;
    font-weight: 700;
}

.aging-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 14px;
    color: inherit;
    text-decoration: none;
}

    .aging-row:hover {
        background: #f3f4f6;
    }

.audit-card {
    margin-top: 16px;
}

.audit-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.audit-title {
    margin: 0;
    font-size: 18px;
}

.audit-sub {
    font-size: 12px;
    color: #6b7280;
}

.audit-timeline {
    margin-top: 10px;
    padding-left: 14px;
    border-left: 2px solid #e5e7eb;
}

.audit-row {
    position: relative;
    padding: 10px 0;
}

.audit-dot {
    position: absolute;
    top: 14px;
    left: -22px;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #111827;
    box-shadow: 0 0 0 2px #e5e7eb;
}

.audit-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #6b7280;
}

    .audit-meta b {
        color: #111827;
        font-weight: 600;
    }

.audit-action {
    font-weight: 700;
    letter-spacing: .02em;
}

.audit-field {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 12px;
}

.audit-change {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 6px;
}

.audit-box {
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fafafa;
}

.audit-label {
    margin-bottom: 4px;
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #6b7280;
}

.audit-val {
    white-space: pre-wrap;
    word-break: break-word;
    font-size: 13px;
    color: #111827;
}

.audit-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    font-size: 12px;
    color: #374151;
}

    .audit-pill .muted {
        color: #6b7280;
        font-weight: 500;
    }

/* =========================================================
   INVENTORY DETAILS PAGE
   ========================================================= */

.inv-details-page {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inv-details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.inv-details-title {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
}

.inv-details-subtitle {
    margin-top: 4px;
    font-size: 14px;
    color: #6b7280;
}

.inv-details-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.inv-details-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.inv-details-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    font-size: 12px;
    color: #111827;
}

    .inv-details-pill.is-on {
        background: #ecfdf5;
        border-color: #a7f3d0;
        color: #065f46;
    }

    .inv-details-pill.is-off {
        background: #fef2f2;
        border-color: #fecaca;
        color: #991b1b;
    }

    .inv-details-pill.is-featured {
        background: #eff6ff;
        border-color: #bfdbfe;
        color: #1d4ed8;
    }

.inv-details-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 1fr);
    gap: 18px;
    align-items: start;
}

.inv-details-photo-card,
.inv-details-info-card,
.inv-details-desc-card,
.inv-details-admin-card {
    padding: 16px;
}

.inv-details-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inv-details-card-title {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 800;
    color: #111827;
}



.inv-details-empty {
    padding: 32px;
    text-align: center;
    color: #6b7280;
}


.inv-details-kv {
    display: grid;
    grid-template-columns: 140px 1fr;
    row-gap: 10px;
    column-gap: 12px;
}

    .inv-details-kv .k {
        color: #6b7280;
        font-weight: 600;
    }

    .inv-details-kv .v {
        color: #111827;
    }

.inv-details-desc-text {
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f9fafb;
    white-space: pre-wrap;
    line-height: 1.6;
    color: #111827;
}

.cost-hidden {
    filter: blur(6px);
    user-select: none;
}

.cost-toggle-btn {
    margin-left: 8px;
    padding: 2px 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    font-size: 12px;
    cursor: pointer;
}

    .cost-toggle-btn:hover {
        background: #f3f4f6;
    }

.inv-admin-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inv-admin-btn {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

    .inv-admin-btn:hover {
        background: #f9fafb;
    }

.inv-admin-btn-green {
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.inv-admin-btn-red {
    background: #fef2f2;
    border-color: #fecaca;
}

.inv-details-qr-card {
    margin-top: 0;
}

.inv-details-qr-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0 14px;
}

.inv-details-qr-img {
    width: 170px;
    height: 170px;
    display: block;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
}

.inv-details-qr-link {
    text-align: center;
    margin-bottom: 8px;
}

    .inv-details-qr-link a {
        font-weight: 700;
        text-decoration: none;
        color: #111827;
    }

        .inv-details-qr-link a:hover {
            text-decoration: underline;
        }

.inv-details-qr-actions {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inv-details-qr-url {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.4;
    color: #6b7280;
    word-break: break-all;
    text-align: center;
}

.inv-details-desc-card,
.inv-details-dealer-notes-card {
    margin-top: 16px;
}

.inv-details-desc-text,
.inv-details-dealer-notes {
    line-height: 1.6;
    color: #374151;
}

.inv-details-dealer-notes {
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px;
}

.inv-details-bottom-card {
    grid-column: 1 / 2;
    margin-top: 18px;
    padding: 18px 22px;
}

.inv-details-bottom-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    padding: 16px;
}

.inv-details-bottom-section {
    padding-right: 24px;
}

.inv-details-dealer-notes-section {
    border-left: 1px solid #e5e7eb;
    padding-left: 24px;
}

.inv-details-dealer-notes-list {
    margin: 0;
    padding-left: 18px;
}

    .inv-details-dealer-notes-list li {
        margin-bottom: 6px;
    }

.inv-details-left-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.similar-equipment-section {
    width: 100%;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #d1d5db;
}

.similar-equipment-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 24px 0;
}

.similar-equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.similar-equipment-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.similar-equipment-image-link {
    display: block;
    aspect-ratio: 4 / 3;
    background: #f9fafb;
    overflow: hidden;
}

.similar-equipment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.similar-equipment-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.similar-equipment-card-title {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0;
}

    .similar-equipment-card-title a {
        color: #111827;
        text-decoration: none;
    }

        .similar-equipment-card-title a:hover {
            color: #0057b8;
        }

.similar-equipment-meta {
    display: grid;
    gap: 8px;
    color: #4b5563;
    font-size: 14px;
}

.similar-equipment-actions {
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

    .similar-equipment-actions .btn,
    .similar-equipment-actions a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

.public-equipment-similar-wrap {
    width: 100%;
    box-sizing: border-box;
    margin-top: 40px;
}

/* =========================================================
   PUBLIC SITE LAYOUT
   ========================================================= */

.public-site {
    background: #fff;
    color: #111827;
}

.top-banner {
    width: 100%;
    background: #111827;
    color: #ffffff;
}

.top-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .3px;
    text-align: center;
}

.topbar {
    background: #152845;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 40px;
}

.public-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.public-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1240px;
    margin: auto;
    padding: 8px 20px;
}

.public-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

    .public-logo img {
        width: auto;
        height: 95px;
        display: block;
    }

.public-header-tools {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.store-switcher-label {
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #6b7280;
}

.store-switcher-select {
    height: 40px;
    padding: 0 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.store-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 280px;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f9fafb;
}

.store-info-name {
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: 800;
    color: #111827;
}

.store-info-line {
    font-size: 14px;
    line-height: 1.4;
    color: #374151;
}

.store-info-link {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}

    .store-info-link:hover {
        text-decoration: underline;
    }

.public-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
}

    .public-nav a {
        position: relative;
        padding-bottom: 6px;
        color: #1f2937;
        font-size: 22px;
        font-weight: 600;
        line-height: 1;
        text-decoration: none;
    }

        .public-nav a:hover {
            color: #000;
        }

        .public-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: #111827;
            transition: width .2s ease;
        }

        .public-nav a:hover::after {
            width: 100%;
        }

.nav-home {
    display: flex;
    align-items: center;
}

    .nav-home svg {
        display: block;
        width: 28px;
        height: 28px;
        transition: transform .15s ease;
    }

    .nav-home:hover svg {
        transform: scale(1.1);
    }

/* =========================================================
   STOTZ-STYLE HEADER UPDATE
   ========================================================= */

.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

.header-utility {
    padding: 10px 0 8px;
    background: #fff;
}

.utility-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.utility-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 13px;
    color: #4b5563;
    font-weight: 600;
}

.utility-item {
    white-space: nowrap;
}

.utility-sep {
    margin: 0 10px;
    color: #c7cdd4;
}

.site-logo img {
    height: 44px;
    width: auto;
    display: block;
    transition: transform .15s ease, opacity .15s ease;
}

.site-logo:hover img {
    transform: scale(1.05);
    opacity: .94;
}

.header-divider {
    border-top: 1px solid #e5e7eb;
    margin-top: 6px;
}

.top-accent-bar {
    height: 1px;
    width: 100%;
    background: #9ca3af;
}

.header-mainnav {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #9ca3af;
}

.mainnav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 52px;
    margin: 0;
    padding: 0;
}

    .mainnav-list li {
        margin: 0;
        padding: 0;
    }

    .mainnav-list a {
        display: inline-block;
        text-decoration: none;
        color: #111827;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: .01em;
        padding: 4px 0;
        border-bottom: 2px solid transparent;
        transition: color .15s ease, border-color .15s ease;
    }

        .mainnav-list a:hover {
            color: #0d6efd;
            border-bottom-color: #0d6efd;
        }

        .mainnav-list a.active {
            color: #111827;
            border-bottom-color: #111827;
        }

.site-header .header-shell {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 420px;
    align-items: center;
    column-gap: 16px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px 20px;
}

.site-header .header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.site-header .site-logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

    .site-header .site-logo img {
        width: auto;
        height: 95px;
        display: block;
    }

.site-header .header-center {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.site-header .main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
    min-width: 0;
    white-space: nowrap;
}

    .site-header .main-nav a {
        color: #1f2937;
        font-size: 18px;
        font-weight: 600;
        line-height: 1;
        text-decoration: none;
    }

.site-header .nav-home {
    display: inline-flex;
    align-items: center;
}

    .site-header .nav-home svg {
        display: block;
        width: 26px;
        height: 26px;
    }

.site-header .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 0;
}

.site-header .store-switcher {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    height: 64px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

    .site-header .store-switcher label {
        margin-bottom: 2px;
        font-size: 11px;
        font-weight: 700;
        color: #666;
    }

    .site-header .store-switcher select {
        height: 32px;
        padding: 0 8px;
        border: none;
        outline: none;
        background: transparent;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }

.site-header .store-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 250px;
    height: 64px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    line-height: 1.2;
}

.site-header .store-info-name {
    font-weight: 700;
}

.site-header .store-info-line {
    font-size: 13px;
    white-space: nowrap;
}

.site-header .store-info-link {
    margin-top: 6px;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

    .site-header .store-info-link:hover {
        text-decoration: underline;
    }

.mobile-menu-toggle {
    display: none;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/* =========================================================
   GENERAL HERO / FEATURED / CONTENT SECTIONS
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    min-height: 560px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    transition: opacity .3s ease;
}

    .hero-slide.is-active {
        position: relative;
        opacity: 1;
        pointer-events: auto;
    }

    .hero-slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.2));
    }

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 110px;
    padding-bottom: 110px;
    color: #fff;
}

.hero-kicker,
.section-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6b7280;
}

.hero .hero-kicker {
    color: #e5e7eb;
}

.hero h1 {
    margin: 10px 0 14px;
    max-width: 760px;
    font-size: 54px;
    line-height: 1.04;
}

.hero p {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}



    .hero-nav button,
    .featured-nav button {
        width: 44px;
        height: 44px;
        border: 1px solid #d1d5db;
        border-radius: 10px;
        background: #fff;
        font-size: 20px;
        cursor: pointer;
    }

.featured-section,
.welcome-section {
    padding-top: 54px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 18px;
}

    .section-head h2 {
        margin: 6px 0 0;
        font-size: 34px;
        line-height: 1.1;
    }

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.featured-card.is-hidden {
    display: none;
}

.featured-image-wrap {
    aspect-ratio: 4 / 3;
    background: #f9fafb;
}

.featured-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-body {
    padding: 16px;
}

.featured-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.featured-price {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 800;
}

.category-band {
    margin-top: 54px;
    padding: 56px 0;
    background: #f7f7f8;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.category-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 104px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 26px;
    align-items: center;
}

.welcome-media img {
    display: block;
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.welcome-copy h2 {
    margin: 10px 0 14px;
    font-size: 40px;
}

.welcome-copy p {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
}

.locations-strip {
    padding: 60px 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.location-card {
    padding: 22px;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
}

    .location-card h3 {
        margin: 0 0 12px;
        font-size: 24px;
    }

.location-phone {
    margin: 4px 0;
    font-weight: 600;
}

    .location-phone a {
        font-weight: 600;
        text-decoration: none;
        color: #111827;
    }

        .location-phone a:hover {
            text-decoration: underline;
        }

.location-address {
    margin-bottom: 12px;
    color: #4b5563;
    line-height: 1.5;
}

.location-links {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

    .location-links a,
    .text-link,
    .footer-links a {
        color: #111827;
        font-weight: 700;
        text-decoration: none;
    }

    .location-links a {
        font-weight: 600;
    }

.location-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .location-map-link svg {
        opacity: .8;
    }

/* =========================================================
   HOME PAGE
   ========================================================= */

.home-page {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 24px 0 40px 0;
}

.home-hero {
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
}

.home-hero-inner {
    padding: 56px 32px;
}

.home-hero-content {
    max-width: 720px;
}

.home-eyebrow,
.home-section-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .8;
}

.home-hero-title {
    margin: 10px 0 12px 0;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 800;
}

.home-hero-text {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.6;
    opacity: .95;
}

.home-hero-actions {
    margin-top: 18px;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

.home-btn-primary {
    background: #fff;
    color: #111827;
}

    .home-btn-primary:hover {
        background: #f3f4f6;
        text-decoration: none;
    }

.home-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 14px;
}

.home-section-title {
    margin: 4px 0 0 0;
    font-size: 28px;
    font-weight: 800;
    color: #111827;
}

.home-featured-nav {
    display: flex;
    gap: 8px;
}

.home-slider-btn {
    width: 42px;
    height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

    .home-slider-btn:disabled {
        opacity: .4;
        cursor: default;
    }

.home-featured-slider {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-feature-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

    .home-feature-card.is-hidden {
        display: none;
    }

.home-feature-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    background: #f9fafb;
}

.home-feature-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-feature-image-placeholder {
    font-size: 14px;
    color: #6b7280;
}

.home-feature-body {
    padding: 14px;
}

.home-feature-title {
    min-height: 40px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #111827;
}

.home-feature-price {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

.home-empty-state {
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f9fafb;
    color: #6b7280;
}

.home-condition-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-condition-tile {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 280px;
    border-radius: 18px;
    color: #fff;
    text-decoration: none;
}

.home-condition-image-wrap {
    position: absolute;
    inset: 0;
}

.home-condition-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-condition-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    padding: 22px;
    background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,.15));
}

.home-condition-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

/* =========================================================
   QUICK ACTIONS
   ========================================================= */

.promo-hero {
    margin-top: 24px;
    margin-bottom: 24px;
}

.quick-actions-wrap {
    margin: 36px 0;
}

.quick-actions {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
    gap: 28px;
}

.quick-card {
    position: relative;
    flex: 1;
    min-height: 120px;
    padding: 26px 70px 26px 26px;
    border: 1px solid #d9dde3;
    border-radius: 6px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,.04);
    transition: all .18s ease;
}

    .quick-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 22px rgba(0,0,0,.08);
    }

.quick-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
}

.quick-sub {
    margin-top: 6px;
    font-size: 14px;
    color: #6b7280;
}

.quick-card::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 1px solid #cfd6de;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    background: #fff;
    transition: all .18s ease;
}

.quick-card:hover::after {
    transform: translateY(-50%) translateX(3px);
    border-color: #111827;
}

/* =========================================================
   PROMO HERO
   ========================================================= */

.promo-slider {
    position: relative;
    height: 420px;
    width: 100%;
    overflow: hidden;
}

.promo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
}

    .promo-slide.is-active {
        opacity: 1;
    }

.promo-slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.promo-slider-nav {
    position: absolute;
    inset: 50% 0 auto 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 18px;
    z-index: 3;
    pointer-events: none;
}

.promo-nav-btn {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: rgba(0,0,0,.38);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

    .promo-nav-btn:hover {
        background: rgba(0,0,0,.55);
        transform: scale(1.05);
    }

.promo-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.promo-dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
    padding: 0;
}

    .promo-dot:hover {
        background: rgba(255,255,255,.8);
        transform: scale(1.1);
    }

    .promo-dot.is-active {
        background: #fff;
    }

/* =========================================================
   EQUIPMENT CATEGORY SLIDER
   ========================================================= */

.equipment-tiles {
    background: #fff;
    padding: 42px 0 46px;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.equipment-tiles-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.equipment-tiles-header {
    text-align: center;
    margin-bottom: 28px;
}

    .equipment-tiles-header h2 {
        margin: 0;
        font-size: 30px;
        font-weight: 700;
        color: #111827;
    }

.equipment-slider-wrap {
    position: relative;
    padding: 0 72px;
}

.equipment-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.equipment-tiles-row {
    display: flex;
    gap: 28px;
    transition: transform .35s ease;
    will-change: transform;
}

.equipment-tile {
    flex: 0 0 calc((100% - 28px * 4) / 5);
    min-width: 180px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 10px 10px 6px;
    transition: transform .18s ease;
}

    .equipment-tile:hover {
        transform: translateY(-3px);
    }

.equipment-tile-img {
    width: 100%;
    max-width: 180px;
    height: 110px;
    object-fit: contain;
    display: block;
    margin-bottom: 14px;
}

.equipment-tile-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: #111827;
}

.equipment-tile:hover .equipment-tile-label {
    color: #166534;
}

.equipment-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,.10);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    z-index: 5;
}

    .equipment-arrow:hover {
        transform: translateY(-50%) scale(1.03);
        box-shadow: 0 6px 16px rgba(0,0,0,.14);
        background: #f9fafb;
    }

.equipment-arrow-left {
    left: 0;
}

.equipment-arrow-right {
    right: 0;
}

.equipment-arrow:disabled {
    opacity: .45;
    cursor: default;
    box-shadow: none;
}

/* =========================================================
   FEATURED EQUIPMENT
   ========================================================= */

.featured-equipment-section {
    width: 100%;
    background-color: #f3f4f6 !important;
    padding: 60px 0;
}

.featured-equipment-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    background: transparent !important;
}

.featured-equipment-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
}

    .featured-equipment-header h2 {
        margin: 0 0 6px;
        font-size: 34px;
        font-weight: 700;
        color: #111827;
    }

    .featured-equipment-header p {
        margin: 0;
        font-size: 15px;
        color: #4b5563;
    }

.featured-equipment-viewall {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    color: #111827;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: border-color .18s ease, transform .18s ease;
}

    .featured-equipment-viewall:hover {
        border-color: #111827;
        transform: translateY(-1px);
    }

.featured-slider-wrap {
    position: relative;
    padding: 0 72px;
}

.featured-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.featured-slider-track {
    display: flex;
    gap: 24px;
    transition: transform .45s ease;
    will-change: transform;
}

.featured-card {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 260px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
    color: inherit;
    text-decoration: none;
}

    .featured-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 28px rgba(0,0,0,.10);
    }

.featured-card-image-link {
    position: relative;
    display: block;
    height: 230px;
    background: #fff;
    overflow: hidden;
}

.featured-hours-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.75);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .2px;
    box-shadow: 0 4px 10px rgba(0,0,0,.18);
}

.featured-condition-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.75);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .2px;
    box-shadow: 0 4px 10px rgba(0,0,0,.18);
}

.featured-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    background: #fff;
    transition: transform .28s ease;
}

.featured-card:hover .featured-card-img {
    transform: scale(1.03);
}

.featured-card-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.featured-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.featured-badge,
.featured-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.featured-badge {
    background: #eef2ff;
    color: #1f2937;
}

.featured-status {
    background: #f3f4f6;
    color: #374151;
}

.featured-card-title {
    margin: 0;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

    .featured-card-title a {
        color: #111827;
        text-decoration: none;
        display: block;
    }

.featured-card-specs {
    font-size: 14px;
    color: #6b7280;
    min-height: 28px;
}

.featured-card-price {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin-top: 0;
}

.featured-call {
    font-size: 22px;
    font-weight: 700;
}

.featured-card-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background .2s ease, transform .2s ease;
}

    .featured-card-btn:hover {
        background: #000;
        transform: translateY(-1px);
    }

.featured-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
}

.featured-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,.10);
    z-index: 5;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

    .featured-arrow:hover {
        transform: translateY(-50%) scale(1.04);
        box-shadow: 0 8px 18px rgba(0,0,0,.14);
        background: #f9fafb;
    }

.featured-arrow-left {
    left: 0;
}

.featured-arrow-right {
    right: 0;
}

.featured-arrow:disabled {
    opacity: .45;
    cursor: default;
    box-shadow: none;
}

/* =========================================================
   HOME CTA BAND
   ========================================================= */

.home-cta-band {
    background: #ffffff;
    padding: 70px 0;
}

.home-cta-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-cta-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.05);
    transition: transform .18s ease, box-shadow .18s ease;
}

    .home-cta-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 28px rgba(0,0,0,.10);
    }

.home-cta-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.home-cta-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.home-cta-card p {
    margin: 0 0 18px;
    font-size: 15px;
    color: #6b7280;
}

.home-cta-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background .18s ease;
}

    .home-cta-btn:hover {
        background: #000;
    }

/* =========================================================
   HOME BRANDS
   ========================================================= */

.home-brands {
    background: #f9fafb;
    padding: 60px 0;
}

.home-brands-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
    text-align: center;
}

.home-brands-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #111827;
}

.home-brands-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

    .home-brands-row img {
        height: 40px;
        width: auto;
        opacity: .85;
        transition: opacity .2s ease, transform .2s ease;
    }

        .home-brands-row img:hover {
            opacity: 1;
            transform: translateY(-2px);
        }

.home-brands-section {
    max-width: 1280px;
    margin: 32px auto 48px;
    padding: 0 24px;
}

.home-brands-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111827;
}

.home-brand-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-brand-chip {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.15s ease;
}

    .home-brand-chip:hover {
        border-color: #111827;
        background: #111827;
        color: #ffffff;
    }

    .home-brand-chip.is-top-brand {
        border-color: #111827;
        background: #f9fafb;
        font-weight: 700;
    }

        .home-brand-chip.is-top-brand:hover {
            background: #111827;
            color: #ffffff;
        }

.home-brand-chip-all {
    border-color: #111827;
    background: #111827;
    color: #ffffff;
    font-weight: 700;
}

    .home-brand-chip-all:hover {
        background: #000000;
        border-color: #000000;
        color: #ffffff;
    }

.home-brands-divider {
    margin: 14px 0 10px;
    height: 1px;
    background: #e5e7eb;
}

.home-brands-actions {
    display: flex;
    justify-content: center;
}

/* =========================================================
   HOME SEARCH STRIP
   ========================================================= */

.home-search-strip {
    position: relative;
    margin-top: 36px;
}

.home-search-strip-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.home-search-form {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1fr 1.5fr auto;
    gap: 16px;
    align-items: end;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.home-search-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .home-search-field label {
        font-size: 13px;
        font-weight: 700;
        color: #374151;
    }

    .home-search-field select,
    .home-search-field input {
        width: 100%;
        min-height: 46px;
        border: 1px solid #d1d5db;
        border-radius: 10px;
        padding: 0 14px;
        font-size: 15px;
        color: #111827;
        background: #fff;
    }

        .home-search-field select:focus,
        .home-search-field input:focus {
            outline: none;
            border-color: #9ca3af;
            box-shadow: 0 0 0 3px rgba(156,163,175,.18);
        }

.home-search-field-keyword input {
    padding-right: 14px;
}

.home-search-actions {
    display: flex;
}

.home-search-btn {
    min-height: 46px;
    padding: 0 22px;
    border: none;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s ease, transform .2s ease;
}

    .home-search-btn:hover {
        background: #000;
        transform: translateY(-1px);
    }

.home-inventory-search {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 2fr auto;
    gap: 14px;
    align-items: end;
    max-width: 1100px;
    margin: 0 auto;
}

    .home-inventory-search .form-group {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .home-inventory-search input,
    .home-inventory-search select {
        height: 40px;
        padding: 0 12px;
        border-radius: 6px;
        border: 1px solid #d1d5db;
        font-size: 14px;
        width: 100%;
    }

    .home-inventory-search button {
        height: 40px;
        padding: 0 18px;
        border-radius: 6px;
    }

/* =========================================================
   PUBLIC INVENTORY PAGE
   ========================================================= */

.public-inventory-page {
    background: #f9fafb;
    padding: 48px 0 70px;
    padding-top: 12px; /* 👈 reduce this (likely 30–60px now) */
}

.public-inventory-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

    .public-inventory-header h1 {
        margin: 0 0 8px;
        font-size: 38px;
        font-weight: 800;
        color: #111827;
    }

.public-inventory-header p {
    font-size: 14px;
    color: #64748b;
}

    .public-inventory-header > p {
        margin-bottom: 20px;
        max-width: 720px;
    }

.public-inventory-top-divider {
    margin: 22px 0 26px;
    height: 1px;
    background: #e5e7eb;
}

.public-category-hero {
    padding: 12px 0 28px;
}

    .public-category-hero h1 {
        margin: 0 0 10px;
        font-size: 36px;
        font-weight: 800;
        color: #111827;
    }

    .public-category-hero p {
        margin: 0;
        max-width: 800px;
        color: #4b5563;
        font-size: 16px;
        line-height: 1.6;
    }

.public-category-model-links-section {
    margin: 8px 0 28px;
}

.public-category-model-links-title {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

.public-category-model-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.public-category-model-link-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.15s ease;
}

    .public-category-model-link-chip:hover {
        border-color: #0057b8;
        color: #0057b8;
        background: #f8fbff;
    }

.public-inventory-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.public-inventory-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
}

.public-inventory-sidebar-inner {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 14px 14px 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.public-inventory-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.public-inventory-filter {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 0;
}

    .public-inventory-filter label {
        display: block;
        margin-bottom: 4px;
        font-size: 13px;
        font-weight: 600;
    }

    .public-inventory-filter input,
    .public-inventory-filter select {
        min-height: 46px;
        border: 1px solid #d1d5db;
        border-radius: 10px;
        padding: 0 14px;
        font-size: 15px;
        background: #fff;
        color: #111827;
    }

        .public-inventory-filter input:focus,
        .public-inventory-filter select:focus {
            outline: none;
            border-color: #9ca3af;
            box-shadow: 0 0 0 3px rgba(156,163,175,.18);
        }

.public-inventory-btn {
    min-height: 46px;
    padding: 0 18px;
    border: none;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    height: 36px;
}

.public-inventory-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

    .public-inventory-clear:hover {
        background: #d1d5db;
    }

.public-inventory-filter-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

    .public-inventory-filter-actions .public-inventory-btn {
        flex: 3;
        width: auto !important;
    }

    .public-inventory-filter-actions .public-inventory-clear {
        flex: 1;
    }

.inventory-range-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 6px;
    align-items: center;
}

    .inventory-range-row input {
        width: 100%;
        padding: 6px 8px;
        font-size: 13px;
        height: 34px;
        box-sizing: border-box;
        border: 1px solid #d1d5db;
        border-radius: 6px;
    }

.inventory-range-separator {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
    padding: 0 2px;
}

/* Inventory toolbar */

.public-inventory-toolbar-left {
    display: flex;
    align-items: end;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
}

.public-inventory-toolbar-search {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 0 0 300px;
}

    .public-inventory-toolbar-search label,
    .public-inventory-toolbar-sort label {
        font-size: 12px;
        font-weight: 600;
        color: #374151;
    }

.inventory-search-input {
    position: relative;
    width: 100%;
}

    .inventory-search-input::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 16px;
        background-image: url('/images/search-icon.svg');
        background-size: contain;
        background-repeat: no-repeat;
        opacity: .6;
        pointer-events: none;
    }

.public-inventory-toolbar-search input {
    width: 100%;
    min-height: 38px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 0 12px 0 34px;
    font-size: 14px;
    background: #fff;
    color: #111827;
}

.public-inventory-toolbar-right {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    margin-left: auto;
    flex: 0 0 auto;
}

.public-inventory-toolbar-sort {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 0 0 170px;
    align-items: flex-end;
}

    .public-inventory-toolbar-sort select {
        width: 100%;
        min-height: 38px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        padding: 0 10px;
        font-size: 14px;
        background: #fff;
        color: #111827;
    }

        .public-inventory-toolbar-search input:focus,
        .public-inventory-toolbar-sort select:focus {
            outline: none;
            border-color: #9ca3af;
            box-shadow: 0 0 0 3px rgba(156,163,175,.18);
        }

.public-inventory-results-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.public-inventory-count {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}

.inventory-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inventory-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: background .15s ease, border-color .15s ease;
}

    .inventory-filter-chip:hover {
        background: #e5e7eb;
        border-color: #d1d5db;
    }

.inventory-filter-clear {
    display: inline-flex;
    align-items: center;
    padding: 6px 2px;
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    text-decoration: none;
}

    .inventory-filter-clear:hover {
        text-decoration: underline;
    }

/* Inventory cards */

.public-inventory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.public-inventory-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    height: 100%;
}

.public-inventory-card-image-link {
    display: block;
    aspect-ratio: 4 / 3;
    background: #f9fafb;
    overflow: hidden;
    height: auto;
}

.public-inventory-card-image,
.public-inventory-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.public-inventory-card-top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.public-inventory-badge,
.public-inventory-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.public-inventory-badge {
    background: #eef2ff;
    color: #1f2937;
}

.public-inventory-status {
    background: #f3f4f6;
    color: #374151;
}


    .public-inventory-card-brand a {
        color: #1f2937;
        text-decoration: none;
    }

        .public-inventory-card-brand a:hover {
            text-decoration: underline;
        }

    .public-inventory-card-title a {
        text-decoration: none;
        color: #111827;
        display: block;
    }

        .public-inventory-card-title a:hover {
            color: #0057b8;
        }

.public-inventory-card-meta {
    display: grid;
    gap: 8px;
    color: #4b5563;
    font-size: 14px;
}
.public-inventory-card-actions {
    margin-top: auto;
}

    .public-inventory-card-actions .public-equipment-btn,
    .public-inventory-card-actions a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

.public-inventory-empty {
    padding: 36px 0;
}

.public-inventory-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

    .pagination-link:hover {
        background: #f9fafb;
        border-color: #9ca3af;
        transform: translateY(-1px);
    }

    .pagination-link.is-active {
        background: #111827;
        color: #fff;
        border-color: #111827;
        cursor: default;
    }

/* =========================================================
   PUBLIC EQUIPMENT DETAILS
   ========================================================= */

.public-equipment-details-page {
    background: #f9fafb;
    padding: 42px 0 70px;
}

.public-equipment-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.public-equipment-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6b7280;
}

    .public-equipment-breadcrumbs a {
        color: #4b5563;
        text-decoration: none;
    }

        .public-equipment-breadcrumbs a:hover {
            color: #0057b8;
            text-decoration: underline;
        }

.public-equipment-details-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 28px;
}

.public-equipment-gallery,
.public-equipment-summary,
.public-equipment-description-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.public-equipment-main-image {
    position: relative;
    height: 500px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

    .public-equipment-main-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        cursor: zoom-in;
    }

.public-main-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,.9);
    color: #111827;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, transform .15s ease;
}

    .public-main-nav:hover {
        background: #fff;
        transform: translateY(-50%) scale(1.05);
    }

.public-main-prev {
    left: 10px;
}

.public-main-next {
    right: 10px;
}

.public-equipment-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
}

.public-equipment-thumb {
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    padding: 6px;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease, background .15s ease;
}

    .public-equipment-thumb img {
        width: 100%;
        height: 70px;
        object-fit: contain;
        display: block;
    }

    .public-equipment-thumb:hover {
        border-color: #9ca3af;
        transform: translateY(-1px);
        background: #f9fafb;
    }

    .public-equipment-thumb.is-active {
        border-color: #111827;
        box-shadow: 0 0 0 2px rgba(17,24,39,.08);
    }

.public-equipment-summary {
    padding: 24px;
}

.public-equipment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.public-equipment-badge,
.public-equipment-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.public-equipment-badge {
    background: #eef2ff;
    color: #1f2937;
}

.public-equipment-status {
    background: #f3f4f6;
    color: #374151;
}

.public-equipment-summary h1 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
}

.public-equipment-price {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
}

.public-equipment-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin-bottom: 24px;
}

.public-equipment-spec {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #6b7280;
}

.spec-value {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.spec-value-serial {
    font-family: monospace;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.spec-value-link {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

    .spec-value-link:hover {
        text-decoration: underline;
    }

.public-equipment-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

    .public-equipment-actions .public-equipment-btn {
        flex: 1;
        justify-content: center;
        text-align: center;
        transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    }

.public-equipment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

    .public-equipment-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 18px rgba(0,0,0,.10);
    }

.public-equipment-btn-secondary {
    background: #f3f4f6;
    color: #111827;
}

    .public-equipment-btn-secondary:hover {
        background: #e5e7eb;
    }

.public-equipment-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.public-equipment-btn-icon-mark {
    font-size: 16px;
    line-height: 1;
}

.public-equipment-description-card {
    padding: 24px;
    grid-column: 1 / -1;
    width: 100%;
    box-sizing: border-box;
}

    .public-equipment-description-card h2 {
        margin: 0 0 14px;
        font-size: 24px;
        font-weight: 800;
        color: #111827;
    }

.public-equipment-description-grid {
    display: grid;
    grid-template-columns: 3fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.public-equipment-description-main {
    min-width: 0;
}

.public-equipment-description {
    color: #4b5563;
    line-height: 1.7;
}

.public-equipment-dealer-notes-panel {
    border-left: 1px solid #e5e7eb;
    padding-left: 24px;
}

    .public-equipment-dealer-notes-panel h2,
    .public-equipment-description-main h2 {
        margin-top: 0;
    }

.public-equipment-dealer-notes {
    margin-top: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 6px;
    line-height: 1.7;
    color: #374151;
}

/* =========================================================
   PUBLIC EQUIPMENT GALLERY / PHOTO MODAL
   ========================================================= */

.public-photo-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

    .public-photo-modal.is-open {
        display: block;
    }

.public-photo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.78);
}

.public-photo-modal-dialog {
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.public-photo-modal-image-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 90px;
}

    .public-photo-modal-image-wrap img {
        max-width: 100%;
        max-height: 88vh;
        object-fit: contain;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 18px 40px rgba(0,0,0,.28);
    }

.public-photo-close {
    position: fixed;
    top: 18px;
    right: 24px;
    z-index: 10002;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #111827;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.public-photo-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10002;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #111827;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.public-photo-prev {
    left: 24px;
}

.public-photo-next {
    right: 24px;
}

.public-photo-close:hover,
.public-photo-nav:hover {
    background: #fff;
}

/* =========================================================
   PUBLIC INQUIRY MODAL / FORM
   ========================================================= */

.public-inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
}

    .public-inquiry-modal.is-open {
        display: block;
    }

.public-inquiry-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

.public-inquiry-modal-dialog {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.public-inquiry-modal-card {
    position: relative;
    width: min(620px, 100%);
    max-height: 92vh;
    overflow-y: visible;
    background: #fff;
    border-radius: 18px;
    padding: 28px 28px 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

    .public-inquiry-modal-card h2 {
        margin: 0 0 18px;
        font-size: 24px;
        font-weight: 800;
        color: #111827;
    }

.public-inquiry-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: #f3f4f6;
    color: #111827;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

    .public-inquiry-close:hover {
        background: #e5e7eb;
    }

.public-equipment-inquiry-trigger {
    margin-top: 18px;
}

.public-equipment-inquiry-success {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-weight: 600;
}

.public-equipment-inquiry-error {
    margin: 16px 0 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    font-weight: 600;
}

.public-equipment-inquiry-card {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

    .public-equipment-inquiry-card h2 {
        margin: 0 0 14px;
        font-size: 22px;
        font-weight: 800;
        color: #111827;
    }

.public-equipment-inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.public-equipment-inquiry-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .public-equipment-inquiry-field label {
        font-size: 13px;
        font-weight: 700;
        color: #374151;
    }

    .public-equipment-inquiry-field input,
    .public-equipment-inquiry-field textarea {
        width: 100%;
        border: 1px solid #d1d5db;
        border-radius: 10px;
        padding: 10px 12px;
        font-size: 15px;
        color: #111827;
        background: #fff;
        box-sizing: border-box;
    }

        .public-equipment-inquiry-field input:focus,
        .public-equipment-inquiry-field textarea:focus {
            outline: none;
            border-color: #9ca3af;
            box-shadow: 0 0 0 3px rgba(156,163,175,.18);
        }

    .public-equipment-inquiry-field textarea {
        resize: vertical;
        min-height: 96px;
    }

/* =========================================================
   PARTS / SERVICE FORM
   ========================================================= */

.ps-form {
    margin-top: 20px;
}

.ps-form-group {
    margin-bottom: 16px;
}

    .ps-form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        color: #111827;
    }

.ps-input,
.ps-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    background: #fff;
}

    .ps-input:focus,
    .ps-textarea:focus {
        outline: none;
        border-color: #0057b8;
        box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.10);
    }

.ps-alert-success {
    margin-bottom: 24px;
    padding: 14px 18px;
    border-radius: 12px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-weight: 600;
}

/* =========================================================
   BRANDS INDEX PAGE
   ========================================================= */

.brands-page {
    padding: 40px 0 64px;
}

.brands-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.brands-header {
    margin-bottom: 28px;
}

    .brands-header h1 {
        margin: 0 0 8px;
        font-size: 42px;
        line-height: 1.1;
        font-weight: 800;
        color: #0f172a;
        letter-spacing: -0.02em;
    }

    .brands-header p {
        margin: 0;
        font-size: 16px;
        line-height: 1.5;
        color: #64748b;
    }

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.brand-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 122px;
    padding: 22px 22px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    text-decoration: none;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

    .brand-card:hover {
        transform: translateY(-2px);
        border-color: #cbd5e1;
        box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    }

.brand-card-top {
    margin-bottom: 18px;
}

.brand-card-name {
    display: block;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
}

.brand-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brand-card-count {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.brand-card-arrow {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    color: #0f172a;
}

.brands-empty {
    padding: 18px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    color: #64748b;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    margin-top: 70px;
    padding: 44px 0;
    background: #111827;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer-links li + li {
        margin-top: 8px;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
    .featured-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .welcome-grid,
    .location-grid,
    .inv-details-grid,
    .dash-grid,
    .public-inventory-layout {
        grid-template-columns: 1fr;
    }

    .home-featured-slider {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promo-side-tabs {
        position: static;
        flex-direction: row;
        margin-bottom: 14px;
    }

    .promo-side-tab {
        width: auto;
        min-height: 58px;
        font-size: 18px;
    }

    .promo-slider {
        height: 460px;
    }

    .promo-content {
        padding: 48px 36px;
    }

    .promo-title {
        font-size: 42px;
    }

    .promo-text {
        font-size: 18px;
    }

    .equipment-tile {
        flex: 0 0 calc((100% - 56px) / 3);
    }

    .featured-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .public-inventory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .similar-equipment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-search-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-search-actions {
        grid-column: 1 / -1;
    }

    .home-search-btn {
        width: 100%;
    }

    .public-inventory-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 1000px) {
    .kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-equipment-details-grid {
        grid-template-columns: 1fr;
    }

    .public-equipment-main-image {
        height: 380px;
    }
}



@media (max-width: 900px) {
    .top-banner {
        display: none;
    }

    .public-logo img {
        height: 95px;
    }

    .public-nav {
        gap: 20px;
    }

        .public-nav a {
            font-size: 18px;
        }

    .site-header .header-shell {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        row-gap: 12px;
    }

    .site-header .header-left {
        grid-column: 1 / 2;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        grid-column: 2 / 3;
        justify-self: end;
    }

    .site-header .header-center {
        grid-column: 1 / 3;
        width: 100%;
    }

    .site-header .header-right {
        display: none;
    }

    .site-header .site-logo img {
        height: 72px;
    }

    .site-header .main-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        white-space: normal;
        border-top: 1px solid #e5e7eb;
        padding-top: 10px;
    }

        .site-header .main-nav.is-open {
            display: flex;
        }

        .site-header .main-nav a {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 12px 4px;
            border-bottom: 1px solid #f1f5f9;
            font-size: 18px;
        }

    .site-header .nav-home {
        padding-left: 2px;
    }

    .home-cta-container {
        grid-template-columns: 1fr;
    }

    .public-equipment-description-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .public-equipment-dealer-notes-panel {
        border-left: 0;
        border-top: 1px solid #e5e7eb;
        padding-left: 0;
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .promo-slider {
        height: 320px;
    }

    .promo-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .promo-dots {
        bottom: 14px;
    }

    .brands-page {
        padding: 32px 0 48px;
    }

    .brands-container {
        padding: 0 16px;
    }

    .brands-header h1 {
        font-size: 34px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .brand-card {
        min-height: 108px;
        padding: 18px 18px 16px;
    }

    .brand-card-name {
        font-size: 19px;
    }

    .home-brands-row {
        gap: 36px;
    }

        .home-brands-row img {
            height: 32px;
        }
}

@media (max-width: 760px) {
    .quick-card {
        min-height: 96px;
    }

    .quick-title {
        font-size: 20px;
    }
}

@media (max-width: 700px) {
    .quick-actions {
        flex-direction: column;
    }

    .main-nav {
        justify-content: center;
        gap: 18px;
    }

        .main-nav a {
            font-size: 16px;
        }

    .hero h1 {
        font-size: 38px;
    }

    .featured-grid,
    .category-grid,
    .home-featured-slider,
    .home-condition-grid {
        grid-template-columns: 1fr;
    }

    .promo-side-tabs {
        flex-direction: column;
    }

    .promo-slider {
        height: 390px;
        border-radius: 14px;
    }

    .promo-content {
        padding: 30px 20px 78px 20px;
    }

    .promo-title {
        font-size: 32px;
    }

    .promo-text {
        font-size: 16px;
    }

    .promo-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .promo-btn {
        width: 100%;
    }

    .promo-slider-nav {
        right: 16px;
        bottom: 16px;
    }

    .quick-card {
        min-height: 64px;
    }

    .quick-title {
        font-size: 18px;
    }

    .equipment-tiles {
        padding: 30px 0 34px;
    }

    .equipment-tiles-container {
        width: min(100%, calc(100% - 24px));
    }

    .equipment-slider-wrap {
        padding: 0 52px;
    }

    .equipment-arrow {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .equipment-tile {
        flex: 0 0 calc((100% - 16px) / 2);
        min-width: 140px;
    }

    .equipment-tile-img {
        box-sizing: border-box;
        max-width: 140px;
        height: 90px;
    }

    .featured-equipment-section {
        padding: 40px 0 46px;
    }

    .featured-equipment-container {
        width: min(100%, calc(100% - 24px));
    }

    .featured-equipment-header {
        flex-direction: column;
        align-items: flex-start;
    }

        .featured-equipment-header h2 {
            font-size: 28px;
        }

    .featured-slider-wrap {
        padding: 0 52px;
    }

    .featured-card {
        flex: 0 0 100%;
        min-width: 0;
    }

    .featured-arrow {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .home-search-strip {
        margin-top: 24px;
    }

    .home-search-strip-container,
    .public-equipment-details-container {
        width: min(100%, calc(100% - 24px));
    }

    .home-search-form {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 14px;
        border-radius: 14px;
    }

    .public-inventory-toolbar-left,
    .public-inventory-toolbar-right {
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
    }

    .public-inventory-toolbar-search,
    .public-inventory-toolbar-sort {
        flex: none;
        max-width: none;
        width: 100%;
        align-items: stretch;
    }

    .public-inventory-results-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .public-inventory-grid {
        grid-template-columns: 1fr;
    }

    .public-equipment-summary h1 {
        font-size: 28px;
    }

    .public-equipment-price {
        font-size: 28px;
    }

    .public-equipment-spec-grid {
        grid-template-columns: 1fr;
    }

    .public-equipment-main-image {
        height: 280px;
    }

    .public-photo-modal-image-wrap {
        padding: 16px 56px;
    }

    .public-photo-nav {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .public-photo-prev {
        left: 12px;
    }

    .public-photo-next {
        right: 12px;
    }

    .public-photo-close {
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 640px) {
    .similar-equipment-grid,
    .brands-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .kpis {
        grid-template-columns: 1fr;
    }
}

.public-inventory-header {
    margin-bottom: 0;
    padding-bottom: 0;
}

    .public-inventory-header > p {
        margin-bottom: 20px;
        max-width: 720px;
    }

.public-inventory-top-divider {
    margin: 22px 0 26px;
    height: 1px;
    background: #e5e7eb;
}


.public-inventory-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.public-inventory-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

    .public-inventory-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
        border-color: #d1d5db;
    }

.public-inventory-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.public-inventory-card:hover .public-inventory-card-img {
    transform: scale(1.03);
}

.public-inventory-card-body {
    display: flex;
    flex-direction: column;
    gap: 8px; /* was too loose */
    padding: 12px 16px 16px;
    flex: 1;
}


.public-inventory-card-top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.public-inventory-badge,
.public-inventory-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
}

.public-inventory-card-image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f8fafc;
}

.public-inventory-image-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.75);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .2px;
    box-shadow: 0 4px 10px rgba(0,0,0,.18);
}
.public-inventory-card-brand {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    text-align: center;
}
.public-inventory-card-title {
    margin: 0 0 4px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
}
.public-inventory-specs {
    display: flex;
    flex-direction: column;
    gap: 2px; /* tighter spec stack */
    color: #475569;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 2px;
}
.public-inventory-spec-line {
    display: block;
    margin: 0;
}
.public-inventory-card-footer {
    margin-top: auto; /* 👈 pushes footer to bottom */
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 0;
}
.public-inventory-price {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin: 0;
}

.public-inventory-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 10px;
    background: #0f172a;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none; /* 👈 THIS FIXES THE ISSUE */
}
.public-category-links-section {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
    margin-bottom: 18px;
}
.public-category-links-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.public-browse-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    margin-bottom: 18px;
}
.public-browse-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.public-browse-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.public-browse-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 16px 0;
}

.public-inventory-filter select,
.public-inventory-filter input[type="number"],
.public-inventory-filter input[type="text"] {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 14px;
}

.inventory-range-row {
    gap: 6px;
}

.inventory-range-separator {
    font-size: 13px;
}
.public-inventory-filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    padding-top: 4px;
}

.public-inventory-btn,
.public-inventory-clear {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
}
.public-inventory-filter-row {
    display: block;
}

.public-inventory-filter.half {
    width: 100%;
    margin-bottom: 12px;
}

.public-inventory-filter.half {
    flex: 1;
}
.inventory-range-row {
    display: flex;
    gap: 2px;
}

.inventory-range-row input {
    flex: 1;
    min-width: 0;
}

.inventory-range-separator {
    font-size: 12px;
}

.inventory-range-row input:first-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.inventory-range-row input:last-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.public-inventory-filter {
    margin-bottom: 12px;
}

.inventory-slider-wrap {
    width: 100%;
    overflow: hidden; /* 👈 prevents bleed */
    padding: 0 2px; /* 👈 tiny inset so thumb doesn’t hit edges */
}

    .inventory-slider-wrap input[type="range"] {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        appearance: none;
        -webkit-appearance: none;
        height: 6px;
        border-radius: 999px;
        background: #e5e7eb;
        margin: 0; /* 👈 removes default browser margin */
        padding: 0; /* 👈 important */
    }

    /* slider thumb */
.inventory-slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;

    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0f172a;

    margin-top: -4px; /* 👈 centers thumb on track */
    cursor: pointer;
}

.inventory-slider-wrap input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0f172a;
    cursor: pointer;
}

.inventory-range-row {
    display: flex;
    gap: 6px;
}

    .inventory-range-row input {
        flex: 1;
        min-width: 0;
    }
.public-inventory-filter-block {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

    .public-inventory-filter-block label {
        display: block;
        margin-bottom: 6px;
        font-size: 13px;
        font-weight: 600;
        color: #111827;
    }

.slider-value {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin: 6px 0 10px;
    line-height: 1.2;
}

.dual-range-filter {
    width: 100%;
    padding: 0 4px;
}

.dual-range-slider {
    position: relative;
    height: 22px;
    margin: 8px 0 12px;
}

.dual-range-track,
.dual-range-progress {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    border-radius: 999px;
}

.dual-range-track {
    left: 8px;
    right: 8px;
    background: #e5e7eb;
}

.dual-range-progress {
    background: #0f172a;
}

.dual-range-slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    top: 50%;
    left: 8px;
    width: calc(100% - 16px);
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    background: transparent;
    pointer-events: none;
    border: 0;
    outline: none;
}

    .dual-range-slider input[type="range"]::-webkit-slider-runnable-track {
        height: 6px;
        background: transparent;
        border: 0;
    }

    .dual-range-slider input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        pointer-events: auto;
        width: 16px;
        height: 16px;
        margin-top: -5px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        background: #0f172a;
        box-shadow: 0 1px 4px rgba(0,0,0,.18);
        cursor: pointer;
    }

    .dual-range-slider input[type="range"]::-moz-range-track {
        height: 6px;
        background: transparent;
        border: 0;
    }

    .dual-range-slider input[type="range"]::-moz-range-progress {
        height: 6px;
        background: transparent;
        border: 0;
    }

    .dual-range-slider input[type="range"]::-moz-range-thumb {
        pointer-events: auto;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        background: #0f172a;
        box-shadow: 0 1px 4px rgba(0,0,0,.18);
        cursor: pointer;
    }

.inventory-range-row {
    display: flex;
    gap: 6px;
}

    .inventory-range-row input {
        flex: 1;
        min-width: 0;
    }
.slider-value {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin: 6px 0 10px;
    line-height: 1.2;
}

.public-inventory-sidebar-inner {
    position: sticky;
    top: 12px;
    max-height: calc(100vh - 24px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.public-inventory-filters {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.public-inventory-filters-scroll {
    flex: 1;
    overflow-y: auto;
    padding-right: 6px;
}

/* Always visible buttons */
.public-inventory-filter-actions {
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    background: #fff;
    padding-top: 10px;
    margin-top: 8px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 10px;
}

/* Slight tightening */
.public-inventory-filter {
    margin-bottom: 10px;
}
/* Short laptop screens */
@media (max-height: 900px) and (min-width: 992px) {
    .public-inventory-sidebar-inner {
        top: 8px;
        max-height: calc(100vh - 16px);
    }

    .public-inventory-filters-scroll {
        padding-right: 4px;
    }

    .public-inventory-filter {
        margin-bottom: 8px;
    }

    .public-inventory-filter label,
    .public-inventory-filter-block label {
        margin-bottom: 4px;
        font-size: 12px;
    }

    .public-inventory-filter select,
    .public-inventory-filter input[type="number"],
    .public-inventory-filter input[type="text"] {
        min-height: 38px;
        padding: 7px 10px;
        font-size: 14px;
    }

    .public-inventory-filter-block {
        margin-bottom: 12px;
    }

    .slider-value {
        font-size: 16px;
        margin: 4px 0 8px;
    }

    .dual-range-slider {
        margin: 6px 0 10px;
    }

    .public-inventory-filter-actions {
        padding-top: 8px;
        margin-top: 6px;
        gap: 8px;
    }

    .public-inventory-btn,
    .public-inventory-clear {
        min-height: 38px;
        padding: 0 12px;
        font-size: 14px;
    }
}

.public-inventory-filter-toggle {
    display: none;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.public-inventory-filter-toggle-icon {
    transition: transform 0.2s ease;
}

.public-inventory-filter-toggle.is-open .public-inventory-filter-toggle-icon {
    transform: rotate(180deg);
}

.public-inventory-filter-panel {
    display: block;
}

/* smaller width OR shorter height */
@media (max-width: 1200px), (max-height: 850px) {
    .public-inventory-sidebar-inner {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .public-inventory-filter-toggle {
        display: flex;
        margin-bottom: 12px;
    }

    .public-inventory-filter-panel {
        display: none;
    }

        .public-inventory-filter-panel.is-open {
            display: block;
        }

    .public-inventory-filters {
        height: auto;
    }

    .public-inventory-filters-scroll {
        overflow: visible;
        max-height: none;
        padding-right: 0;
    }

    .public-inventory-filter-actions {
        position: static;
        border-top: 0;
        padding-top: 0;
        margin-top: 12px;
    }
}
.public-filter-group {
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
}

    .public-filter-group:last-child {
        border-bottom: 0;
    }

.public-filter-group-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-align: left;
}

.public-filter-group-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.public-filter-group-icon {
    font-size: 14px;
    color: #6b7280;
    transition: transform 0.2s ease;
}
.public-filter-group-content {
    display: none;
    padding-top: 10px;
}

/* optional: tighter spacing inside collapsed filter system */
.public-filter-group .public-inventory-filter,
.public-filter-group .public-inventory-filter-block {
    margin-bottom: 0;
}

/* desktop: keep all open if you want */
@media (min-width: 1201px) and (min-height: 851px) {
    .public-filter-group.force-open-desktop .public-filter-group-content {
        display: block;
    }

    .public-filter-group.force-open-desktop .public-filter-group-icon {
        transform: rotate(180deg);
    }
}
.public-filter-group {
    border-bottom: 1px solid #e5e7eb;
    padding: 8px 0;
}

    .public-filter-group:last-child {
        border-bottom: 0;
    }

.public-filter-group-toggle {
    list-style: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

    .public-filter-group-toggle::-webkit-details-marker {
        display: none;
    }

.public-filter-group-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.public-filter-group-icon {
    font-size: 14px;
    color: #6b7280;
    transition: transform 0.2s ease;
}

/* IMPORTANT: hide content by default */
.public-filter-group-content {
    display: none;
    padding-top: 10px;
}

/* IMPORTANT: show content when details is open */
.public-filter-group[open] .public-filter-group-content {
    display: block;
}

/* rotate arrow when open */
.public-filter-group[open] .public-filter-group-icon {
    transform: rotate(180deg);
}
/* =========================================================
   NEWS & EVENTS PAGE
   ========================================================= */

.ne-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    padding: 72px 0 64px;
    border-bottom: 1px solid #e5e7eb;
}

    .ne-hero .container {
        max-width: 900px;
    }

.ne-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2563eb;
}

.ne-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
    font-weight: 800;
    color: #111827;
}

.ne-hero p {
    max-width: 720px;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #4b5563;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.ne-section {
    padding: 72px 0;
}

.ne-section--alt {
    background: #f9fafb;
}

.ne-section--tight {
    padding-top: 48px;
    padding-bottom: 80px;
}

.ne-section-heading {
    margin-bottom: 28px;
}

.ne-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2563eb;
}

.ne-section-heading h2 {
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    line-height: 1.15;
    font-weight: 800;
    color: #111827;
}

/* =========================================================
   FEATURE CARD
   ========================================================= */

.ne-feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.ne-feature-card__content {
    padding: 38px 40px;
}

.ne-feature-card h3 {
    margin: 0 0 14px;
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
}

.ne-feature-card p {
    margin: 0;
    max-width: 760px;
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

/* =========================================================
   META TEXT
   ========================================================= */

.ne-meta {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* =========================================================
   GRID / CARDS
   ========================================================= */

.ne-grid {
    display: grid;
    gap: 24px;
}

.ne-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ne-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 26px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

    .ne-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
        border-color: #d1d5db;
    }

    .ne-card h3 {
        margin: 0 0 12px;
        font-size: 1.2rem;
        line-height: 1.3;
        font-weight: 800;
        color: #111827;
    }

    .ne-card p {
        margin: 0;
        font-size: 0.98rem;
        line-height: 1.75;
        color: #4b5563;
    }

/* =========================================================
   BOTTOM CTA
   ========================================================= */

.ne-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px 36px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

    .ne-bottom-cta h2 {
        margin: 0 0 10px;
        font-size: 1.9rem;
        line-height: 1.2;
        font-weight: 800;
        color: #111827;
    }

    .ne-bottom-cta p {
        margin: 0;
        max-width: 700px;
        font-size: 1rem;
        line-height: 1.75;
        color: #4b5563;
    }

.ne-bottom-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-shrink: 0;
}

/* =========================================================
   BUTTON POLISH (only inside this page)
   ========================================================= */

.ne-bottom-cta .btn {
    min-width: 170px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

    .ne-bottom-cta .btn:hover {
        transform: translateY(-1px);
    }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
    .ne-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ne-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .ne-bottom-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .ne-hero {
        padding: 56px 0 48px;
    }

    .ne-section {
        padding: 56px 0;
    }

    .ne-feature-card__content {
        padding: 28px 24px;
    }

    .ne-grid--3 {
        grid-template-columns: 1fr;
    }

    .ne-card {
        padding: 24px 20px;
    }

    .ne-bottom-cta {
        padding: 26px 22px;
    }

        .ne-bottom-cta .btn {
            width: 100%;
            min-width: 0;
            text-align: center;
        }

    .ne-bottom-cta__actions {
        width: 100%;
    }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.about-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    padding: 72px 0 64px;
    border-bottom: 1px solid #e5e7eb;
}

    .about-hero .container {
        max-width: 900px;
    }

.about-eyebrow,
.about-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2563eb;
}

.about-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.05;
    font-weight: 800;
    color: #111827;
}

.about-hero-text {
    max-width: 720px;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #4b5563;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.about-section {
    padding: 72px 0;
}

.about-section-alt {
    background: #f9fafb;
}

.about-section--tight {
    padding-top: 48px;
    padding-bottom: 80px;
}

.about-section-heading {
    margin-bottom: 28px;
}

    .about-section-heading h2 {
        margin: 0 0 10px;
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        line-height: 1.15;
        font-weight: 800;
        color: #111827;
    }

.about-section-intro {
    max-width: 720px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
    color: #4b5563;
}

/* =========================================================
   STORY / HIGHLIGHT
   ========================================================= */

.about-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: 30px;
    align-items: start;
}

.about-copy p {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

    .about-copy p:last-child {
        margin-bottom: 0;
    }

.about-highlight-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.about-highlight-card__inner {
    padding: 30px 28px;
}

.about-highlight-card h3 {
    margin: 0 0 18px;
    font-size: 1.45rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
}

.about-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

    .about-checklist li {
        position: relative;
        padding-left: 28px;
        font-size: 0.98rem;
        line-height: 1.6;
        color: #374151;
    }

        .about-checklist li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 800;
            color: #2563eb;
        }

/* =========================================================
   LOCATIONS
   ========================================================= */

.about-location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.about-location-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.about-location-header {
    padding: 24px 26px 0;
}

.about-location-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .about-location-title h3 {
        margin: 0;
        font-size: 1.45rem;
        line-height: 1.2;
        font-weight: 800;
        color: #111827;
    }

.about-location-icon {
    font-size: 1.1rem;
}

.about-location-body {
    padding: 20px 26px 26px;
}

.about-location-contact {
    margin-bottom: 22px;
}

.about-address {
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.about-phone {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}

    .about-phone:hover {
        text-decoration: underline;
    }

.about-location-hours {
    margin-bottom: 22px;
    padding: 18px 18px 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

    .about-location-hours h4 {
        margin: 0 0 14px;
        font-size: 0.98rem;
        font-weight: 800;
        color: #111827;
    }

.about-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #4b5563;
    border-top: 1px solid #eef2f7;
}

    .about-hours-row:first-of-type {
        border-top: 0;
        padding-top: 0;
    }

.about-location-map {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

    .about-location-map iframe {
        display: block;
        width: 100%;
        height: 260px;
        border: 0;
    }

.about-location-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 160px;
    padding: 12px 18px;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

    .about-action-btn:hover {
        transform: translateY(-1px);
    }

.about-action-btn-outline {
    background: #ffffff;
    color: #111827;
    border: 1px solid #d1d5db;
}

.about-btn-icon {
    font-size: 0.95rem;
}

/* =========================================================
   BOTTOM CTA
   ========================================================= */

.about-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px 36px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

    .about-bottom-cta h2 {
        margin: 0 0 10px;
        font-size: 1.9rem;
        line-height: 1.2;
        font-weight: 800;
        color: #111827;
    }

    .about-bottom-cta p {
        margin: 0;
        max-width: 680px;
        font-size: 1rem;
        line-height: 1.75;
        color: #4b5563;
    }

.about-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-shrink: 0;
}

    .about-cta-actions .btn {
        min-width: 170px;
        padding: 12px 20px;
        border-radius: 10px;
        font-weight: 700;
        text-decoration: none;
    }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
    .about-two-col,
    .about-location-grid {
        grid-template-columns: 1fr;
    }

    .about-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 56px 0 48px;
    }

    .about-section {
        padding: 56px 0;
    }

    .about-highlight-card__inner,
    .about-location-body {
        padding-left: 22px;
        padding-right: 22px;
    }

    .about-location-header {
        padding-left: 22px;
        padding-right: 22px;
    }

    .about-location-actions,
    .about-cta-actions {
        width: 100%;
    }

        .about-action-btn,
        .about-cta-actions .btn {
            width: 100%;
            min-width: 0;
        }

    .about-bottom-cta {
        padding: 26px 22px;
    }
}

/* =========================================
   PUBLIC INVENTORY RESULTS TOP TOOLBAR
   ========================================= */

.public-inventory-results {
    min-width: 0;
}

.public-inventory-results-top {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    padding-right: 36px;
}

.public-inventory-toolbar-form {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.public-inventory-toolbar-left,
.public-inventory-toolbar-right {
    min-width: 0;
    box-sizing: border-box;
}

.public-inventory-toolbar-left {
    flex: 1 1 420px;
    max-width: 100%;
}

.public-inventory-toolbar-right {
    flex: 0 1 260px;
    display: flex;
    justify-content: flex-end;
    max-width: 100%;
}

.public-inventory-toolbar-search,
.public-inventory-toolbar-sort {
    width: 100%;
    min-width: 0;
}

    .public-inventory-toolbar-search label,
    .public-inventory-toolbar-sort label {
        display: block;
        margin-bottom: 6px;
    }

.inventory-search-input {
    width: 100%;
    min-width: 0;
}

    .inventory-search-input input,
    .public-inventory-toolbar-sort select {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    /* optional polish */
    .inventory-search-input input,
    .public-inventory-toolbar-sort select {
        height: 44px;
    }

/* tablet + smaller */
@media (max-width: 991px) {
    .public-inventory-toolbar-form {
        align-items: stretch;
    }

    .public-inventory-toolbar-left,
    .public-inventory-toolbar-right {
        flex: 1 1 100%;
    }

    .public-inventory-toolbar-right {
        justify-content: stretch;
    }
}

/* =========================================
   INVENTORY PAGE OVERFLOW FIX
   ========================================= */

.public-inventory-layout,
.public-inventory-main,
.public-inventory-results,
.public-inventory-results-top,
.public-inventory-grid,
.public-inventory-card,
.public-inventory-card-image,
.public-inventory-card-body {
    min-width: 0;
    box-sizing: border-box;
}

.public-inventory-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.public-inventory-main {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.public-inventory-results {
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.public-inventory-results-top {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding-right: 8px;
}

.public-inventory-toolbar-form {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
}

.public-inventory-toolbar-left {
    flex: 1 1 360px;
    min-width: 0;
    max-width: 100%;
}

.public-inventory-toolbar-right {
    flex: 0 1 220px;
    min-width: 0;
    max-width: 100%;
    padding-right: 4px;
}

.public-inventory-toolbar-search,
.public-inventory-toolbar-sort,
.inventory-search-input {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

    .inventory-search-input input,
    .public-inventory-toolbar-sort select {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

/* THIS IS THE BIG ONE FOR CARD OVERFLOW */
.public-inventory-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.public-inventory-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

    .public-inventory-card img,
    .public-inventory-card-image img {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* prevent long titles/text from forcing width */
    .public-inventory-card h3,
    .public-inventory-card-title,
    .public-inventory-card-body,
    .public-inventory-card-body * {
        min-width: 0;
        overflow-wrap: anywhere;
    }

@media (max-width: 1400px) {
    .public-inventory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .public-inventory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .public-inventory-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PUBLIC INVENTORY MOBILE FIX
   ========================================= */

@media (max-width: 768px) {

    .public-inventory-layout {
        display: block;
    }

    .public-inventory-sidebar,
    .public-inventory-results,
    .public-inventory-main {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .public-inventory-sidebar {
        margin-bottom: 20px;
    }

    .public-inventory-results-top {
        padding-right: 0;
        overflow: visible;
    }

    .public-inventory-toolbar-form {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        width: 100%;
    }

    .public-inventory-toolbar-left,
    .public-inventory-toolbar-right {
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
        padding-right: 0;
    }

    .public-inventory-toolbar-search,
    .public-inventory-toolbar-sort,
    .inventory-search-input {
        width: 100%;
        max-width: 100%;
    }

        .public-inventory-toolbar-search label,
        .public-inventory-toolbar-sort label {
            margin-bottom: 6px;
            display: block;
        }

        .inventory-search-input input,
        .public-inventory-toolbar-sort select {
            width: 100%;
            max-width: 100%;
            min-width: 0;
        }

    .public-inventory-active-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

        .public-inventory-active-filters a,
        .public-inventory-active-filters .filter-chip,
        .public-inventory-active-filters .active-filter-chip {
            max-width: 100%;
            white-space: normal;
        }

    .public-inventory-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .public-inventory-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

        .public-inventory-card img,
        .public-inventory-card-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .public-inventory-card-title,
        .public-inventory-card h3,
        .public-inventory-card-body {
            overflow-wrap: anywhere;
            word-break: break-word;
        }

    .public-inventory-pagination {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
}
/* =========================================
   MOBILE NAV FIX (header-mainnav)
   ========================================= */

@media (max-width: 768px) {

    .header-mainnav {
        padding: 6px 0;
    }

        .header-mainnav .container {
            display: block;
            padding-left: 12px;
            padding-right: 12px;
        }

        /* NAV LIST */
        .header-mainnav ul {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            width: 100%;
            margin: 0;
            padding: 0;
            list-style: none;
            border-top: 1px solid #e5e7eb;
        }

        .header-mainnav li {
            width: 100%;
        }

        /* NAV LINKS */
        .header-mainnav a {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 52px;
            padding: 10px 8px;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.2;
            white-space: normal;
            border-bottom: 1px solid #e5e7eb;
        }

        /* remove last row border */
        .header-mainnav li:nth-last-child(-n+2) a {
            border-bottom: none;
        }
}

/* =========================================
   HIDE BROWSE (BRAND + CATEGORY) ON MOBILE
   ========================================= */

@media (max-width: 768px) {
    .public-browse-container {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .public-inventory-results {
        margin-top: 0;
    }
}
/* =========================================
   MOBILE HAMBURGER NAV
   ========================================= */

.mobile-nav-toggle {
    display: none;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: calc(100% - 24px);
        margin: 10px auto 0;
        padding: 12px 16px;
        border: 1px solid #d1d5db;
        border-radius: 12px;
        background: #ffffff;
        color: #111827;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
    }

    .mobile-nav-toggle__icon {
        position: relative;
        display: inline-block;
        width: 18px;
        height: 2px;
        background: #111827;
        border-radius: 2px;
    }

        .mobile-nav-toggle__icon::before,
        .mobile-nav-toggle__icon::after {
            content: "";
            position: absolute;
            left: 0;
            width: 18px;
            height: 2px;
            background: #111827;
            border-radius: 2px;
            transition: all 0.2s ease;
        }

        .mobile-nav-toggle__icon::before {
            top: -6px;
        }

        .mobile-nav-toggle__icon::after {
            top: 6px;
        }

    .mobile-nav-toggle.is-open .mobile-nav-toggle__icon {
        background: transparent;
    }

        .mobile-nav-toggle.is-open .mobile-nav-toggle__icon::before {
            top: 0;
            transform: rotate(45deg);
        }

        .mobile-nav-toggle.is-open .mobile-nav-toggle__icon::after {
            top: 0;
            transform: rotate(-45deg);
        }

    .header-mainnav {
        display: none;
        padding: 8px 0 0;
    }

        .header-mainnav.is-open {
            display: block;
        }

        .header-mainnav .container {
            padding-left: 12px;
            padding-right: 12px;
        }

    .mainnav-list {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
        border-top: 1px solid #e5e7eb;
    }

        .mainnav-list li {
            width: 100%;
        }

        .mainnav-list a {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 52px;
            padding: 12px 14px;
            text-align: center;
            font-size: 15px;
            font-weight: 700;
            line-height: 1.2;
            text-decoration: none;
            border-bottom: 1px solid #e5e7eb;
            background: #ffffff;
            white-space: normal;
        }
}

/* =========================================
   BROWSE CHIPS
   ========================================= */
/* CONTAINER (keep your blue background) */
.public-browse-container {
    margin-bottom: 28px;
    padding: 22px 20px;
    background: linear-gradient(180deg, #1e40af 0%, #1e3a8a 100%);
    border: 1px solid #1e3a8a;
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(30, 58, 138, 0.35);
}

/* TITLES */
.public-browse-title {
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 800;
}

/* DIVIDER */
.public-browse-divider {
    margin: 16px 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

/* =========================================
   BUTTON LAYOUT (AUTO WIDTH, NO GRID)
   ========================================= */

.public-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between; /* key line */
}

/* =========================================
   BUTTON STYLE (SQUARE, WHITE)
   ========================================= */

.public-category-link-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    padding: 9px 18px;
    min-height: 42px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #111827;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.15s ease;
    flex: 0 1 auto;
}

    /* =========================================
   HOVER (GRAY)
   ========================================= */
    .public-category-link-chip:hover {
        background: #111827;
        border-color: #111827;
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        transition: all 0.2s ease;
    }
/* =========================================
   COUNT TEXT
   ========================================= */

.chip-count {
    margin-left: 4px;
    font-size: 11px;
    opacity: 0.7;
}

.public-chip-count {
    margin-left: 4px;
    font-weight: 600;
    opacity: 0.75;
}
/* =========================================
 Inventory Table
   ========================================= */

.inventory-grid-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* LEFT SIDE */
.inventory-grid-toolbar-left {
    display: flex;
    align-items: center;
}

/* RIGHT SIDE */
.inventory-grid-toolbar-right {
    display: flex;
    align-items: center;
}


.inventory-table-wrap {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    border: 1px solid #d9dee5;
    border-radius: 10px;
}

.inventory-table {
    width: max-content;
    min-width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    font-size: 16px; /* base */
    color: #1f2937;
}

    .inventory-table th,
    .inventory-table td {
        width: auto;
    }
    border-bottom: 1px solid #eef2f6;  /* softer row lines */
    border-right: 1px solid #f3f4f6;   /* vertical separators */
    /* Bigger, tighter rows */
    .inventory-table th,
    .inventory-table td {
        padding: 10px 12px;
        border-bottom: 1px solid #eef2f6; /* softer row lines */
        border-right: 1px solid #f3f4f6; /* vertical separators */
        white-space: nowrap;
        vertical-align: middle;
    }
    /* Hover */
    .inventory-table tbody tr:hover {
        background: #f1f5f9;
    }

/* Column helpers */
.col-check {
    width: 40px;
    text-align: center;
}

.col-hours {
    width: 90px;
    text-align: center;
    font-size: 15px;
}

/* Inputs inside table */
.inline-status {
    width: 130px;
    min-width: 130px;
    height: 32px;
    padding: 4px 8px;
    border: 1px solid #cfd6de;
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
}

.featured-rank {
    width: 70px;
    min-width: 70px;
    height: 32px;
    padding: 4px 8px;
    border: 1px solid #cfd6de;
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
}

/* Keep model from stretching too far */
.inventory-table th:nth-child(9),
.inventory-table td:nth-child(9) {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Buttons / actions */
.inv-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: 6px;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
}

    .inv-action:hover {
        background: #eef2f6;
    }

.inv-pub {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.inv-web-icon {
    width: 18px;
    height: 18px;
}

.inv-pub-on .inv-web-icon path {
    fill: #16a34a !important;
}

.inv-pub-off .inv-web-icon path {
    fill: #dc2626 !important;
}

.inv-pub-disabled .inv-web-icon path {
    fill: #9ca3af !important;
    opacity: 0.5;
}

/* Small supporting UI */
.featured-badge {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 8px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #f9fafb;
    font-size: 12px;
}

.hours-value {
    white-space: nowrap;
}

.hours-suffix {
    margin-left: 2px;
    font-size: 12px;
    opacity: 0.7;
}

.hours-unknown {
    font-size: 12px;
    font-style: italic;
    opacity: 0.7;
}

/* Photo hover */
.photo-hover {
    position: relative;
    display: inline-block;
}

.photo-icon {
    font-size: 18px;
    cursor: pointer;
}

.photo-preview {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
    padding: 6px;
    background: #fff;
    border: 1px solid #d7dde5;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

    .photo-preview img {
        max-width: 220px;
        max-height: 180px;
        border-radius: 4px;
    }

.photo-hover:hover .photo-preview {
    display: block;
}

/* =========================================================
   Top Table Filter/nav
   ========================================================= */
.inventory-table-wrap {
    max-height: 70vh;
    overflow: auto;
}

.inventory-table thead th {
    position: sticky;
    text-align: center;
    top: 0;
    z-index: 20;
    background: #1e3a8a;
    color: #ffffff;
    font-size: 13px; /* 👈 sharper than 14px */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 14px;
    border-bottom: 1px solid #1e40af;
    box-shadow: inset 0 -1px 0 #1e40af, 0 2px 6px rgba(0, 0, 0, 0.08);
}

.inventory-table {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.inventory-table tbody tr:nth-child(even) {
    background: #f9fbfc;
}

.inventory-table tbody tr:nth-child(even) {
    background: #f3f6f9;
}

.inventory-table tbody tr:hover {
    background: #eef2f7 !important;
}


.inventory-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.inventory-header-actions-left,
.inventory-header-actions-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hide-published .toggle-published {
    display: none;
}

.hide-featured .featured-col {
    display: none;
}

.hide-cost .toggle-cost {
    display: none;
}
/* Center ALL headers */
.inventory-table thead th {
    text-align: center;
}

/* Keep numeric columns right aligned */

.money {
    width: 120px;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    color: #065f46;
}

/* Keep text columns left aligned */
.inventory-table tbody td {
    text-align: left;
}

.inventory-table td,
.inventory-table th {
    vertical-align: middle;
}


/* LEFT SIDE EMPHASIS */
.inventory-table td:nth-child(6) { /* Stock # */
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}
.inventory-table td:nth-child(7) { /* Category */
    font-size: 15px;
    color: #6b7280;
}
.inventory-table td:nth-child(8) { /* Make */
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}
.inventory-table td:nth-child(9) { /* Model */
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* LOCATION tighter + lighter */
.inventory-table td:nth-child(5) {
    font-size: 14px;
    color: #6b7280;
}

/* YEAR */
.inventory-table td:nth-child(10) {
    font-size: 16px;
    font-weight: 500;
}

/* Small control columns tighter */
.col-check {
    width: 36px;
}
.col-photo {
    text-align: center;
    width: 50px;
}

.col-actions {
    text-align: center;
    width: 80px;
}
/* Top Table Filters */
.inventory-filters {
    margin-bottom: 12px;
}

.inventory-filter-grid {
    display: grid;
    grid-template-columns: 150px /* Status */
    140px /* Condition */
    160px /* Location */
    200px /* Category */
    180px /* Make */
    240px /* Search */
    100px; /* Clear */
    gap: 10px;
    align-items: end;
}

.inventory-filter-actions-inline {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 40px; /* match inputs */
}

.inventory-filter-field select,
.inventory-filter-field input {
    width: 100%;
    height: 36px;
}
.inventory-filters {
    overflow-x: auto;
}
.inventory-filter-grid {
    min-width: 1100px;
}
    .inventory-filter-field label {
        margin: 0;
        font-size: 13px;
        font-weight: 600;
        color: #374151;
    }
.btn-clear-ghost {
    display: inline-flex;
    border: 1px solid #e5e7eb;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s ease;
}

    .btn-clear-ghost:hover {
        background: #f1f5f9;
        border-color: #cfd6de;
        color: #111827;
    }

.clear-x {
    font-size: 14px;
    line-height: 1;
    opacity: 0.7;
}

    .inventory-filter-field input,
    .inventory-filter-field select {
        width: 100%;
        height: 40px;
        padding: 8px 12px;
        border: 1px solid #cfd6de;
        border-radius: 8px;
        background: #fff;
        font-size: 14px;
    }

        .inventory-filter-field input:focus,
        .inventory-filter-field select:focus {
            outline: none;
            border-color: #94a3b8;
            box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.12);
        }

.inventory-filter-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.btn-search-filter {
    height: 40px;
    padding: 0 18px;
    border: 1px solid #111827;
    border-radius: 8px;
    background: #fff;
    font-weight: 600;
}

.clear-link {
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
    .inventory-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.inventory-header-actions-left,
.inventory-header-actions-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1200px) {
    .inventory-filter-grid {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .inventory-filter-grid {
        grid-template-columns: 1fr;
    }

    .inventory-filter-actions,
    .inventory-header-actions {
        flex-wrap: wrap;
    }
}

.btn-featured {
    height: 40px;
    padding: 0 16px;
    border: 1px solid #cfd6de;
    border-radius: 8px;
    background: #f8fafc;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .btn-featured:hover {
        background: #eef2f6;
    }

.inventory-header-actions .dropdown .btn {
    height: 40px;
}
.inventory-filters {
    margin-bottom: 8px;
}

.inventory-header-actions {
    margin-top: 8px;
    margin-bottom: 10px;
}
.inventory-filter-field label {
    font-size: 12px;
    letter-spacing: .03em;
    color: #6b7280;
}

/* Active filter bar */
.active-filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin: 10px 0 14px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #d9dee5;
    border-radius: 10px;
}

.active-filters-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.filter-label {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-right: 2px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: #ffffff;
    border: 1px solid #d7dde5;
    border-radius: 999px;
    font-size: 13px;
    color: #374151;
    line-height: 1;
    white-space: nowrap;
}

    .filter-pill strong {
        font-weight: 700;
        color: #111827;
    }

.active-filters-clear {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    padding-top: 2px;
}

    .active-filters-clear:hover {
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .active-filters-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .active-filters-clear {
        padding-top: 0;
    }
}
.active-filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin: 10px 0 14px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #d9dee5;
    border-radius: 10px;
}

.active-filters-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.filter-label {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-right: 2px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: #ffffff;
    border: 1px solid #d7dde5;
    border-radius: 999px;
    font-size: 13px;
    color: #374151;
    line-height: 1;
    white-space: nowrap;
}

.filter-pill strong {
    font-weight: 700;
    color: #111827;
}

.active-filters-clear {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    padding-top: 2px;
}

.active-filters-clear:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .active-filters-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .active-filters-clear {
        padding-top: 0;
    }
}
.inventory-filters {
    margin-bottom: 10px;
}

.inventory-header-actions {
    margin-top: 10px;
    margin-bottom: 12px;
}

.inventory-filter-field label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}



/* Bulk update */
.bulk-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    background: #f8fafc;
    border: 1px solid #d9dee5;
    border-radius: 8px;
}

.bulk-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ELEMENTS */
.bulk-label {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
}

.bulk-select {
    height: 36px;
    min-width: 170px;
    padding: 0 10px;
    border: 1px solid #cfd6de;
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
}

.bulk-apply {
    height: 36px;
    padding: 0 14px;
    border: 1px solid #2563eb;
    border-radius: 6px;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

    .bulk-apply:hover {
        background: #1d4ed8;
    }

.bulk-count {
    font-size: 13px;
    color: #6b7280;
}

/* tighten space before table */
.bulk-bar + .inventory-table-wrap {
    margin-top: 6px;
}

/* Condition table */
.condition-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.cond-new {
    background: #dcfce7;
    color: #166534;
}

.cond-used {
    background: #e0f2fe;
    color: #075985;
}

.filter-pill-clearable {
    text-decoration: none;
    color: #374151;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

    .filter-pill-clearable:hover {
        background: #eef2f6;
        border-color: #cfd6de;
        color: #111827;
    }

.pill-x {
    margin-left: 4px;
    font-size: 12px;
    opacity: 0.65;
}

.inventory-table th,
.inventory-table td {
    padding: 10px 12px;
    border-bottom: 2px solid #1e40af; /* matches your blue header */
    white-space: nowrap;
    vertical-align: middle;
}
.toggle-cost {
    color: #b45309; /* amber/brown */
    font-weight: 600;
}

/* Photo column */
.col-photo {
    width: 60px;
    text-align: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.inventory-table td.col-photo,
.inventory-table th.col-photo {
    text-align: center;
}

    .inventory-table td.col-photo > * {
        margin-left: auto;
        margin-right: auto;
    }

.photo-hover {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.photo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
}
/* Center Location column */
.inventory-table th:nth-child(5),
.inventory-table td:nth-child(5) {
    text-align: center;
}

/* Center Days column */
.inventory-table th:nth-child(14),
.inventory-table td:nth-child(14) {
    text-align: center;
}

/* Center Actions column */
.inventory-table th:nth-child(15),
.inventory-table td:nth-child(15) {
    text-align: center;
}

/* Make action icons sit centered together */
.inventory-table td:nth-child(15) {
    white-space: nowrap;
}

    .inventory-table td:nth-child(15) .inv-action {
        margin: 0 3px;
    }


/* Table width */
.inventory-table td:nth-child(7),
.inventory-table th:nth-child(7) {
    text-align: center;
}

.inventory-table td:nth-child(6),
.inventory-table th:nth-child(6) {
    text-align: center;
}

.inventory-table td:nth-child(11),
.inventory-table th:nth-child(11) {
    text-align: center;
}

.inventory-table td:nth-child(12),
.inventory-table th:nth-child(12) {
    text-align: center;
}
.inventory-table td:nth-child(13),
.inventory-table th:nth-child(13) {
    text-align: Right;
}
.inventory-table td:nth-child(17),
.inventory-table th:nth-child(17) {
    text-align: Right;
}
.inventory-table thead th {
    text-align: center !important;
}

.col-featured {
    text-align: center;
}

/* THIS does the real work */
td.col-featured {
    display: flex;
    justify-content: center;
    align-items: center;
}
.col-featured input[type="checkbox"] {
    margin: 0;
}

.inventory-table thead th.sortable-header {
    padding: 0;
}

    .inventory-table thead th.sortable-header a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
        height: 100%;
        padding: 10px 12px;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
    }

        .inventory-table thead th.sortable-header a:hover {
            background: rgba(255,255,255,0.08);
        }

.sort-indicator {
    font-size: 11px;
    line-height: 1;
}
/* =========================
   LEFT COLUMN STACK
   ========================= */
.inv-details-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

/* =========================
   BOTTOM DESCRIPTION / NOTES CARD
   ========================= */
.inv-details-bottom-card {
    padding: 0;
    overflow: hidden;
}

.inv-details-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
    gap: 0;
}

.inv-details-bottom-section {
    padding: 28px;
    min-width: 0;
}

    .inv-details-bottom-section:first-child {
        border-right: 1px solid #e5e7eb;
    }

.inv-details-desc-text {
    background: #fbfcfe;
    border: 1px solid #e7ebf0;
    border-radius: 14px;
    padding: 22px 24px;
    color: #334155;
    font-size: 16px;
    line-height: 1.8;
    white-space: pre-line;
}

.inv-details-dealer-notes {
    background: #fbfcfe;
    border: 1px solid #e7ebf0;
    border-radius: 14px;
    padding: 20px 22px;
}

.inv-details-dealer-notes-list {
    margin: 0;
    padding-left: 18px;
}

    .inv-details-dealer-notes-list li {
        margin-bottom: 10px;
        color: #334155;
        line-height: 1.6;
    }

        .inv-details-dealer-notes-list li:last-child {
            margin-bottom: 0;
        }
html {
    scroll-behavior: smooth;
}
.inv-btn.inv-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid #d9dee7;
    border-radius: 10px;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    transition: background 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

    .inv-btn.inv-btn-secondary:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
    }
html {
    scroll-behavior: smooth;
}

#qrSection {
    scroll-margin-top: 24px;
}
.qr-section-bottom {
    margin-top: 20px;
}

    .qr-section-bottom .panel {
        max-width: 720px;
        margin: 0 auto;
    }
.inv-details-bottom-card {
    width: 100%;
    margin-top: 20px;
    padding: 0;
    overflow: hidden;
}

.inv-details-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 0;
    width: 100%;
}

.inv-details-bottom-section {
    padding: 28px;
    min-width: 0;
}

    .inv-details-bottom-section:first-child {
        border-right: 1px solid #e5e7eb;
    }

.inv-details-desc-text,
.inv-details-dealer-notes {
    display: block;
    width: 100%;
    box-sizing: border-box;
    background: #fbfcfe;
    border: 1px solid #e7ebf0;
    border-radius: 14px;
}

.inv-details-desc-text {
    padding: 22px 24px;
    color: #334155;
    font-size: 16px;
    line-height: 1.8;
    white-space: pre-line;
}

.inv-details-dealer-notes {
    padding: 20px 22px;
}

.inv-details-dealer-notes-list {
    margin: 0;
    padding-left: 18px;
}

    .inv-details-dealer-notes-list li {
        margin-bottom: 10px;
        line-height: 1.6;
        color: #334155;
    }

@media (max-width: 1100px) {
    .inv-details-bottom-grid {
        grid-template-columns: 1fr;
    }

    .inv-details-bottom-section:first-child {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
}
/* =========================
   Inventory Mange Detail
   ========================= */
.qr-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2200;
    background: rgba(15, 23, 42, 0.62);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .qr-modal.is-open {
        display: flex;
    }

.qr-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    padding: 28px 28px 24px;
}

.qr-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: none;
    background: transparent;
    font-size: 34px;
    line-height: 1;
    color: #475569;
    cursor: pointer;
}

.qr-modal-title {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
}

.qr-modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-modal-image-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.qr-modal-image {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 10px;
    background: #fff;
}

.qr-modal-link {
    margin-bottom: 8px;
    font-weight: 700;
    text-align: center;
}

    .qr-modal-link a {
        color: #1e3a8a;
        text-decoration: none;
    }

.qr-modal-url {
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.45;
    color: #64748b;
    text-align: center;
    word-break: break-word;
}

.qr-modal-actions {
    display: grid;
    gap: 10px;
    width: 100%;
}
/* =========================
   Internal Notes 
   ========================= */
.inv-details-internal-card {
    margin-top: 20px;
    padding: 0;
    overflow: hidden;
}

.inv-details-internal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.inv-notes-toggle-btn {
    min-width: 82px;
    padding: 8px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    cursor: pointer;
}

    .inv-notes-toggle-btn:hover {
        background: #f8fafc;
        border-color: #94a3b8;
    }

.inv-details-internal-panel {
    padding: 24px;
}

    .inv-details-internal-panel.is-hidden {
        display: none;
    }

.inv-details-internal-text {
    background: #fbfcfe;
    border: 1px solid #e7ebf0;
    border-radius: 14px;
    padding: 20px 22px;
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
    white-space: pre-line;
}

.inv-notes-list {
    list-style-type: "– ";
    padding-left: 12px;
}

    .inv-notes-list li {
        margin-bottom: 6px;
        line-height: 1.5;
    }

.inv-notes-actions {
    display: flex;
    gap: 8px;
}

.inv-notes-btn {
    padding: 6px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
}

    .inv-notes-btn:hover {
        background: #f8fafc;
    }

.inv-notes-save {
    border-color: #16a34a;
    color: #166534;
}

.inv-notes-cancel {
    border-color: #dc2626;
    color: #991b1b;
}

/* =========================
Edit Price and cost
   ========================= */
.inv-details-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.inv-pricing-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.price-highlight {
    font-size: 28px;
    font-weight: 700;
    color: #0f2a44; /* your dark blue */
}

.price-highlight {
    display: inline-block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    color: #1e3a8a;
}
/* ===== UNIT DETAILS GRID ===== */
.inv-details-kv {
    display: grid;
    grid-template-columns: 160px 1fr;
    row-gap: 10px;
    column-gap: 16px;
}

    /* Left labels */
    .inv-details-kv .k {
        font-size: 13px;
        color: #6b7280;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    /* Right values */
    .inv-details-kv .v {
        font-size: 15px;
        color: #111827;
        font-weight: 500;
    }

    /* Add subtle row separation */
    .inv-details-kv .k,
    .inv-details-kv .v {
        padding: 6px 0;
        border-bottom: 1px solid #f1f5f9;
    }
.price-highlight {
    display: inline-block;
    font-size: 30px;
    font-weight: 800;
    color: #1e3a8a;
    letter-spacing: -0.5px;
}

/* Optional: Call for Price style */
.price-callout {
    font-size: 26px;
    font-weight: 800;
    color: #166534;
}
.price-highlight {
    display: inline-block;
    font-size: 30px;
    font-weight: 800;
    color: #1e3a8a;
    letter-spacing: -0.5px;
}

/* Optional: Call for Price style */
.price-callout {
    font-size: 26px;
    font-weight: 800;
    color: #166534;
}
.inv-details-info-card {
    padding: 20px 22px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
}

/* Title */
.inv-details-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}
.inv-details-kv .v #pricingView {
    margin-top: 2px;
}

/* ===== UNIT DETAILS CARD HEADER ===== */
.inv-details-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.inv-pricing-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ===== SPLIT LAYOUT ===== */
.inv-details-split {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.inv-details-specs,
.inv-details-pricing {
    min-width: 0;
}

/* ===== SPECS GRID ===== */
.inv-details-kv {
    display: grid;
    grid-template-columns: 150px 1fr;
    row-gap: 0;
    column-gap: 16px;
}

    .inv-details-kv .k {
        font-size: 13px;
        color: #6b7280;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        padding: 9px 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .inv-details-kv .v {
        font-size: 15px;
        color: #111827;
        font-weight: 500;
        padding: 9px 0;
        border-bottom: 1px solid #f1f5f9;
    }

/* ===== PRICING COLUMN ===== */
.inv-details-pricing {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-panel {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    padding: 18px 18px 16px;
}

.pricing-panel-secondary {
    background: #fbfcfe;
}

.pricing-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.pricing-value-wrap {
    min-height: 48px;
    display: flex;
    align-items: center;
}

.price-highlight {
    display: inline-block;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.05;
    color: #1e3a8a;
    letter-spacing: -0.6px;
}

.price-callout {
    display: inline-block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.05;
    color: #92400e;
    letter-spacing: -0.3px;
}

.cost-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
}

.cost-toggle-btn {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    cursor: pointer;
}

    .cost-toggle-btn:hover {
        background: #f3f4f6;
    }

/* ===== CARD ===== */
.inv-details-info-card {
    padding: 20px 22px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.inv-details-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
    .inv-details-split {
        grid-template-columns: 1fr;
    }

    .inv-details-kv {
        grid-template-columns: 130px 1fr;
    }
}
/* COST styling (secondary emphasis) */
/* Hidden state */
.cost-hidden {
    filter: blur(6px);
    user-select: none;
}

/* Visible state */
.cost-visible {
    filter: none;
}

/* Styled cost (still applied even when hidden) */
.cost-value {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    color: #b45309; /* amber */
}

/* Button */
.cost-toggle-btn {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    cursor: pointer;
}

    .cost-toggle-btn:hover {
        background: #f3f4f6;
    }
/* COST wrapper */
.cost-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 36px;
}

/* COST value */
#costValue.cost-value {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    color: #b45309;
    letter-spacing: -0.2px;
}

/* Hidden state */
#costValue.cost-hidden {
    filter: blur(6px);
    user-select: none;
}

/* Visible state */
#costValue.cost-visible {
    filter: none;
}

/* Cost panel background */
.pricing-panel-secondary {
    background: #fffaf3;
    border-color: #fde68a;
}

    .pricing-panel-secondary .pricing-label {
        color: #92400e;
    }

/* Button */
.cost-toggle-btn {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    cursor: pointer;
}

    .cost-toggle-btn:hover {
        background: #f3f4f6;
    }
/* =========================================
   CREATE UNIT PAGE
   ========================================= */

.create-unit-page {
    padding: 24px;
}

.create-unit-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.create-unit-header {
    margin-bottom: 18px;
}

    .create-unit-header h1 {
        margin: 0 0 6px;
        font-size: 2rem;
        font-weight: 700;
        color: #111827;
    }

    .create-unit-header p {
        margin: 0;
        color: #6b7280;
        font-size: 0.98rem;
    }

.create-unit-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    padding: 24px;
}

.create-section {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #edf1f5;
}

    .create-section:last-of-type {
        margin-bottom: 0;
    }

.create-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.create-grid {
    display: grid;
    gap: 18px;
}

.create-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.create-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
    min-width: 0;
}

.field-full {
    grid-column: 1 / -1;
}

.field .form-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.field .form-control,
.field .form-select {
    min-height: 46px;
    border-radius: 10px;
    border-color: #d1d5db;
    box-shadow: none;
}

.field textarea.form-control {
    min-height: auto;
}

.field-help {
    margin-top: 6px;
    font-size: 0.84rem;
    color: #6b7280;
}

.field-checkbox {
    display: flex;
    align-items: end;
}

.checkbox-wrap {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 4px;
}

.create-section-seo {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px;
}

.create-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    padding-top: 8px;
}

    .create-actions .btn {
        min-width: 140px;
        border-radius: 10px;
        padding: 10px 18px;
        font-weight: 600;
    }

@media (max-width: 991.98px) {
    .create-grid-2,
    .create-grid-3 {
        grid-template-columns: 1fr;
    }

    .create-unit-card {
        padding: 18px;
    }

    .create-unit-page {
        padding: 16px;
    }
}
/* =========================================
   DETAILS HEADER / TOP ACTIONS
   ========================================= */

.inv-details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.inv-details-header-main {
    min-width: 0;
}

.inv-details-title {
    margin: 0 0 6px;
    line-height: 1.1;
}

.inv-details-subtitle-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.inv-details-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 600;
}

.inv-details-subtitle-sep {
    color: #cbd5e1;
    font-weight: 700;
}

.inv-details-actions-top {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.inv-top-action-form {
    margin: 0;
}

.inv-top-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.94rem;
    line-height: 1;
    transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

    .inv-top-action:hover {
        background: #f8fafc;
        border-color: #9ca3af;
        color: #111827;
        text-decoration: none;
    }

.inv-top-action-secondary {
    background: #f8fafc;
}

.inv-top-action-green {
    background: #166534;
    border-color: #166534;
    color: #fff;
}

    .inv-top-action-green:hover {
        background: #14532d;
        border-color: #14532d;
        color: #fff;
    }

.inv-top-action-red {
    background: #b91c1c;
    border-color: #b91c1c;
    color: #fff;
}

    .inv-top-action-red:hover {
        background: #991b1b;
        border-color: #991b1b;
        color: #fff;
    }

@media (max-width: 991.98px) {
    .inv-details-header {
        flex-direction: column;
        align-items: stretch;
    }

    .inv-details-actions-top {
        justify-content: flex-start;
    }
}
.featured-equipment-section {
    position: relative;
    background: url('/images/your-hero.jpg') center/cover no-repeat;
    padding: 70px 0;
}

.featured-equipment-header h2,
.featured-equipment-header p,
.featured-equipment-viewall {

}

.featured-card {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(4px);
}

    /* Overlay (same as locations) */
.featured-equipment-section::before {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 0;
}

/* Keep content above overlay */
.featured-equipment-container {
    position: relative;
    z-index: 1;
}

.locations-strip {
    position: relative;
    background: url('/images/your-yard-photo.jpg') center/cover no-repeat;
    padding: 70px 0;
}
    .locations-strip::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(15, 23, 42, 0.6); /* adjust strength here */
        z-index: 0;
    }
    .locations-strip .container {
        position: relative;
        z-index: 1;
    }
    .locations-strip h2,
    .locations-strip .section-kicker {
        color: #ffffff;
    }
    .location-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
    .promo-hero {
        display: none;
    }
}

.promo-hero-wrap {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}
.promo-hero-wrap {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.login-nav {
    gap: 8px;
}

.login-user-link,
.login-register-link {
    font-weight: 600;
    color: #374151 !important;
    white-space: nowrap;
}

    .login-user-link:hover,
    .login-register-link:hover {
        color: #111827 !important;
    }

.logout-form {
    margin: 0;
}

.login-btn,
.login-logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111827;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

    .login-btn:hover,
    .login-logout-btn:hover {
        background: #f3f4f6;
        border-color: #9ca3af;
        color: #111827;
        text-decoration: none;
    }

.login-btn {
    background: #0f172a;
    border-color: #0f172a;
    color: #fff;
}

    .login-btn:hover {
        background: #1e293b;
        border-color: #1e293b;
        color: #fff;
    }

@media (max-width: 768px) {
    .login-nav {
        width: 100%;
        align-items: flex-start !important;
        gap: 10px;
        padding-top: 10px;
    }

    .login-btn,
    .login-logout-btn {
        width: 100%;
    }
}
.login-page-wrap {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    background: #eef2f7;
}

.login-card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 32px;
}

.login-card-header {
    margin-bottom: 24px;
    text-align: center;
}

    .login-card-header h1 {
        margin: 0 0 8px;
        font-size: 2rem;
        font-weight: 700;
        color: #111827;
    }

    .login-card-header p {
        margin: 0;
        color: #6b7280;
        font-size: 0.98rem;
    }

.login-form .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.login-form .form-control {
    min-height: 48px;
    border-radius: 10px;
    border: 1px solid #cfd8e3;
    box-shadow: none;
}

    .login-form .form-control:focus {
        border-color: #1e3a8a;
        box-shadow: 0 0 0 0.15rem rgba(30, 58, 138, 0.12);
    }

.login-remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.login-remember-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    margin: 0;
}

.login-forgot-link {
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: none;
}

    .login-forgot-link:hover {
        text-decoration: underline;
    }

.login-submit-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 10px;
    border: 1px solid #0f172a;
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
}

    .login-submit-btn:hover {
        background: #1e293b;
        border-color: #1e293b;
        color: #ffffff;
    }

@media (max-width: 576px) {
    .login-card {
        padding: 24px 20px;
    }

    .login-card-header h1 {
        font-size: 1.75rem;
    }
}
.footer-admin a {
    font-size: 12px;
    color: #9ca3af;
}

    .footer-admin a:hover {
        color: #6b7280;
    }
.col-facebook,
.facebook-col {
    text-align: center;
    width: 78px;
    min-width: 78px;
}

.fb-toggle {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.fb-toggle-on {
    background: #e8f0fe;
    border-color: #9bb8f3;
    color: #1d4ed8;
}

.fb-toggle-off {
    background: #fff;
    border-color: #d1d5db;
    color: #6b7280;
}

.fb-toggle:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.hide-facebook .col-facebook,
.hide-facebook .facebook-col {
    display: none;
}

.col-facebook,
.facebook-col {
    text-align: center;
    width: 72px;
    min-width: 72px;
}

.facebook-check {
    width: 18px;
    height: 18px;
    cursor: pointer;
}