html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.auth-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fb 0%, #eef3f8 100%);
    padding: 2rem 1rem;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.auth-brand {
    text-align: center;
    margin-bottom: 1.5rem;
}

    .auth-brand h1 {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: .25rem;
    }

    .auth-brand p {
        color: #64748b;
        margin-bottom: 0;
    }

.auth-card .form-control {
    border-radius: 10px;
    padding: .75rem;
}

.auth-card .btn-primary {
    border-radius: 10px;
    padding: .75rem;
    font-weight: 700;
}

.auth-links {
    text-align: center;
    margin-top: 1rem;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .25rem;
}

.auth-subtitle {
    color: #64748b;
    margin-bottom: 1.25rem;
}

.auth-card form {
    width: 100%;
}
.account-card {
    max-width: 560px;
}

.account-nav-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.account-nav-title {
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0f172a;
}

.account-nav .nav-link {
    border-radius: 10px;
    color: #475569;
    font-weight: 600;
    margin-bottom: .35rem;
}

    .account-nav .nav-link.active {
        background: #0d6efd;
        color: #ffffff;
    }

.app-shell {
    background: #f8fafc;
    min-height: 100vh;
}

.app-navbar {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .18);
}

    .app-navbar .navbar-brand,
    .app-navbar .nav-link {
        color: #f8fafc !important;
    }

    .app-navbar .nav-link {
        font-weight: 600;
        opacity: .9;
    }

        .app-navbar .nav-link:hover {
            opacity: 1;
            color: #ffffff !important;
        }

.app-brand-subtitle {
    font-size: .72rem;
    color: #cbd5e1;
    margin-top: -4px;
}

.dropdown-menu {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, .25);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .18);
}

.dropdown-item {
    padding: .55rem 1rem;
    font-weight: 500;
}

.page-container {
    padding-top: 1.5rem;
}

.app-footer {
    background: #ffffff;
    font-size: .9rem;
}
.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}

.dashboard-subtitle {
    color: #64748b;
}

.kpi-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    transition: all .2s ease;
}

    .kpi-card:hover {
        transform: translateY(-2px);
    }

    .kpi-card .card-body {
        padding: 1.5rem;
    }

.kpi-label {
    font-size: .9rem;
    opacity: .9;
    margin-bottom: .5rem;
}

.kpi-value {
    font-size: 2rem;
    font-weight: 800;
}

.dashboard-panel {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, .18);
}

    .dashboard-panel h4 {
        font-weight: 700;
        margin-bottom: 1rem;
    }

.table-modern thead th {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.table-modern td {
    vertical-align: middle;
}

.quick-actions .btn {
    border-radius: 12px;
    padding: .8rem 1rem;
    font-weight: 600;
}

@media print {

    .sidebar,
    .navbar,
    .topbar,
    .header,
    .footer,
    .print-button {
        display: none !important;
    }

    .main-content {
        margin: 0 !important;
        padding: 0 !important;
    }

    body {
        margin: 0;
        padding: 0;
    }
}
:root {
    --ors-navy: #081d3a;
    --ors-blue: #0b3b78;
    --ors-teal: #00a79d;
    --ors-light: #f5f7f9;
    --ors-text: #0b1838;
    --ors-muted: #52627a;
}

.ors-hero {
    position: relative;
    min-height: 620px;
    background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 22%, rgba(255,255,255,0.55) 40%, rgba(255,255,255,0.08) 100%), url('/images/retail-hero.png') center right / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 7%;
    overflow: hidden;
}

.ors-hero-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ors-hero-text {
    max-width: 650px;
}

.ors-hero-logo {
    width: 240px;
    max-width: 100%;
    margin-bottom: 5px;
}

.ors-hero-text h1 {
    font-size: 4.25rem;
    font-weight: 900;
    color: var(--ors-navy);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.ors-hero-text h2 {
    font-size: 2rem;
    font-weight: 850;
    color: var(--ors-navy);
    line-height: 1.25;
}

    .ors-hero-text h2 span {
        color: var(--ors-teal);
    }

.ors-hero-text p {
    font-size: 1.15rem;
    color: #263653;
    margin: 25px 0;
    max-width: 520px;
}

.ors-hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
}

.ors-btn-primary {
    background: var(--ors-teal);
    color: white;
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 800;
    border: 1px solid var(--ors-teal);
}

    .ors-btn-primary:hover {
        background: #008f87;
        color: white;
    }

.ors-btn-outline {
    border: 1px solid var(--ors-blue);
    color: var(--ors-navy);
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 800;
    background: white;
}

    .ors-btn-outline:hover {
        background: var(--ors-navy);
        color: white;
    }

.ors-btn-light {
    background: white;
    color: var(--ors-navy);
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 800;
}

