:root {
    --primary: #09757a;
    --primary-dark: #024d52;
    --primary-light: #e6f8f7;
    --dark: #061a23;
    --muted: #60727d;
    --white: #ffffff;
    --card: #ffffff;
    --border: #dceaec;
    --bg: #f8fcfc;
    --shadow: 0 25px 60px rgba(2, 77, 82, 0.12);
    --brandnest-primary: #09757a;
    --brandnest-primary-dark: #024d52;
    --brandnest-primary-soft: #e7f8f7;
    --brandnest-bg: #f7fcfc;
    --brandnest-dark: #061a23;
    --brandnest-muted: #647982;
    --brandnest-border: #dcebec;
    --brandnest-white: #ffffff;
    --brandnest-danger: #d64545;
    --brandnest-success: #0f8a5f;
    --brandnest-shadow: 0 28px 80px rgba(2, 77, 82, 0.16);
    --brandnest-font: "Google Sans", "Inter", "Segoe UI", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1298px, 92%);
    margin: auto;
}

/* NAVBAR */

.navbar {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(9, 117, 122, 0.08);
}

.nav-wrap {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
}

.logo-icon {
    color: var(--primary);
    font-size: 34px;
}

.nav-links {
    display: flex;
    gap: 42px;
    font-size: 14px;
    font-weight: 700;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    transition: 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #009a9d);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(9, 117, 122, 0.24);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(9, 117, 122, 0.3);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--dark);
    background: white;
}

.btn-light {
    background: white;
    border: 1px solid var(--border);
    color: var(--dark);
}

.big {
    padding: 17px 30px;
}

/* HERO */

.hero {
    padding: 70px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 18%,
            rgba(9, 117, 122, 0.16),
            transparent 28%
        ),
        linear-gradient(180deg, #ffffff 0%, #f8fcfc 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 50px;
}

.badge,
.small-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.12;
    letter-spacing: -2px;
    margin-bottom: 26px;
}

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

.hero-content p {
    max-width: 560px;
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    color: var(--muted);
    font-size: 13px;
}

.hero-points span {
    color: #516b73;
}

.hero-image-wrap {
    position: relative;
}

.hero-blob {
    position: absolute;
    right: -80px;
    top: -70px;
    width: 520px;
    height: 520px;
    background: linear-gradient(
        135deg,
        rgba(9, 117, 122, 0.26),
        rgba(9, 117, 122, 0.02)
    );
    border-radius: 46% 54% 61% 39% / 43% 36% 64% 57%;
    z-index: 0;
}

.dashboard-img {
    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(9, 117, 122, 0.12);
}

.floating-score {
    position: absolute;
    left: 25px;
    bottom: -20px;
    z-index: 3;
    background: white;
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.shield {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--primary-light);
    border-radius: 12px;
}

.floating-score p {
    font-size: 12px;
    color: var(--muted);
}

/* TRUSTED */

.trusted {
    padding: 40px 0 58px;
    text-align: center;
    background: white;
}

.trusted p {
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 35px;
}

.brand-row {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 22px;
    font-weight: 800;
    color: #455b65;
}

/* MODULES */

.modules {
    padding: 20px 0 70px;
    background: white;
}

.module-box {
    padding: 55px 48px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(9, 117, 122, 0.08),
            transparent 32%
        ),
        #f8fcfc;
    border: 1px solid var(--border);
}

.section-head {
    text-align: center;
    margin-bottom: 38px;
}

