/* ========================================
   Owner Dashboard - Damara Cafe Style
   Mesh Gradient + Glassmorphism Design
   ======================================== */

:root {
    /* Seafood Cafe Palette */
    --gradient-purple: linear-gradient(135deg, #0f6171 0%, #127b86 100%);
    --gradient-green: linear-gradient(135deg, #146c63 0%, #2f9f8f 100%);
    --gradient-pink: linear-gradient(135deg, #de7b58 0%, #f2a477 100%);
    --gradient-cyan: linear-gradient(135deg, #2a7f96 0%, #5db7c6 100%);
    --gradient-orange: linear-gradient(135deg, #c96d4f 0%, #e3a06e 100%);
    --gradient-blue: linear-gradient(135deg, #1d6f7a 0%, #4aa8b8 100%);

    /* Mesh Gradient Background */
    --mesh-gradient:
        radial-gradient(at 14% 12%, hsla(190, 49%, 72%, 0.3) 0px, transparent 42%),
        radial-gradient(at 82% 8%, hsla(20, 71%, 74%, 0.22) 0px, transparent 38%),
        radial-gradient(at 0% 54%, hsla(183, 39%, 77%, 0.26) 0px, transparent 46%),
        radial-gradient(at 88% 62%, hsla(196, 45%, 74%, 0.26) 0px, transparent 44%),
        radial-gradient(at 18% 100%, hsla(38, 67%, 84%, 0.26) 0px, transparent 38%),
        radial-gradient(at 100% 100%, hsla(18, 71%, 78%, 0.18) 0px, transparent 34%);

    /* Glass Effect */
    --glass-bg: rgba(255, 251, 245, 0.78);
    --glass-border: rgba(255, 255, 255, 0.7);
    --glass-shadow: 0 8px 32px rgba(16, 44, 52, 0.12);

    /* Text Colors */
    --text-primary: #15333a;
    --text-secondary: #35565d;
    --text-muted: #6d7f83;
    --text-white: #ffffff;

    /* Accent Colors */
    --accent-success: #19866f;
    --accent-danger: #db7352;
    --accent-warning: #d89a4f;
    --accent-info: #2f8ca0;

    /* Spacing & Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
}

/* ========== Body & Background ========== */
body.owner-dashboard {
    min-height: 100vh;
    background: var(--mesh-gradient), linear-gradient(135deg, #eef8f7 0%, #fcf7f1 48%, #f6fbfb 100%);
    background-attachment: fixed;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
}

body.owner-login-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

/* ========== Header - Glass Style ========== */
.owner-header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 1.25rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.owner-header-content {
    max-width: 1000px;
    margin: 0 auto;
}

.owner-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.owner-logo {
    height: 40px;
    width: auto;
}

.owner-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.owner-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--gradient-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(18, 123, 134, 0.28);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(18, 123, 134, 0.34);
}

.owner-greeting {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.owner-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0.25rem 0 0;
}

.owner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--gradient-purple);
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.75rem;
    color: white;
    box-shadow: 0 4px 12px rgba(18, 123, 134, 0.24);
}

.owner-badge i {
    font-size: 0.75rem;
}

.owner-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.owner-header-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.owner-header-chip i {
    color: #127b86;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(219, 115, 82, 0.14);
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #b2553b;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #db7352;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* ========== KPI Cards - Colorful Gradients ========== */
.owner-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.25rem;
}

.owner-kpi-card {
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-kpi-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.owner-kpi-card:hover {
    transform: translateY(-4px) scale(1.02);
}

/* KPI Card Colors */
.owner-kpi-card:nth-child(1) {
    background: var(--gradient-purple);
    box-shadow: 0 10px 25px -5px rgba(18, 123, 134, 0.36);
}

.owner-kpi-card:nth-child(2) {
    background: var(--gradient-green);
    box-shadow: 0 10px 25px -5px rgba(17, 153, 142, 0.5);
}

.owner-kpi-card:nth-child(3) {
    background: var(--gradient-pink);
    box-shadow: 0 10px 25px -5px rgba(238, 9, 121, 0.4);
}

.owner-kpi-card:nth-child(4) {
    background: var(--gradient-cyan);
    box-shadow: 0 10px 25px -5px rgba(0, 198, 251, 0.5);
}

.owner-kpi-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    font-size: 1.375rem;
    color: white;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.owner-kpi-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.owner-kpi-value {
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.2;
}

.owner-kpi-trend {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.owner-kpi-trend.up,
.owner-kpi-trend.down,
.owner-kpi-trend.neutral {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

/* ========== Feature Grid - Glass Cards ========== */
.owner-features {
    padding: 1.5rem 1.25rem;
}

.owner-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.owner-section-title i {
    color: #127b86;
}

.owner-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
}

.owner-feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.125rem 0.875rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.owner-feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.owner-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.owner-feature-item:hover .owner-feature-icon {
    transform: scale(1.08);
}

/* Feature Icon Gradients */
.owner-feature-item:nth-child(1) .owner-feature-icon {
    background: var(--gradient-purple);
    box-shadow: 0 6px 18px rgba(18, 123, 134, 0.28);
}

.owner-feature-item:nth-child(2) .owner-feature-icon {
    background: var(--gradient-orange);
    box-shadow: 0 6px 18px rgba(240, 147, 251, 0.4);
}

.owner-feature-item:nth-child(3) .owner-feature-icon {
    background: var(--gradient-cyan);
    box-shadow: 0 6px 18px rgba(0, 198, 251, 0.4);
}

.owner-feature-item:nth-child(4) .owner-feature-icon {
    background: var(--gradient-green);
    box-shadow: 0 6px 18px rgba(17, 153, 142, 0.4);
}

.owner-feature-item:nth-child(5) .owner-feature-icon {
    background: var(--gradient-pink);
    box-shadow: 0 6px 18px rgba(238, 9, 121, 0.35);
}

.owner-feature-item:nth-child(6) .owner-feature-icon {
    background: var(--gradient-blue);
    box-shadow: 0 6px 18px rgba(79, 172, 254, 0.4);
}

.owner-feature-label {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.owner-feature-desc {
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--text-muted);
}

/* ========== Info Cards - Glassmorphism ========== */
.owner-info-cards {
    padding: 0 1.25rem 2rem;
}

.owner-info-grid {
    display: grid;
    gap: 1.25rem;
}

.owner-info-grid .owner-info-card {
    margin-bottom: 0;
}

.owner-info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.owner-info-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(18, 123, 134, 0.12);
}

.owner-info-card-title i {
    color: #127b86;
    font-size: 1.25rem;
}

.owner-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
    border-radius: 8px;
}

.owner-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
}

.owner-stat-row:first-child {
    padding-top: 0.5rem;
}

.owner-stat-row:hover {
    padding-left: 1rem;
    background: rgba(18, 123, 134, 0.05);
}

.owner-stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.owner-stat-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ========== Progress Bar ========== */
.owner-progress {
    height: 10px;
    background: rgba(18, 123, 134, 0.12);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 0.75rem;
}

.owner-progress-bar {
    height: 100%;
    background: var(--gradient-purple);
    border-radius: 999px;
    transition: width 1s ease;
    position: relative;
}

.owner-progress-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ========== Alert Box ========== */
.owner-alert {
    background: linear-gradient(135deg, rgba(255, 236, 229, 0.88) 0%, rgba(255, 224, 209, 0.86) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 168, 126, 0.55);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.owner-alert-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #db7352 0%, #c65f3e 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(198, 95, 62, 0.26);
}

.owner-alert-content {
    flex: 1;
}

.owner-alert-title {
    font-weight: 700;
    color: #974a34;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.owner-alert-text {
    font-size: 0.8125rem;
    color: #7d4a3b;
    line-height: 1.5;
}

.owner-alert-link {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
}

.owner-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.owner-summary > div {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-sm);
    padding: 0.875rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.owner-summary strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.owner-quick-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: inherit;
    text-decoration: none;
}

.owner-quick-link-label {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-primary);
    font-weight: 600;
}

.owner-quick-link i.bi-chevron-right {
    color: var(--text-muted);
}

/* ========== Owner Home Enhancements ========== */
body.owner-dashboard-home {
    position: relative;
    isolation: isolate;
}

body.owner-dashboard-home::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.52), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(74, 168, 184, 0.16), transparent 24%),
        radial-gradient(circle at 78% 78%, rgba(227, 160, 110, 0.14), transparent 24%);
}