.ors-hero-badges {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

    .ors-hero-badges div {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .ors-hero-badges i {
        color: var(--ors-teal);
        font-size: 1.6rem;
    }

    .ors-hero-badges span {
        display: flex;
        flex-direction: column;
        font-size: 0.82rem;
        color: var(--ors-text);
        line-height: 1.25;
    }

.ors-feature-panel {
    width: 350px;
    background: rgba(8, 29, 58, 0.92);
    color: white;
    padding: 34px;
    border-radius: 22px;
    backdrop-filter: blur(8px);
    box-shadow: 0 25px 55px rgba(0,0,0,.35);
}

    .ors-feature-panel div {
        margin-bottom: 28px;
    }

        .ors-feature-panel div:last-child {
            margin-bottom: 0;
        }

    .ors-feature-panel i {
        color: var(--ors-teal);
        font-size: 2rem;
    }

    .ors-feature-panel h4 {
        margin-top: 8px;
        font-weight: 800;
    }

    .ors-feature-panel p {
        margin: 0;
        color: #e5edf7;
    }

.ors-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 35px 7%;
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.ors-feature-card {
    padding: 24px 25px;
    border-right: 1px solid #e5e9ef;
    text-align: center;
}

    .ors-feature-card:last-child {
        border-right: none;
    }

    .ors-feature-card i {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        background: rgba(0, 167, 157, 0.08);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 2.2rem;
        color: var(--ors-teal);
        margin-bottom: 14px;
    }

    .ors-feature-card h3 {
        color: var(--ors-navy);
        font-size: 1.08rem;
        font-weight: 850;
        margin-bottom: 8px;
    }

    .ors-feature-card p {
        color: #33415c;
        font-size: 0.95rem;
        margin-bottom: 0;
    }

.trust-bar {
    background: linear-gradient(90deg, #041633, #062048, #041633);
    color: white;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 34px 7%;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid rgba(255,255,255,.20);
    padding-right: 20px;
}

    .trust-item:last-child {
        border-right: none;
    }

    .trust-item i {
        font-size: 2.8rem;
        color: #68d9d2;
    }

    .trust-item h5 {
        margin: 0;
        font-weight: 800;
    }

    .trust-item p {
        margin: 0;
        opacity: .9;
        font-size: .9rem;
    }

.ors-section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 38px;
}

.ors-section-label {
    color: var(--ors-teal);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ors-section-heading h2,
.ors-why h2,
.ors-final-cta h2 {
    color: var(--ors-navy);
    font-size: 2.2rem;
    font-weight: 900;
    margin-top: 12px;
}

.ors-section-heading p {
    color: var(--ors-muted);
    font-size: 1.05rem;
}

.ors-screenshots {
    padding: 75px 7%;
    background: #f8fafc;
}

.ors-screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ors-screenshot-card {
    background: white;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
    border: 1px solid rgba(148, 163, 184, .2);
}

    .ors-screenshot-card i {
        color: var(--ors-teal);
        font-size: 2.8rem;
    }

    .ors-screenshot-card h3 {
        color: var(--ors-navy);
        font-weight: 850;
        margin-top: 18px;
    }

    .ors-screenshot-card p {
        color: var(--ors-muted);
        margin-bottom: 0;
    }

.ors-product-suite {
    padding: 75px 7%;
    background: white;
}

.ors-product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

    .ors-product-grid div {
        border: 1px solid #e2e8f0;
        border-radius: 18px;
        padding: 24px 16px;
        text-align: center;
        color: var(--ors-navy);
        background: #ffffff;
        box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
    }

    .ors-product-grid strong {
        color: var(--ors-teal);
        display: block;
    }

.ors-why {
    padding: 75px 7%;
    background: #f8fafc;
}

    .ors-why p {
        max-width: 850px;
        color: #33415c;
        font-size: 1.05rem;
    }

.ors-final-cta {
    background: linear-gradient(135deg, #041633, #0b3b78);
    color: white;
    text-align: center;
    padding: 70px 7%;
}

    .ors-final-cta h2 {
        color: white;
    }

    .ors-final-cta p {
        color: #dbeafe;
        margin-bottom: 28px;
    }

    .ors-final-cta div {
        display: flex;
        justify-content: center;
        gap: 16px;
    }

@media (max-width: 1200px) {
    .ors-hero-text h1 {
        font-size: 3.5rem;
    }

    .ors-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .ors-hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .ors-feature-panel {
        width: 100%;
    }

    .ors-features,
    .trust-bar,
    .ors-screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ors-feature-card {
        border-right: none;
        border-bottom: 1px solid #e5e9ef;
    }
}

@media (max-width: 576px) {
    .ors-hero {
        padding: 50px 25px;
    }

    .ors-hero-logo {
        width: 190px;
    }

    .ors-hero-text h1 {
        font-size: 2.5rem;
    }

    .ors-hero-buttons,
    .ors-final-cta div {
        flex-direction: column;
    }

    .ors-features,
    .trust-bar,
    .ors-screenshot-grid,
    .ors-product-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.20);
        padding-bottom: 20px;
    }

        .trust-item:last-child {
            border-bottom: none;
        }
}

.app-navbar {
    position: relative;
    z-index: 9999;
}

.login-nav {
    display: flex !important;
    align-items: center;
    //gap: 0.5rem;
    margin-left: auto !important;
}
  

    .login-nav .nav-link,
    .login-nav a {
        color: #ffffff !important;
        display: inline-block !important;
        visibility: visible !important;
    }

.app-navbar .login-nav .nav-link,
.app-navbar .login-nav a {
    color: #ffffff !important;
}



 

.ors-btn-demo {
    background: var(--ors-navy);
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 800;
    border: 1px solid var(--ors-navy);
}

    .ors-btn-demo:hover {
        background: #041633;
        color: #ffffff;
    }

.ors-hero-buttons {
    flex-wrap: wrap;
}



/* ==========================
   Navbar Auth Links
========================== */

.login-nav {
    align-items: center;
    gap: 24px;
}


.app-navbar .login-nav .ors-nav-auth-link {
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: .3px;
    transition: .2s ease;
}


    .app-navbar .login-nav .ors-nav-auth-link:hover {
        color: var(--ors-teal) !important;
    }


.app-navbar .login-nav .ors-nav-register-link {
    color: var(--ors-teal) !important;
    font-weight: 800;
    letter-spacing: .3px;
    transition: .2s ease;
}


    .app-navbar .login-nav .ors-nav-register-link:hover {
        color: #ffffff !important;
    }

.ors-experience {
    padding: 80px 7%;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
}

.ors-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ors-experience-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    border: 1px solid rgba(148, 163, 184, .25);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
    transition: all .2s ease;
}

    .ors-experience-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 55px rgba(15, 23, 42, .13);
    }

    .ors-experience-card.featured {
        background: linear-gradient(135deg, #041633, #0b3b78);
        color: #ffffff;
        transform: translateY(-10px);
    }

        .ors-experience-card.featured h3,
        .ors-experience-card.featured p {
            color: #ffffff;
        }

.ors-experience-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(0, 167, 157, .10);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ors-experience-icon i {
        font-size: 2.4rem;
        color: var(--ors-teal);
    }

.ors-experience-card h3 {
    color: var(--ors-navy);
    font-weight: 850;
    margin-bottom: 12px;
}

.ors-experience-card p {
    color: var(--ors-muted);
    margin-bottom: 24px;
}

@media (max-width: 992px) {
    .ors-experience-grid {
        grid-template-columns: 1fr;
    }

    .ors-experience-card.featured {
        transform: none;
    }
}

/* Fix logged-in user dropdown */

.login-nav .dropdown-menu {
    display: none;
}

    .login-nav .dropdown-menu.show {
        display: block;
    }

.app-navbar .login-nav .dropdown-menu {
    background: #ffffff;
}

    .app-navbar .login-nav .dropdown-menu .dropdown-item,
    .app-navbar .login-nav .dropdown-menu a,
    .app-navbar .login-nav .dropdown-menu button {
        color: #0f172a !important;
        font-weight: 600;
    }

        .app-navbar .login-nav .dropdown-menu .dropdown-item:hover,
        .app-navbar .login-nav .dropdown-menu a:hover,
        .app-navbar .login-nav .dropdown-menu button:hover {
            background: #f1f5f9;
            color: var(--ors-navy) !important;
        }


/* Logged-in user dropdown fix */

.login-nav {
    display: flex !important;
    align-items: center;
    margin-left: auto !important;
}

.app-navbar .login-nav .ors-user-menu {
    color: #ffffff !important;
    font-weight: 700;
}

.app-navbar .login-nav .ors-user-dropdown {
    display: none;
    background: #ffffff;
    min-width: 230px;
    border-radius: 16px;
    padding: .65rem;
}

    .app-navbar .login-nav .ors-user-dropdown.show {
        display: block;
    }

    .app-navbar .login-nav .ors-user-dropdown .dropdown-item,
    .app-navbar .login-nav .ors-user-dropdown button {
        color: #0f172a !important;
        font-weight: 600;
        border-radius: 10px;
        padding: .7rem 1rem;
    }

        .app-navbar .login-nav .ors-user-dropdown .dropdown-item:hover,
        .app-navbar .login-nav .ors-user-dropdown button:hover {
            background: #f1f5f9;
            color: var(--ors-navy) !important;
        }


.demo-login-panel {
    background: #f8fafc;
    border: 1px solid #dbe3ea;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 25px;
}

    .demo-login-panel h4 {
        color: var(--ors-navy);
        font-weight: 800;
    }

.demo-role-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin: 18px 0;
}

    .demo-role-grid button {
        border: 1px solid #dbe3ea;
        background: white;
        border-radius: 14px;
        padding: 14px;
        text-align: left;
        transition: .2s;
    }

        .demo-role-grid button:hover {
            transform: translateY(-3px);
            border-color: var(--ors-teal);
        }

    .demo-role-grid strong {
        display: block;
        color: var(--ors-navy);
    }

    .demo-role-grid span {
        font-size: .85rem;
        color: #64748b;
    }

.demo-env-banner {
    background: linear-gradient(90deg, #00a79d, #0b3b78);
    color: #ffffff;
    font-weight: 700;
    padding: .75rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .12);
}

    .demo-env-banner i {
        margin-right: .4rem;
    }