.section-head h2 {
    font-size: clamp(34px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.section-head p {
    color: var(--muted);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.module-card {
    background: white;
    padding: 28px 22px;
    border-radius: 14px;
    border: 1px solid var(--border);
    min-height: 190px;
    transition: 0.25s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(2, 77, 82, 0.09);
}

.icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 22px;
}

.icon.blue {
    background: #eaf3ff;
    color: #2574eb;
}

.icon.purple {
    background: #f2eaff;
    color: #8a42ff;
}

.icon.orange {
    background: #fff1e2;
    color: #f28b23;
}

.icon.pink {
    background: #ffeaf1;
    color: #ff4f7b;
}

.module-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.module-card p {
    color: var(--muted);
    font-size: 14px;
}

.center-btn {
    text-align: center;
    margin-top: 34px;
}

/* IMPACT */

.impact {
    background: white;
    padding: 10px 0 70px;
}

.impact-box {
    background:
        radial-gradient(
            circle at 95% 10%,
            rgba(98, 255, 241, 0.32),
            transparent 15%
        ),
        linear-gradient(135deg, #02393f, #00696d);
    border-radius: 26px;
    padding: 48px;
    color: white;
    display: grid;
    grid-template-columns: 0.8fr 1.6fr;
    gap: 42px;
    overflow: hidden;
}

.impact-left span {
    color: #74e8de;
    font-weight: 800;
    font-size: 13px;
}

.impact-left h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 18px 0;
}

.impact-left p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 32px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.stats-row div {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-row div:last-child {
    border-right: 0;
}

.stats-row strong {
    font-size: 42px;
    display: block;
}

.stats-row p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.impact-cards {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
}

.chart-card,
.testimonial {
    background: white;
    color: var(--dark);
    border-radius: 16px;
    padding: 28px;
    min-height: 260px;
}

.chart-card p {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.chart {
    width: 100%;
    margin-top: 24px;
}

.testimonial .quote {
    font-size: 64px;
    color: var(--primary);
    line-height: 1;
}

.testimonial p {
    color: #314850;
    margin-bottom: 30px;
}

.person {
    display: flex;
    gap: 12px;
    align-items: center;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c7edea, #09757a);
}

.person span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

/* PROCESS */

.process {
    padding: 65px 0;
    background: white;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.step {
    width: 250px;
    text-align: left;
}

.step-icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--primary-light);
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 34px;
    margin-bottom: 16px;
}

.step span {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-dark);
}

.step h3 {
    font-size: 17px;
    margin: 5px 0;
}

.step p {
    color: var(--muted);
    font-size: 14px;
}

.step-line {
    width: 90px;
    border-top: 2px dashed #9edbd8;
}

/* CTA */

.cta-section {
    background: white;
    padding-bottom: 70px;
}

.cta-box {
    min-height: 165px;
    border-radius: 20px;
    padding: 28px 44px;
    background: linear-gradient(135deg, #008f91, #2fb7b3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    overflow: hidden;
}

.rocket {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 18px;
}

.cta-box h2 {
    font-size: 34px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.82);
}

/* FOOTER */

.footer {
    background: #021f2a;
    color: white;
    padding: 55px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 44px;
    padding-bottom: 44px;
}

.footer-logo {
    color: white;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 280px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 24px;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.footer h4 {
    margin-bottom: 18px;
}

.footer a {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 12px;
    font-size: 14px;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
    .hero-grid,
    .impact-box {
        grid-template-columns: 1fr;
    }

    .module-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .nav-links {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .hero {
        padding-top: 40px;
    }

    .hero-buttons,
    .cta-box,
    .steps,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .module-grid,
    .stats-row,
    .impact-cards {
        grid-template-columns: 1fr;
    }

    .module-box,
    .impact-box {
        padding: 32px 22px;
    }

    .brand-row {
        justify-content: center;
    }

    .step-line {
        width: 2px;
        height: 45px;
        border-top: none;
        border-left: 2px dashed #9edbd8;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.workspace-page {
    min-height: 100vh;
    background: #f2f1f8;
    color: #050b25;
    font-family: var(--brandnest-font);
}

.workspace-mobile-topbar,
.workspace-bottom-nav {
    display: none;
}

.workspace-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    display: flex;
    flex-direction: column;
    width: 300px;
    border-right: 1px solid #dfe2ec;
    background: #ffffff;
    padding: 20px 16px 12px;
    z-index: 10;
}

.workspace-logo {
    display: inline-flex;
    margin-bottom: 18px;
}

.workspace-logo img {
    height: 38px;
}

.workspace-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #dfe2ec;
    border-radius: 16px;
    padding: 12px;
}

.workspace-avatar {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: #eff4f4;
    color: var(--brandnest-primary);
    font-weight: 900;
}

.workspace-profile strong,
.workspace-profile span {
    display: block;
}

.workspace-profile strong {
    font-size: 15px;
}

.workspace-profile span {
    max-width: 180px;
    overflow: hidden;
    color: #586176;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.workspace-nav {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.workspace-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 8px;
    color: #0d1430;
    padding: 11px 12px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.workspace-nav a.active,
.workspace-nav a:hover {
    background: #c9c4ff;
}

.workspace-nav span {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 8px;
    background: #f1f2f7;
    color: #4e45e8;
    font-size: 12px;
    font-weight: 900;
}

.workspace-sidebar-footer {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.workspace-meter span,
.workspace-meter strong {
    display: block;
}

.workspace-meter span {
    color: #0d1430;
    font-size: 13px;
    font-weight: 800;
}

.workspace-meter strong {
    margin: 5px 0;
    font-size: 15px;
}

.workspace-meter div {
    overflow: hidden;
    height: 7px;
    border-radius: 999px;
    background: #d8d5ff;
}

.workspace-meter i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #3124c9;
}

.workspace-plan {
    border-radius: 10px;
    background: #ffdc57;
    box-shadow: 0 8px 18px rgba(185, 135, 0, 0.18);
    padding: 13px;
    color: #0d1430;
    font-weight: 900;
    text-align: center;
}

.workspace-sidebar-footer button {
    width: 100%;
    border: 1px solid #dfe2ec;
    border-radius: 8px;
    background: white;
    color: #0d1430;
    padding: 12px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.workspace-main {
    margin-left: 300px;
    padding: 0 32px 56px;
}

.workspace-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 48px;
    margin: 0 -32px 24px;
    background: #5144e8;
    color: white;
    font-weight: 900;
}

.workspace-promo a {
    color: #ffdc57;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.workspace-hero-card,
.module-detail-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(100%, 1104px);
    margin: 0 auto 30px;
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(7, 12, 45, 0.92), rgba(10, 17, 61, 0.72)),
        url("https://placehold.co/1200x280/101634/ffffff?text=Brandnest+Workspace");
    background-position: center;
    background-size: cover;
    box-shadow: 0 24px 50px rgba(20, 25, 60, 0.16);
    padding: 28px;
    color: white;
}

.workspace-hero-card span,
.module-detail-hero > span {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.workspace-hero-card h1,
.module-detail-hero h1 {
    margin: 14px 0 8px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
}

.workspace-hero-card p,
.module-detail-hero p {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.workspace-hero-card a,
.module-detail-buy button,
.module-detail-status {
    border: 0;
    border-radius: 22px;
    background: #3124ff;
    color: white;
    padding: 14px 24px;
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.workspace-section,
.workspace-metrics {
    width: min(100%, 1104px);
    margin: 0 auto 44px;
}

.workspace-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.workspace-section-head h2 {
    margin: 0;
    font-size: 21px;
}

.workspace-section-head a,
.workspace-section-head span {
    color: #5144e8;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.workspace-action-grid,
.workspace-module-grid,
.workspace-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.workspace-action-grid article,
.workspace-action-grid a,
.workspace-module-card,
.workspace-metrics {
    border: 1px solid #dfe2ec;
    border-radius: 12px;
    background: white;
    box-shadow: 0 12px 28px rgba(10, 20, 45, 0.05);
}

.workspace-action-grid article,
.workspace-action-grid a,
.workspace-module-card {
    min-height: 154px;
    padding: 20px;
    color: #050b25;
    text-decoration: none;
}

.workspace-action-grid .pro,
.workspace-module-card.owned {
    border-color: #ffbf22;
}

.workspace-action-grid span,
.workspace-module-card > span {
    display: inline-grid;
    min-width: 48px;
    min-height: 28px;
    place-items: center;
    border-radius: 999px;
    background: #f3f4f8;
    color: #5144e8;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.workspace-module-card.owned > span {
    background: #e9fbf2;
    color: #108a55;
}

.workspace-action-grid h3,
.workspace-module-card h3 {
    margin: 18px 0 8px;
    font-size: 15px;
}

.workspace-action-grid p,
.workspace-module-card p {
    margin: 0;
    color: #586176;
    font-size: 13px;
    line-height: 1.55;
}

.workspace-metrics {
    padding: 24px;
}

.workspace-metric-grid div {
    border: 1px solid #dfe2ec;
    border-radius: 10px;
    padding: 22px;
}

.workspace-metric-grid span,
.workspace-metric-grid strong {
    display: block;
}

.workspace-metric-grid span {
    color: #586176;
    font-size: 14px;
    font-weight: 800;
}

.workspace-metric-grid strong {
    margin-top: 6px;
    font-size: 28px;
}

.workspace-module-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workspace-module-card {
    min-height: 210px;
}

.workspace-module-card a,
.workspace-module-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 0;
    border-radius: 10px;
    background: #5144e8;
    color: white;
    padding: 10px 14px;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.workspace-module-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.workspace-order-list {
    display: grid;
    gap: 10px;
}

.workspace-order-list div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) auto;
    gap: 14px;
    border: 1px solid #dfe2ec;
    border-radius: 12px;
    background: white;
    padding: 16px;
}

.workspace-order-list span {
    color: #586176;
}

.module-detail-hero {
    display: block;
}

.module-detail-buy {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.module-detail-status {
    display: inline-flex;
    margin-top: 22px;
    background: #108a55;
}

@media (max-width: 1100px) {
    .workspace-action-grid,
    .workspace-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workspace-module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .workspace-page {
        padding-bottom: 76px;
    }

    .workspace-mobile-topbar {
        position: sticky;
        top: 0;
        z-index: 30;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 56px;
        border-bottom: 1px solid #dfe2ec;
        background: #ffffff;
        padding: 0 16px;
    }

    .workspace-mobile-topbar a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #0d1430;
        font-size: 18px;
        font-weight: 900;
        text-decoration: none;
    }

    .workspace-mobile-topbar span,
    .workspace-bottom-nav span {
        display: grid;
        width: 30px;
        height: 30px;
        place-items: center;
        border-radius: 10px;
        background: #ecebff;
        color: #3124c9;
        font-size: 12px;
        font-weight: 900;
    }

    .workspace-mobile-topbar .support-pill {
        border-radius: 999px;
        background: #21bf68;
        box-shadow: 0 8px 18px rgba(18, 135, 73, 0.24);
        color: white;
        padding: 9px 14px;
        font-size: 13px;
    }

    .workspace-sidebar {
        display: none;
    }

    .workspace-main {
        margin-left: 0;
        padding: 0 16px 40px;
    }

    .workspace-promo {
        margin: 0 -16px 20px;
        padding: 12px 16px;
        text-align: center;
    }

    .workspace-hero-card {
        align-items: flex-start;
        flex-direction: column;
        min-height: 226px;
        margin-bottom: 30px;
        padding: 24px 16px;
    }

    .workspace-hero-card span,
    .module-detail-hero > span {
        letter-spacing: 3px;
    }

    .workspace-hero-card h1,
    .module-detail-hero h1 {
        font-size: 28px;
    }

    .workspace-hero-card a {
        align-self: flex-start;
        border-radius: 22px;
        padding: 13px 22px;
    }

    .workspace-section,
    .workspace-metrics {
        margin-bottom: 34px;
    }

    .workspace-action-grid {
        display: grid;
        grid-auto-columns: minmax(260px, 74vw);
        grid-auto-flow: column;
        grid-template-columns: none;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .workspace-action-grid::-webkit-scrollbar,
    .workspace-module-grid::-webkit-scrollbar {
        display: none;
    }

    .workspace-action-grid article,
    .workspace-action-grid a {
        scroll-snap-align: start;
    }

    .workspace-module-grid {
        display: grid;
        grid-auto-columns: minmax(280px, 78vw);
        grid-auto-flow: column;
        grid-template-columns: none;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .workspace-module-card {
        scroll-snap-align: start;
    }

    .workspace-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workspace-bottom-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 40;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        border-top: 1px solid #dfe2ec;
        background: white;
        padding: 8px 6px 10px;
    }

    .workspace-bottom-nav a {
        display: grid;
        justify-items: center;
        gap: 4px;
        color: #536076;
        font-size: 11px;
        font-weight: 800;
        text-decoration: none;
    }

    .workspace-bottom-nav a.active {
        color: #3124c9;
    }
}

@media (max-width: 620px) {
    .workspace-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workspace-section-head,
    .workspace-order-list div {
        align-items: flex-start;
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .workspace-section-head {
        flex-direction: row;
        align-items: center;
    }

    .workspace-section-head h2 {
        font-size: 20px;
    }

    .workspace-metrics {
        padding: 18px;
    }

    .workspace-metric-grid {
        gap: 10px;
    }

    .workspace-metric-grid div {
        min-height: 112px;
        padding: 18px;
    }

    .workspace-metric-grid strong {
        font-size: 24px;
    }
}

@media (max-width: 430px) {
    .workspace-main {
        padding-right: 16px;
        padding-left: 16px;
    }

    .workspace-promo {
        min-height: 38px;
        font-size: 14px;
    }

    .workspace-hero-card {
        border-radius: 12px;
        background-position: center;
    }

    .workspace-action-grid {
        grid-auto-columns: minmax(260px, 76vw);
    }

    .workspace-module-grid {
        grid-auto-columns: minmax(280px, 82vw);
    }

    .workspace-metric-grid span {
        font-size: 13px;
    }
}

body.auth-page {
    margin: 0;
    min-height: 100vh;
    font-family: "Google Sans", Arial, sans-serif;
    background:
        radial-gradient(
            circle at top left,
            rgba(9, 117, 122, 0.12),
            transparent 34%
        ),
        linear-gradient(135deg, #ffffff 0%, #f3fbfb 100%);
    color: var(--brandnest-dark);
}

.auth-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    overflow: hidden;
}

/* LEFT PANEL */

.auth-brand-panel {
    position: relative;
    padding: 38px 56px;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(255, 255, 255, 0.24),
            transparent 20%
        ),
        linear-gradient(135deg, #003c43 0%, #09757a 48%, #25b5af 100%);
    color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.auth-topbar {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-logo img,
.auth-mobile-logo img {
    height: 42px;
    width: auto;
    display: block;
}

.auth-top-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(14px);
}

.auth-top-link span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    color: var(--brandnest-primary);
}

.auth-hero {
    position: relative;
    z-index: 3;
    max-width: 620px;
    margin-top: auto;
    margin-bottom: 38px;
}

.auth-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--brandnest-primary);
}

.auth-brand-panel .auth-kicker {
    color: #bff8f4;
}

.auth-kicker span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
}

.auth-card .auth-kicker span {
    box-shadow: 0 0 0 6px rgba(9, 117, 122, 0.12);
}

.auth-hero h1 {
    margin: 22px 0 22px;
    font-size: clamp(46px, 5vw, 76px);
    line-height: 1.04;
    letter-spacing: -2.5px;
}

.auth-hero p {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.8;
}

.auth-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.auth-benefits div {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px);
}

.auth-benefits strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 7px;
}

.auth-benefits span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
}

.auth-dashboard-card {
    position: relative;
    z-index: 3;
    width: min(560px, 100%);
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--brandnest-dark);
    box-shadow: var(--brandnest-shadow);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.dashboard-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.dashboard-card-header span {
    display: block;
    color: var(--brandnest-muted);
    font-size: 13px;
    margin-bottom: 4px;
}

.dashboard-card-header strong {
    font-size: 19px;
}

.score-badge {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: var(--brandnest-primary-soft);
    color: var(--brandnest-primary);
    font-size: 26px;
    font-weight: 900;
}

.dashboard-meter {
    height: 12px;
    margin: 24px 0;
    border-radius: 999px;
    background: #e4f0f0;
    overflow: hidden;
}

.dashboard-meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brandnest-primary), #22b8b2);
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mini-stats div {
    padding: 14px;
    border-radius: 16px;
    background: #f7fcfc;
    border: 1px solid var(--brandnest-border);
}