.owner-home-hero {
    position: relative;
    top: auto;
    z-index: auto;
    padding-top: 1.75rem;
    padding-bottom: 2rem;
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.owner-home-surface {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 252, 247, 0.92), rgba(244, 252, 251, 0.64));
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow:
        0 28px 60px rgba(16, 44, 52, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.owner-home-surface::before,
.owner-home-surface::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.owner-home-surface::before {
    width: 220px;
    height: 220px;
    top: -110px;
    right: -80px;
    background: radial-gradient(circle, rgba(74, 168, 184, 0.24), transparent 70%);
}

.owner-home-surface::after {
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: -80px;
    background: radial-gradient(circle, rgba(227, 160, 110, 0.2), transparent 72%);
}

.owner-home-brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.owner-home-brand-copy {
    display: grid;
    gap: 0.15rem;
}

.owner-home-kicker {
    font-size: 0.675rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5f7b7f;
}

.owner-home-brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.owner-home-intro {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.owner-home-copy {
    max-width: 38rem;
}

.owner-dashboard-home .owner-greeting {
    font-size: clamp(1.8rem, 4vw, 2.65rem);
    letter-spacing: -0.04em;
}

.owner-dashboard-home .owner-subtitle {
    max-width: 34rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.owner-dashboard-home .owner-header-chip {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.7);
}

.owner-home-spotlight {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 1.25rem;
    color: white;
    background: linear-gradient(145deg, rgba(12, 86, 96, 0.96), rgba(26, 112, 122, 0.92));
    box-shadow: 0 18px 40px rgba(18, 82, 90, 0.28);
}

.owner-home-spotlight::before {
    content: '';
    position: absolute;
    inset: auto -30px -40px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 208, 169, 0.24), transparent 72%);
}

