.merchant-shell {
    min-height: 100vh;
    display: flex;
    background: #f5f7fb;
    color: #111827;
}

.merchant-sidebar {
    width: 290px;
    background: linear-gradient(180deg, #061a2f, #00101f);
    color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.merchant-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 34px;
    color: #f2b705;
}

.brand-title {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
}

.brand-subtitle {
    color: #f2b705;
    font-size: 21px;
    font-weight: 900;
}

.merchant-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.merchant-avatar {
    width: 52px;
    height: 52px;
    border: 1px solid #f2b705;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.merchant-name {
    font-weight: 800;
}

.merchant-status {
    display: inline-block;
    margin-top: 5px;
    background: #0f8a4b;
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.merchant-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.merchant-nav a {
    color: #e5edf7;
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 700;
}

.merchant-nav a.active,
.merchant-nav a:hover {
    background: rgba(242, 183, 5, .16);
    color: #f2b705;
}

.merchant-help {
    margin-top: auto;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    padding: 18px;
    background: rgba(255,255,255,.06);
}

.btn-book {
    display: block;
    background: #f2b705;
    color: #111827;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    padding: 12px;
    border-radius: 10px;
}

.merchant-main {
    flex: 1;
    padding: 28px 32px;
}

.merchant-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.merchant-topbar h1 {
    margin: 0;
    font-weight: 900;
    font-size: 26px;
}

.merchant-topbar p {
    margin: 4px 0 0;
    color: #6b7280;
}

.merchant-user-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 12px 18px;
    border-radius: 14px;
}

.merchant-hero {
    min-height: 310px;
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 35%, rgba(255,255,255,.2) 100%),
        url('/img/merchant/merchant-dashboard-hero.jpg') center/cover no-repeat;
    border: 1px solid #e5e7eb;
    padding: 36px 42px;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 470px;
}

.hero-copy h2 {
    font-size: 36px;
    font-weight: 950;
    margin: 0;
}

.hero-copy h3 {
    font-size: 32px;
    font-weight: 950;
    color: #f2b705;
    margin: 4px 0 18px;
}

.hero-copy p {
    font-size: 17px;
    color: #374151;
}

.hero-btn {
    display: inline-block;
    background: #061a2f;
    color: #fff;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
    margin-top: 10px;
}

.approved-banner {
    margin-top: 18px;
    background: #f0fff4;
    border: 1px solid #16a34a;
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.approved-icon {
    width: 48px;
    height: 48px;
    background: #0f8a4b;
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 900;
    font-size: 24px;
}

.approved-banner p {
    margin: 4px 0 0;
    color: #4b5563;
}

.outline-btn {
    margin-left: auto;
    color: #061a2f;
    border: 1px solid #94a3b8;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    text-align: center;
}

.merchant-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-card span {
    color: #4b5563;
    font-size: 14px;
}

.stat-card strong {
    display: block;
    font-size: 24px;
    margin: 4px 0;
}

.stat-card small {
    color: #6b7280;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 22px;
}

.stat-icon.blue { background: #2563eb; }
.stat-icon.green { background: #16a34a; }
.stat-icon.yellow { background: #f2b705; }
.stat-icon.purple { background: #7c3aed; }

.merchant-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delivery-row {
    display: grid;
    grid-template-columns: 130px 1fr 1fr 1fr 90px;
    gap: 12px;
    padding: 15px 0;
    border-top: 1px solid #edf0f5;
    align-items: center;
}

.delivery-status {
    background: #dcfce7;
    color: #166534;
    padding: 7px 12px;
    border-radius: 999px;
    text-align: center;
    font-weight: 800;
}

.overview-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f5;
    padding: 14px 0;
}

.support-box {
    margin-top: 26px;
    background: #f9fafb;
    border-radius: 14px;
    padding: 20px;
}

.empty-state {
    padding: 36px;
    text-align: center;
    color: #6b7280;
}

@media (max-width: 1100px) {
    .merchant-shell {
        flex-direction: column;
    }

    .merchant-sidebar {
        width: 100%;
    }

    .merchant-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .merchant-grid {
        grid-template-columns: 1fr;
    }
}
.carry-full-width-page {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.merchant-shell {
    width: 100%;
    min-height: calc(100vh - 115px);
}