.mini-stats span {
    display: block;
    font-size: 12px;
    color: var(--brandnest-muted);
    margin-bottom: 6px;
}

.mini-stats strong {
    font-size: 22px;
}

.auth-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-one {
    width: 430px;
    height: 430px;
    right: -150px;
    top: 80px;
    background: rgba(255, 255, 255, 0.16);
}

.shape-two {
    width: 340px;
    height: 340px;
    left: -110px;
    bottom: -90px;
    background: rgba(255, 255, 255, 0.1);
}

/* RIGHT PANEL */

.auth-form-panel {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 46px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(9, 117, 122, 0.09),
            transparent 22%
        ),
        #ffffff;
}

.auth-mobile-logo {
    display: none;
}

.auth-card {
    width: min(480px, 100%);
    padding: 42px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--brandnest-border);
    box-shadow: 0 26px 70px rgba(6, 26, 35, 0.08);
}

.register-card {
    width: min(720px, 100%);
}

.register-card .input-shell input,
.register-card .input-shell select {
    padding-left: 54px;
    padding-right: 44px;
}

.register-card .input-shell input[type="password"] {
    padding-right: 92px;
}

.auth-card-header {
    margin-bottom: 28px;
}

.auth-card-header h2 {
    margin: 16px 0 10px;
    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.08;
    letter-spacing: -1.4px;
    color: var(--brandnest-dark);
}

