:root {
    --storeon-blue: #1a4f8a;
    --storeon-blue-dark: #0d3260;
    --storeon-orange: #e85d04;
    --storeon-light: #f8f9fa;
    --storeon-border: #dee2e6;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
}

/* Navigation */
.navbar-storeon {
    background: var(--storeon-blue);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.navbar-storeon .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff !important;
    letter-spacing: -0.5px;
}

.navbar-storeon .navbar-brand span {
    color: var(--storeon-orange);
}

.navbar-storeon .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
}

.navbar-storeon .nav-link:hover,
.navbar-storeon .nav-link.active {
    color: #fff !important;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--storeon-blue) 0%, var(--storeon-blue-dark) 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--storeon-orange);
}

.hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 560px;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-storeon {
    background: var(--storeon-orange);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    transition: background 0.2s, transform 0.1s;
}

.btn-storeon:hover {
    background: #c84d00;
    color: #fff;
    transform: translateY(-1px);
}

.btn-storeon-outline {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    background: transparent;
    transition: all 0.2s;
}

.btn-storeon-outline:hover {
    background: #fff;
    color: var(--storeon-blue);
}

/* Feature cards */
.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: 1px solid var(--storeon-border);
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--storeon-blue), var(--storeon-blue-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: #fff;
}

/* Sections */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--storeon-blue-dark);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Steps */
.step-number {
    width: 48px;
    height: 48px;
    background: var(--storeon-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    flex-shrink: 0;
}

/* Dashboard cards */
.dash-stat {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--storeon-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dash-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.dash-stat-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--storeon-blue-dark);
}

.dash-stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 2px;
}

/* Sailo card */
.sailo-card {
    background: #fff;
    border: 1px solid var(--storeon-border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: box-shadow 0.2s;
}

.sailo-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Admin sidebar */
.admin-sidebar {
    background: var(--storeon-blue-dark);
    min-height: 100vh;
    padding-top: 1rem;
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,0.75);
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    margin: 2px 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.admin-sidebar .sidebar-heading {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 1.25rem 0.25rem;
}

/* Auth pages */
.auth-card {
    max-width: 440px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}

.auth-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--storeon-blue);
    text-decoration: none;
    display: block;
    text-align: center;
    margin-bottom: 0.25rem;
}

.auth-logo span {
    color: var(--storeon-orange);
}

/* Footer */
footer {
    background: var(--storeon-blue-dark);
    color: rgba(255,255,255,0.8);
    padding: 3rem 0 1.5rem;
}

footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

/* Utilities */
.bg-blue { background: var(--storeon-blue); }
.bg-blue-dark { background: var(--storeon-blue-dark); }
.text-blue { color: var(--storeon-blue); }
.text-orange { color: var(--storeon-orange); }

.table-hover tbody tr:hover {
    background: rgba(26, 79, 138, 0.04);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero { padding: 60px 0 50px; }
}
