body {
    -webkit-font-smoothing: antialiased;
}

.bg-dark-bg {
    background-color: #1f2937;
}

.bg-bg-main {
    background-color: #f6f9fd;
}

.bg-bg-card {
    background-color: #fff;
}

.text-text-main {
    color: #2f333c;
}

.text-text-secondary {
    color: #6b7280;
}

.text-text-muted {
    color: #9ca3af;
}

.border-border-main {
    border-color: #e2e5e9;
}

input,
select,
textarea {
    outline: none;
}

.site-container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.top-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 500;
    transition: color .2s ease;
}

.top-link:hover,
.nav-link:hover {
    color: #2662d9;
}

.brand-bar {
    background: linear-gradient(to right, #1f2937, #111827);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    background: #2662d9;
    color: #fff;
    font-weight: 700;
    transition: background .2s ease;
}

.btn-primary:hover {
    background: #1a47a3;
}

.btn-muted {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
}

.field-dark {
    height: 50px;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.1);
    padding: 0 1.25rem;
    color: #fff;
    backdrop-filter: blur(10px);
}

.field-dark::placeholder {
    color: rgba(255,255,255,.65);
}

.field-dark option {
    color: #111827;
}

.hero-select,
.hero-input {
    width: 210px;
    height: 50px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 1rem;
    background: rgba(255,255,255,.1);
    padding: 0 1.25rem;
    color: #fff;
    backdrop-filter: blur(10px);
}

.hero-input::placeholder {
    color: rgba(255,255,255,.65);
}

.hero-select option {
    color: #111827;
}

.brand-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.brand-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: slideLeft 40s linear infinite;
}

.brand-item {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .65;
    transition: all .3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.feature-card {
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    background: #fff;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 2px rgba(15,23,42,.06);
}

.feature-card i {
    display: inline-flex;
    width: 3.5rem;
    height: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: .5rem;
    background: rgba(38,98,217,.1);
    color: #2662d9;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: .5rem;
    color: #2f333c;
    font-size: 1.125rem;
    font-weight: 700;
}

.feature-card p {
    color: #6b7280;
    font-size: .875rem;
}

.why-stat {
    max-width: 240px;
    margin: 0 auto;
    color: #3a3a3a;
}

.why-stat i {
    display: block;
    margin-bottom: 1.25rem;
    color: #3a3a3a;
    font-size: 2.125rem;
}

.why-stat h3 {
    margin-bottom: .75rem;
    color: #222;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.2;
}

.why-stat p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.stat {
    max-width: 220px;
    margin: 0 auto;
    color: #3a3a3a;
}

.stat i {
    display: block;
    margin-bottom: 1.25rem;
    font-size: 2.25rem;
}

.stat strong {
    display: block;
    margin-bottom: .75rem;
    color: #222;
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1;
}

.stat span {
    color: #555;
    font-size: 17px;
}

.inventory-card {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15,23,42,.06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.inventory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(15,23,42,.12);
}

.footer-title {
    margin-bottom: 1.25rem;
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.admin-nav {
    display: flex;
    align-items: center;
    gap: .75rem;
    border-radius: .5rem;
    padding: .75rem 1rem;
    color: #cbd5e1;
    transition: background .2s ease, color .2s ease;
}

.admin-nav:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}

.admin-heading {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-heading h1 {
    font-size: 1.875rem;
    font-weight: 700;
}

.admin-heading p {
    margin-top: .25rem;
    color: #64748b;
}

.admin-card,
.form-card,
.table-wrap {
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(15,23,42,.06);
}

.admin-card {
    padding: 1.5rem;
}

.admin-card span {
    display: block;
    color: #64748b;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.admin-card strong {
    display: block;
    margin-top: 1rem;
    color: #0f172a;
    font-size: 2.25rem;
    font-weight: 900;
}

.table-wrap {
    overflow: hidden;
}

.admin-table {
    width: 100%;
    text-align: left;
    font-size: .875rem;
}

.admin-table th {
    background: #f8fafc;
    padding: 1rem 1.25rem;
    color: #64748b;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.admin-table td {
    border-top: 1px solid #f1f5f9;
    padding: 1rem 1.25rem;
    vertical-align: middle;
}

.form-card {
    padding: 1.5rem;
}

.form-field {
    display: block;
    color: #334155;
    font-size: .875rem;
    font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
    margin-top: .5rem;
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: .5rem;
    padding: .75rem 1rem;
    color: #0f172a;
    font-weight: 400;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #2662d9;
}

@media (min-width: 768px) {
    .admin-heading {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .hero-select,
    .hero-input {
        width: 100%;
    }
}