.auth-card-header p {
    margin: 0;
    color: var(--brandnest-muted);
    line-height: 1.7;
}

.flash-message {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.flash-message.success {
    background: rgba(15, 138, 95, 0.1);
    color: var(--brandnest-success);
    border: 1px solid rgba(15, 138, 95, 0.18);
}

.flash-message.error {
    background: rgba(214, 69, 69, 0.1);
    color: var(--brandnest-danger);
    border: 1px solid rgba(214, 69, 69, 0.18);
}

.auth-form {
    display: grid;
    gap: 18px;
}

.auth-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-field label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 800;
    color: var(--brandnest-dark);
}

.input-shell {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}

.input-shell input,
.input-shell select {
    width: 100%;
    height: 58px;
    padding: 0 92px 0 48px;
    border-radius: 16px;
    border: 1px solid var(--brandnest-border);
    background: #f9fefe;
    color: var(--brandnest-dark);
    font: inherit;
    font-size: 15px;
    outline: none;
    transition: 0.22s ease;
}

.input-shell select {
    appearance: none;
    cursor: pointer;
}

.select-shell::after {
    content: "v";
    position: absolute;
    right: 18px;
    color: var(--brandnest-muted);
    font-size: 12px;
    font-weight: 900;
    pointer-events: none;
}

.input-shell input::placeholder {
    color: #9aa9ae;
}

.input-shell input:focus,
.input-shell select:focus {
    border-color: var(--brandnest-primary);
    background: white;
    box-shadow: 0 0 0 5px rgba(9, 117, 122, 0.1);
}

.input-icon {
    position: absolute;
    left: 17px;
    z-index: 2;
    font-size: 17px;
    opacity: 0.75;
}

.password-toggle {
    position: absolute;
    right: 10px;
    height: 38px;
    padding: 0 13px;
    border: 0;
    border-radius: 12px;
    background: var(--brandnest-primary-soft);
    color: var(--brandnest-primary);
    font-weight: 800;
    cursor: pointer;
}

.field-error {
    display: block;
    margin-top: 7px;
    color: var(--brandnest-danger);
    font-size: 13px;
    font-weight: 700;
}

.auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 2px;
    font-size: 14px;
}

.auth-options label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brandnest-muted);
    cursor: pointer;
}

.auth-options input {
    accent-color: var(--brandnest-primary);
}

.auth-options a {
    color: var(--brandnest-primary);
    font-weight: 800;
    text-decoration: none;
}

.auth-submit-btn,
.google-login-btn {
    width: 100%;
    height: 58px;
    border-radius: 16px;
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
}

.auth-submit-btn {
    margin-top: 4px;
    border: 0;
    color: white;
    background: linear-gradient(135deg, var(--brandnest-primary), #10a4a4);
    box-shadow: 0 18px 36px rgba(9, 117, 122, 0.24);
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 44px rgba(9, 117, 122, 0.3);
}

.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid var(--brandnest-border);
    background: white;
    color: var(--brandnest-dark);
}

.google-login-btn:hover {
    background: #f7fcfc;
}

.google-login-btn span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--brandnest-primary-soft);
    color: var(--brandnest-primary);
    font-weight: 900;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 26px 0;
    color: var(--brandnest-muted);
    font-size: 13px;
    font-weight: 700;
}

.auth-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--brandnest-border);
}

.auth-divider span {
    position: relative;
    z-index: 1;
    background: white;
    padding: 0 14px;
}

.auth-bottom-links {
    margin-top: 24px;
    text-align: center;
}

.auth-note {
    margin: 20px 0 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--brandnest-primary-soft);
    color: var(--brandnest-muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 700;
}

.auth-bottom-links p {
    margin: 8px 0;
    color: var(--brandnest-muted);
    font-size: 14px;
}

.auth-bottom-links a {
    color: var(--brandnest-primary);
    font-weight: 900;
    text-decoration: none;
}

.loader-dots {
    display: none;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.loader-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    animation: loaderBounce 0.9s infinite ease-in-out;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.12s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.24s;
}