.owner-home-spotlight-label {
    position: relative;
    z-index: 1;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.78;
}

.owner-home-spotlight-value {
    position: relative;
    z-index: 1;
    margin-top: 0.55rem;
    font-size: clamp(1.75rem, 3vw, 2.3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.owner-home-spotlight-meta {
    position: relative;
    z-index: 1;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    line-height: 1.55;
    opacity: 0.82;
}

.owner-home-spotlight-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.65rem;
    margin-top: 1rem;
}

.owner-home-spotlight-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.owner-home-spotlight-list span {
    font-size: 0.8rem;
    opacity: 0.82;
}

.owner-home-spotlight-list strong {
    font-size: 0.9rem;
    font-weight: 700;
}

.owner-home-kpi-grid {
    position: relative;
    z-index: 2;
    margin-top: -1.75rem;
}

.owner-home-kpi-card {
    min-height: 190px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 18px 34px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.owner-home-kpi-card .owner-kpi-value {
    font-size: clamp(1.55rem, 2vw, 2rem);
}

.owner-home-section {
    padding-top: 1.1rem;
}

.owner-home-section + .owner-home-section {
    padding-top: 0.5rem;
}

.owner-section-head {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.owner-section-kicker {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #64748b;
    margin-bottom: 0.35rem;
}

.owner-section-copy {
    margin: 0;
    max-width: 40rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.owner-home-feature-grid {
    gap: 1rem;
}

.owner-home-feature-item {
    position: relative;
    min-height: 190px;
    padding: 1rem;
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
}

.owner-home-feature-item::before {
    content: '';
    position: absolute;
    right: -26px;
    bottom: -38px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 123, 134, 0.14), transparent 72%);
    pointer-events: none;
}

.owner-home-feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.45rem;
    margin-bottom: 0.15rem;
}

.owner-home-feature-item .owner-feature-label {
    font-size: 0.95rem;
}

.owner-home-feature-item .owner-feature-desc {
    max-width: 18rem;
    margin-bottom: 0;
}

.owner-feature-arrow {
    margin-top: auto;
    align-self: flex-end;
    width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--text-secondary);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.owner-home-feature-item:hover .owner-feature-arrow {
    transform: translate(2px, -2px);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-primary);
}