@keyframes loaderBounce {
    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    40% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

/* MOBILE */

@media (max-width: 980px) {
    .auth-layout {
        grid-template-columns: 1fr;
    }

    .auth-brand-panel {
        display: none;
    }

    .auth-form-panel {
        min-height: 100vh;
        padding: 28px 18px;
        align-content: center;
    }

    .auth-mobile-logo {
        display: block;
        margin-bottom: 22px;
        text-align: center;
    }

    .auth-mobile-logo img {
        height: 42px;
        margin: 0 auto;
    }

    .auth-card {
        padding: 30px 22px;
        border-radius: 26px;
    }

    .register-card {
        width: min(680px, 100%);
    }

    .auth-card-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 520px) {
    body.auth-page {
        background:
            radial-gradient(
                circle at top right,
                rgba(9, 117, 122, 0.13),
                transparent 32%
            ),
            #ffffff;
        overflow-x: hidden;
    }

    body.auth-page,
    .auth-layout,
    .auth-form-panel {
        width: 100%;
        max-width: 100vw;
    }

    .auth-form-panel {
        padding: 22px 14px;
        overflow-x: hidden;
        justify-items: center;
    }

    .register-page .auth-form-panel {
        justify-items: start;
    }

    .auth-card {
        width: min(100%, 344px);
        max-width: calc(100vw - 28px);
        box-shadow: none;
        border-radius: 24px;
    }

    .auth-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .input-shell input,
    .input-shell select {
        min-width: 0;
        height: 56px;
        padding-right: 82px;
    }

    .register-card .input-shell input,
    .register-card .input-shell select {
        padding-left: 50px;
        padding-right: 42px;
    }

    .register-card .input-shell input[type="password"] {
        padding-right: 82px;
    }

    .auth-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .auth-submit-btn,
    .google-login-btn {
        height: 56px;
    }
}

.commerce-page {
    min-height: 100vh;
    background: #f7fbfb;
    color: var(--brandnest-dark);
}

.commerce-shell,
.checkout-shell {
    width: min(1298px, calc(100% - 40px));
    margin: 0 auto;
}

.commerce-shell {
    padding: 28px 0 64px;
}

.commerce-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 34px;
}

.commerce-logo img,
.checkout-logo img {
    height: 42px;
}

.commerce-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.commerce-nav a,
.commerce-nav button {
    border: 1px solid var(--brandnest-border);
    border-radius: 14px;
    background: white;
    color: var(--brandnest-dark);
    padding: 12px 16px;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.commerce-alert {
    margin-bottom: 18px;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 800;
}

.commerce-alert.success {
    background: #e8fbf4;
    color: #087a52;
}

.commerce-alert.error {
    background: #fff0f0;
    color: #a73131;
}

.commerce-hero {
    max-width: 720px;
    margin-bottom: 28px;
}

.commerce-hero span,
.checkout-card > span {
    color: var(--brandnest-primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.commerce-hero h1,
.checkout-card h1 {
    margin: 10px 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: 0;
}

.commerce-hero p,
.checkout-card p {
    margin: 0;
    color: var(--brandnest-muted);
    font-size: 16px;
    line-height: 1.7;
}

.commerce-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    align-items: start;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.module-card,
.cart-panel,
.checkout-card {
    border: 1px solid var(--brandnest-border);
    border-radius: 22px;
    background: white;
    box-shadow: 0 20px 46px rgba(15, 40, 45, 0.08);
}

.module-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    min-height: 270px;
    padding: 24px;
}

.module-badge {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 14px;
    background: var(--brandnest-primary-soft);
    color: var(--brandnest-primary);
    font-weight: 900;
}

.module-card h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.module-card p {
    margin: 0;
    color: var(--brandnest-muted);
    font-size: 14px;
    line-height: 1.65;
}

.module-buy-form,
.coupon-form {
    display: grid;
    gap: 12px;
}

.module-buy-form label,
.coupon-form label {
    display: grid;
    gap: 8px;
    color: var(--brandnest-muted);
    font-size: 13px;
    font-weight: 900;
}

.module-buy-form select,
.coupon-form input {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--brandnest-border);
    border-radius: 14px;
    background: #f8fbfb;
    color: var(--brandnest-dark);
    padding: 14px;
    font: inherit;
    font-weight: 800;
}

.module-buy-form button,
.coupon-form button,
.checkout-button {
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brandnest-primary), #10a4a4);
    color: white;
    padding: 15px 18px;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.checkout-button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.cart-panel {
    position: sticky;
    top: 24px;
    padding: 22px;
}

.cart-panel-header,
.cart-item,
.cart-totals div,
.checkout-summary div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cart-panel-header {
    margin-bottom: 18px;
}

.cart-panel-header span,
.cart-item span,
.checkout-summary span {
    color: var(--brandnest-muted);
    font-size: 13px;
    font-weight: 800;
}

.cart-items {
    display: grid;
    gap: 14px;
}

.cart-item {
    align-items: flex-start;
    border-bottom: 1px solid var(--brandnest-border);
    padding-bottom: 14px;
}

.cart-item > div:first-child {
    display: grid;
    gap: 4px;
}

.cart-item-actions {
    display: grid;
    justify-items: end;
    gap: 6px;
}

.cart-item-actions button,
.applied-coupon button {
    border: 0;
    background: transparent;
    color: var(--brandnest-primary);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.empty-cart {
    margin: 0;
    border: 1px dashed var(--brandnest-border);
    border-radius: 16px;
    padding: 18px;
    color: var(--brandnest-muted);
    text-align: center;
}

.coupon-form {
    margin-top: 20px;
}

.coupon-form div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.applied-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    border-radius: 14px;
    background: var(--brandnest-primary-soft);
    padding: 12px 14px;
    color: var(--brandnest-primary);
    font-size: 13px;
    font-weight: 900;
}

.cart-totals,
.checkout-summary {
    display: grid;
    gap: 12px;
    margin: 22px 0;
    border-top: 1px solid var(--brandnest-border);
    padding-top: 18px;
}

.cart-totals div,
.checkout-summary div {
    color: var(--brandnest-muted);
    font-size: 14px;
    font-weight: 800;
}

.cart-totals strong,
.checkout-summary strong {
    color: var(--brandnest-dark);
}

.checkout-shell {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 40px 0;
}

.checkout-card {
    width: min(560px, 100%);
    padding: 34px;
}

.checkout-logo {
    display: inline-flex;
    margin-bottom: 32px;
}

.checkout-total {
    border-top: 1px solid var(--brandnest-border);
    padding-top: 16px;
}

.module-access-list {
    margin-top: 16px;
}

.product-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    max-width: none;
}

.product-hero > div:first-child {
    max-width: 760px;
}

.billing-switch {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(108px, 1fr));
    gap: 4px;
    border: 1px solid var(--brandnest-border);
    border-radius: 16px;
    background: white;
    padding: 4px;
    box-shadow: 0 14px 30px rgba(15, 40, 45, 0.07);
}

.billing-switch button {
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--brandnest-muted);
    padding: 11px 16px;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.billing-switch button.active {
    background: linear-gradient(135deg, var(--brandnest-primary), #10a4a4);
    color: white;
    box-shadow: 0 10px 20px rgba(9, 117, 122, 0.18);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.product-card,
.pricing-card {
    border: 1px solid var(--brandnest-border);
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(9, 117, 122, 0.08), transparent 34%),
        white;
    box-shadow: 0 20px 46px rgba(15, 40, 45, 0.08);
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 326px;
    padding: 24px;
}

.product-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.product-tag {
    display: inline-flex;
    border-radius: 999px;
    background: #fff1c7;
    color: #9a6200;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-card h2 {
    margin: 0;
    color: var(--brandnest-dark);
    font-size: 24px;
    line-height: 1.15;
}

.product-card p {
    margin: 0;
    color: var(--brandnest-muted);
    font-size: 14px;
    line-height: 1.65;
}

.product-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-facts span,
.product-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--brandnest-border);
    border-radius: 999px;
    background: #f8fbfb;
    color: var(--brandnest-muted);
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 900;
}

.product-facts svg,
.product-detail-meta svg {
    width: 15px;
    height: 15px;
    color: var(--brandnest-primary);
}

.product-price-panel,
.pricing-cycle-panel {
    display: none;
}

.product-price-panel.active,
.pricing-cycle-panel.active {
    display: block;
}

.product-price-panel {
    margin-top: auto;
    border: 1px solid rgba(9, 117, 122, 0.16);
    border-radius: 14px;
    background: #f6fcfc;
    padding: 16px;
}

.product-price-panel span,
.pricing-card-head span,
.section-kicker {
    display: block;
    color: var(--brandnest-primary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-price-panel strong {
    display: block;
    margin-top: 4px;
    color: var(--brandnest-dark);
    font-size: 32px;
    line-height: 1;
}

.product-price-panel small {
    display: block;
    margin-top: 8px;
    color: var(--brandnest-muted);
    font-size: 13px;
    font-weight: 800;
}

.product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 10px;
    align-items: center;
}

.product-card-actions .checkout-button {
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
}

.product-cart {
    top: 18px;
}

.product-detail-hero {
    margin-bottom: 34px;
}

.product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.product-pricing-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.product-pricing-head h2 {
    margin: 6px 0 0;
    font-size: 28px;
    line-height: 1.12;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
    padding: 22px;
}

.pricing-card.featured {
    border-color: #ffc44d;
    box-shadow: 0 22px 48px rgba(189, 126, 0, 0.12);
}

.pricing-card > .product-tag {
    position: absolute;
    top: 16px;
    right: 16px;
}

.pricing-card-head h3 {
    margin: 8px 0;
    color: var(--brandnest-dark);
    font-size: 23px;
}

.pricing-card-head p,
.pricing-cycle-panel p {
    margin: 0;
    color: var(--brandnest-muted);
    font-size: 13px;
    line-height: 1.55;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.pricing-price strong {
    color: var(--brandnest-dark);
    font-size: 30px;
    line-height: 1;
}

.pricing-price span {
    color: var(--brandnest-muted);
    font-size: 13px;
    font-weight: 900;
}

.pricing-cycle-panel form {
    margin-top: 14px;
}

.pricing-cycle-panel button {
    width: 100%;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brandnest-primary), #10a4a4);
    color: white;
    padding: 13px 14px;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.pricing-feature-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--brandnest-muted);
    font-size: 13px;
    line-height: 1.45;
}

.pricing-feature-list svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: var(--brandnest-success);
}

@media (max-width: 980px) {
    .commerce-layout {
        grid-template-columns: 1fr;
    }

    .cart-panel {
        position: static;
    }

    .product-hero,
    .product-pricing-head {
        align-items: stretch;
        flex-direction: column;
    }

    .product-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .commerce-shell,
    .checkout-shell {
        width: min(100% - 28px, 1298px);
    }

    .commerce-topbar,
    .commerce-nav {
        align-items: stretch;
        flex-direction: column;
    }

    .module-grid {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .module-card,
    .cart-panel,
    .checkout-card {
        border-radius: 18px;
        padding: 20px;
    }

    .product-card,
    .pricing-card {
        border-radius: 14px;
        padding: 20px;
    }

    .billing-switch {
        width: 100%;
    }

    .product-card-actions {
        grid-template-columns: 1fr;
    }

    .product-pricing-head h2 {
        font-size: 24px;
    }

    .cart-item,
    .cart-totals div,
    .checkout-summary div {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}

.admin-page {
    min-height: 100vh;
    background: #f7fbfb;
    color: var(--brandnest-dark);
}

.admin-shell {
    width: min(1298px, calc(100% - 40px));
    margin: 0 auto;
    padding: 28px 0 64px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
}

.admin-logo img {
    height: 42px;
}

.admin-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-nav a,
.admin-nav button,
.admin-heading > a {
    border: 1px solid var(--brandnest-border);
    border-radius: 14px;
    background: white;
    color: var(--brandnest-dark);
    padding: 11px 14px;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.admin-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.admin-heading span {
    color: var(--brandnest-primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-heading h1 {
    margin: 8px 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1;
}

.admin-heading p {
    margin: 0;
    color: var(--brandnest-muted);
}

.admin-table-card,
.admin-form-card {
    border: 1px solid var(--brandnest-border);
    border-radius: 22px;
    background: white;
    box-shadow: 0 20px 46px rgba(15, 40, 45, 0.08);
}

.admin-table-card {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid var(--brandnest-border);
    padding: 16px;
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--brandnest-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--brandnest-dark);
    font-size: 14px;
    font-weight: 800;
}

.admin-table td span,
.admin-table td strong {
    display: block;
}

.admin-table td span {
    margin-top: 4px;
    color: var(--brandnest-muted);
    font-size: 12px;
    line-height: 1.45;
}

.admin-table a {
    color: var(--brandnest-primary);
    font-weight: 900;
    text-decoration: none;
}

.admin-form-card {
    display: grid;
    gap: 18px;
    padding: 24px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.admin-form-card label {
    display: grid;
    gap: 8px;
    color: var(--brandnest-muted);
    font-size: 13px;
    font-weight: 900;
}

.admin-form-card input,
.admin-form-card select,
.admin-form-card textarea,
.admin-inline-form select {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--brandnest-border);
    border-radius: 14px;
    background: #f8fbfb;
    color: var(--brandnest-dark);
    padding: 13px 14px;
    font: inherit;
    font-weight: 800;
}

.admin-form-card textarea {
    resize: vertical;
}

.admin-check-row {
    align-content: center;
    grid-template-columns: auto 1fr;
    align-items: center;
}

.admin-check-row input {
    width: auto;
}

.admin-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.admin-checkbox-grid label {
    grid-template-columns: auto 1fr;
    align-items: center;
    border: 1px solid var(--brandnest-border);
    border-radius: 14px;
    padding: 12px;
}

.admin-checkbox-grid input {
    width: auto;
}

.admin-form-card > button,
.admin-inline-form button {
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brandnest-primary), #10a4a4);
    color: white;
    padding: 14px 18px;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.admin-inline-form {
    display: grid;
    grid-template-columns: minmax(130px, 1fr) auto auto;
    align-items: center;
    gap: 10px;
}

.admin-inline-form label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--brandnest-muted);
    font-size: 13px;
    font-weight: 900;
}

.admin-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.admin-action-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--brandnest-border);
    border-radius: 16px;
    background: #f8fbfb;
    color: var(--brandnest-dark);
    padding: 16px;
    font-weight: 900;
    text-decoration: none;
}