.owner-home-panels {
    padding-top: 0.5rem;
}

.owner-home-panel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 252, 247, 0.88), rgba(244, 252, 251, 0.62));
    box-shadow: 0 18px 42px rgba(16, 44, 52, 0.08);
}

.owner-home-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
}

.owner-home-panel-target::before {
    background: linear-gradient(90deg, #127b86, #2a7f96);
}

.owner-home-panel-operations::before {
    background: linear-gradient(90deg, #11998e, #38ef7d);
}

.owner-home-panel-shortcuts::before {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.owner-panel-head {
    margin-bottom: 1rem;
}

.owner-home-panel .owner-info-card-title {
    margin-bottom: 0.55rem;
}

.owner-panel-copy {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.89rem;
    line-height: 1.65;
}

.owner-home-panel .owner-stat-row {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.55);
    margin-bottom: 0.55rem;
    padding: 0.9rem 0.9rem;
}

.owner-home-panel .owner-stat-row:hover {
    padding-left: 0.9rem;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.owner-home-panel .owner-stat-row:last-child {
    padding-bottom: 0.9rem;
}

.owner-home-panel .owner-alert {
    margin-top: 1rem;
    margin-bottom: 0;
}

.owner-home-panel .owner-summary > div {
    background: rgba(255, 255, 255, 0.68);
}

.owner-shortcut-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.owner-shortcut-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.owner-shortcut-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.owner-shortcut-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: white;
    font-size: 1.1rem;
    background: var(--gradient-purple);
    box-shadow: 0 12px 18px rgba(18, 123, 134, 0.2);
}

.owner-shortcut-item:nth-child(2) .owner-shortcut-icon {
    background: var(--gradient-green);
    box-shadow: 0 12px 18px rgba(17, 153, 142, 0.22);
}

.owner-shortcut-item:nth-child(3) .owner-shortcut-icon {
    background: var(--gradient-pink);
    box-shadow: 0 12px 18px rgba(238, 9, 121, 0.18);
}

.owner-shortcut-item:nth-child(4) .owner-shortcut-icon {
    background: linear-gradient(135deg, #c96d4f, #db7352);
    box-shadow: 0 12px 18px rgba(201, 109, 79, 0.2);
}

.owner-shortcut-label {
    flex: 1;
    font-weight: 700;
}

.owner-shortcut-arrow {
    color: var(--text-muted);
    transition: transform 0.25s ease, color 0.25s ease;
}

.owner-shortcut-item:hover .owner-shortcut-arrow {
    transform: translate(2px, -2px);
    color: var(--text-primary);
}

/* ========== Login Page ========== */
.owner-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mesh-gradient), linear-gradient(135deg, #eef8f7 0%, #fcf7f1 48%, #f6fbfb 100%);
    background-attachment: fixed;
    padding: 1.5rem;
}

.owner-login-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.25rem 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.owner-login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.owner-login-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.owner-login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.owner-login-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.owner-form-group {
    margin-bottom: 1.25rem;
}

.owner-form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.owner-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
}

.owner-form-input:focus {
    outline: none;
    border-color: #127b86;
    box-shadow: 0 0 0 3px rgba(18, 123, 134, 0.15);
    background: white;
}

.owner-form-input::placeholder {
    color: var(--text-muted);
}

.owner-btn-primary {
    width: 100%;
    padding: 0.9375rem 1.5rem;
    background: var(--gradient-purple);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(18, 123, 134, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.owner-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(18, 123, 134, 0.34);
}

.owner-btn-primary:active {
    transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 576px) {
    .owner-kpi-grid {
        grid-template-columns: 1fr;
    }

    .owner-feature-grid {
        grid-template-columns: 1fr;
    }

    .owner-greeting {
        font-size: 1.375rem;
    }

    .owner-header-top {
        flex-wrap: wrap;
        gap: 0.9rem;
        align-items: flex-start;
    }

    .owner-profile {
        width: 100%;
        justify-content: space-between;
    }

    .owner-header-meta {
        gap: 0.5rem;
    }

    .owner-header-chip {
        width: 100%;
        justify-content: center;
    }

    .owner-kpi-value {
        font-size: 1.25rem;
    }

    .owner-summary {
        grid-template-columns: 1fr;
    }

    .owner-home-surface {
        padding: 1.15rem;
        border-radius: 24px;
    }

    .owner-home-brand {
        gap: 0.65rem;
    }

    .owner-home-brand-name {
        font-size: 0.95rem;
    }

    .owner-home-kpi-grid {
        margin-top: 0.5rem;
    }

    .owner-home-feature-item {
        min-height: auto;
        padding: 0.95rem;
    }

    .owner-home-hero {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .owner-home-spotlight {
        padding: 1rem;
    }

    .owner-home-spotlight-list div {
        padding: 0.7rem 0.75rem;
    }

    .owner-section-head {
        gap: 0.4rem;
    }

    .owner-section-copy,
    .owner-panel-copy {
        font-size: 0.84rem;
    }

    .owner-home-panel {
        border-radius: 20px;
    }

    .owner-home-panel .owner-stat-row {
        padding: 0.85rem 0.8rem;
    }

    .owner-feature-arrow {
        width: 2.1rem;
        height: 2.1rem;
    }

    .owner-shortcut-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .owner-kpi-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .owner-feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .owner-features {
        padding: 2rem 1.5rem;
    }

    .owner-info-cards {
        padding: 0 1.5rem 2rem;
    }

    .owner-section-head {
        flex-direction: row;
        align-items: end;
        justify-content: space-between;
        gap: 1.25rem;
    }

    .owner-section-copy {
        text-align: right;
    }

    .owner-home-intro {
        grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
        align-items: end;
    }
}

@media (min-width: 992px) {
    .owner-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .owner-info-card-full {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {

    .owner-kpi-grid,
    .owner-features,
    .owner-info-cards {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ========== Animations ========== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.owner-kpi-card,
.owner-feature-item,
.owner-info-card {
    animation: slideUp 0.5s ease backwards;
}

.owner-kpi-card:nth-child(1) {
    animation-delay: 0.05s;
}

.owner-kpi-card:nth-child(2) {
    animation-delay: 0.1s;
}

.owner-kpi-card:nth-child(3) {
    animation-delay: 0.15s;
}

.owner-kpi-card:nth-child(4) {
    animation-delay: 0.2s;
}

.owner-feature-item:nth-child(1) {
    animation-delay: 0.25s;
}

.owner-feature-item:nth-child(2) {
    animation-delay: 0.3s;
}

.owner-feature-item:nth-child(3) {
    animation-delay: 0.35s;
}

.owner-feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.owner-feature-item:nth-child(5) {
    animation-delay: 0.45s;
}

.owner-feature-item:nth-child(6) {
    animation-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
    .owner-kpi-card,
    .owner-feature-item,
    .owner-info-card,
    .owner-shortcut-item,
    .owner-avatar,
    .owner-feature-arrow,
    .owner-shortcut-arrow,
    .live-dot {
        animation: none !important;
        transition: none !important;
    }
}