.admin-action-grid span {
    color: var(--brandnest-primary);
}

@media (max-width: 760px) {
    .admin-shell {
        width: min(100% - 28px, 1298px);
    }

    .admin-topbar,
    .admin-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-nav {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-form-grid,
    .admin-checkbox-grid,
    .admin-action-grid {
        grid-template-columns: 1fr;
    }

    .admin-inline-form {
        grid-template-columns: 1fr;
    }
}

/* Shared app shell additions */
.notification-banner {
    position: sticky;
    top: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(5, 11, 37, 0.08);
    background: linear-gradient(90deg, #0b6f75, #0f9aa2);
    color: white;
    padding: 12px 16px;
}

.notification-banner-inner {
    display: grid;
    gap: 4px;
}

.notification-banner-inner span {
    font-size: 14px;
    font-weight: 900;
}

.notification-banner-inner p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.notification-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-banner-actions a,
.banner-close {
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 10px 14px;
    border-radius: 999px;
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.banner-close {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
}

.home-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(9, 117, 122, 0.08);
}

.home-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 82px;
}

.home-links,
.home-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.home-links a {
    color: var(--brandnest-dark);
    font-size: 14px;
    font-weight: 800;
}

.home-links a:hover {
    color: var(--brandnest-primary);
}

.home-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--brandnest-border);
    border-radius: 12px;
    background: white;
    padding: 9px;
    cursor: pointer;
}

.home-menu-toggle span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: var(--brandnest-dark);
}

.home-menu-toggle span + span {
    margin-top: 5px;
}

.home-mobile-menu {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 110;
    transform: translateY(-105%);
    transition: transform 0.22s ease;
    border-bottom: 1px solid var(--brandnest-border);
    background: white;
    padding: 18px;
}

body.home-menu-open .home-mobile-menu {
    transform: translateY(0);
}

.home-mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.home-mobile-menu-head button,
.workspace-drawer-head button,
.workspace-sidebar-toggle {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.home-mobile-menu a {
    display: block;
    border-top: 1px solid var(--brandnest-border);
    color: var(--brandnest-dark);
    padding: 14px 0;
    font-size: 15px;
    font-weight: 800;
}

.home-mobile-menu a:last-child {
    color: var(--brandnest-primary);
}

.workspace-top-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    width: min(100%, 1104px);
    margin: 0 auto 12px;
}

.workspace-sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 42px;
    height: 42px;
    border: 1px solid #dfe2ec;
    border-radius: 12px;
    background: white;
    color: var(--brandnest-dark);
    font: inherit;
    font-weight: 900;
}

.workspace-sidebar-toggle span {
    display: block;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.workspace-sidebar-toggle span + span {
    margin-top: 4px;
}

.desktop-toggle {
    display: inline-flex;
}

.mobile-more {
    display: none;
}

body.workspace-sidebar-collapsed .workspace-sidebar {
    width: 84px;
    padding-inline: 12px;
}

body.workspace-sidebar-collapsed .workspace-main {
    margin-left: 84px;
}

body.workspace-sidebar-collapsed .workspace-logo,
body.workspace-sidebar-collapsed .workspace-profile div,
body.workspace-sidebar-collapsed .workspace-nav a,
body.workspace-sidebar-collapsed .workspace-meter span,
body.workspace-sidebar-collapsed .workspace-meter strong,
body.workspace-sidebar-collapsed .workspace-plan,
body.workspace-sidebar-collapsed .workspace-sidebar-footer form {
    display: none;
}

body.workspace-sidebar-collapsed .workspace-profile {
    justify-content: center;
}

body.workspace-sidebar-collapsed .workspace-sidebar-toggle {
    width: 100%;
}

.workspace-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 320px);
    transform: translateX(102%);
    transition: transform 0.24s ease;
    z-index: 140;
    overflow-y: auto;
    border-left: 1px solid var(--brandnest-border);
    background: white;
    padding: 18px;
}

body.workspace-drawer-open .workspace-drawer {
    transform: translateX(0);
}

.workspace-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.workspace-drawer a,
.workspace-drawer button {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--brandnest-border);
    background: transparent;
    color: var(--brandnest-dark);
    padding: 14px 0;
    font: inherit;
    font-weight: 800;
    text-align: left;
}

.workspace-drawer form {
    margin-top: 6px;
}

@media (max-width: 820px) {
    .home-nav {
        min-height: 64px;
    }

    .home-links,
    .home-actions {
        display: none;
    }

    .home-menu-toggle {
        display: inline-grid;
    }

    .notification-banner {
        align-items: flex-start;
        flex-direction: column;
    }

    .workspace-top-actions {
        display: none;
    }

    .mobile-more {
        display: inline-flex;
    }

    .workspace-sidebar {
        display: none;
    }

    .workspace-main {
        margin-left: 0;
    }
}

@media (max-width: 620px) {
    .workspace-action-grid,
    .workspace-module-grid {
        display: grid;
        grid-auto-columns: minmax(250px, 82vw);
        grid-auto-flow: column;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .workspace-action-grid article,
    .workspace-action-grid a,
    .workspace-module-card {
        scroll-snap-align: start;
    }

    .workspace-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workspace-bottom-nav {
        border-top-color: #d9ecec;
    }
}

@media (max-width: 430px) {
    .workspace-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .notification-banner-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* Brandnest accent overrides for workspace shells */
.workspace-nav a.active,
.workspace-nav a:hover {
    background: #e4f7f6;
}

.workspace-nav span {
    color: var(--brandnest-primary);
}

.workspace-promo {
    background: linear-gradient(90deg, #0a6f75, #0f999f);
}

.workspace-promo a {
    color: #ffdc57;
}

.workspace-hero-card a,
.workspace-module-card a,
.workspace-module-actions button {
    background: linear-gradient(135deg, var(--brandnest-primary), #10a4a4);
}

.workspace-action-grid .pro,
.workspace-module-card.owned {
    border-color: #ffbf22;
}

.workspace-action-grid span,
.workspace-module-card > span {
    color: var(--brandnest-primary);
}

.workspace-module-card.owned > span {
    color: var(--brandnest-success);
}

.workspace-bottom-nav span,
.workspace-mobile-topbar span {
    background: #e8f8f7;
    color: var(--brandnest-primary);
}

/* Unified customer and admin workspace shell */
.workspace-content {
    width: min(100%, 1180px);
    margin-right: auto;
    margin-left: auto;
}

.workspace-main {
    transition: margin-left 0.2s ease;
}

.workspace-sidebar {
    transition: width 0.2s ease, padding 0.2s ease;
}

.workspace-logo img {
    max-width: 180px;
    object-fit: contain;
}

.workspace-nav a b {
    overflow: hidden;
    font: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.workspace-nav svg,
.workspace-bottom-nav svg {
    width: 17px;
    height: 17px;
}

.workspace-sidebar-toggle svg {
    width: 20px;
    height: 20px;
}

.sidebar-edge-toggle {
    align-self: flex-end;
    margin: 10px 0 0;
}

.workspace-sidebar-footer button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.workspace-sidebar-footer button svg {
    width: 17px;
    height: 17px;
}

.workspace-mobile-topbar .support-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.workspace-mobile-topbar svg {
    width: 18px;
    height: 18px;
}

.workspace-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 130;
    visibility: hidden;
    background: rgba(5, 11, 37, 0.38);
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.workspace-drawer-open {
    overflow: hidden;
}

body.workspace-drawer-open .workspace-drawer-backdrop {
    visibility: visible;
    opacity: 1;
}

.workspace-drawer-head > button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--brandnest-border);
    border-radius: 8px;
    padding: 0;
}

.workspace-drawer-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.workspace-drawer-profile strong,
.workspace-drawer-profile span {
    display: block;
}

.workspace-drawer-profile span {
    margin-top: 2px;
    color: var(--brandnest-muted);
    font-size: 12px;
}

.workspace-drawer nav {
    display: grid;
}

.workspace-drawer a,
.workspace-drawer button {
    display: flex;
    align-items: center;
    gap: 12px;
}

.workspace-drawer a.active {
    color: var(--brandnest-primary);
}

.workspace-drawer svg {
    width: 19px;
    height: 19px;
}

.workspace-bottom-nav button {
    display: grid;
    justify-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    color: #586176;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
}

.workspace-bottom-nav a.active,
.workspace-bottom-nav a.active span {
    color: var(--brandnest-primary);
}

.module-details-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--brandnest-primary);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.module-badge svg {
    width: 20px;
    height: 20px;
}

.workspace-page .commerce-hero {
    padding-top: 8px;
}

.workspace-page .commerce-hero h1 {
    font-size: clamp(34px, 4vw, 52px);
}

.workspace-page .checkout-shell {
    min-height: calc(100vh - 120px);
    padding: 24px 0 56px;
}

.workspace-page .admin-heading,
.workspace-page .admin-table-card,
.workspace-page .admin-form-card {
    width: min(100%, 1180px);
    margin-right: auto;
    margin-left: auto;
}

body.workspace-sidebar-collapsed .workspace-nav a {
    display: flex;
    justify-content: center;
    padding-right: 0;
    padding-left: 0;
}

body.workspace-sidebar-collapsed .workspace-nav a b,
body.workspace-sidebar-collapsed .workspace-sidebar-footer button span {
    display: none;
}

body.workspace-sidebar-collapsed .workspace-profile .workspace-avatar {
    display: grid;
}

body.workspace-sidebar-collapsed .workspace-sidebar-footer form {
    display: block;
}

body.workspace-sidebar-collapsed .workspace-sidebar-footer button {
    padding-right: 0;
    padding-left: 0;
}

@media (max-width: 820px) {
    .workspace-main {
        min-width: 0;
    }

    .workspace-mobile-topbar a > svg {
        display: block;
        padding: 6px;
        border-radius: 8px;
        background: #e8f8f7;
        box-sizing: content-box;
        color: var(--brandnest-primary);
    }

    .workspace-mobile-topbar .support-pill svg {
        width: 16px;
        height: 16px;
    }

    .workspace-page .commerce-hero {
        margin-bottom: 22px;
        padding-top: 12px;
    }

    .workspace-page .commerce-hero h1 {
        font-size: 34px;
    }

    .workspace-page .commerce-layout {
        gap: 18px;
    }

    .workspace-page .checkout-shell {
        min-height: auto;
        padding: 16px 0 32px;
    }

    .workspace-page .admin-heading {
        align-items: stretch;
        flex-direction: column;
        padding-top: 12px;
    }

    .workspace-page .admin-heading h1 {
        font-size: 34px;
    }
}

@media (max-width: 620px) {
    .workspace-page .module-grid {
        grid-template-columns: 1fr;
    }

    .workspace-page .module-card,
    .workspace-page .cart-panel,
    .workspace-page .checkout-card {
        border-radius: 8px;
    }

    .workspace-order-list div {
        grid-template-columns: 1fr;
    }
}
