* {
    box-sizing: border-box;
}


html {
    min-height: 100%;
}


body {
    margin: 0;

    font-family: var(--admin-font-ui, "Manrope", ui-sans-serif, system-ui, sans-serif);
}


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


button,
input {
    font: inherit;
}


/* =========================================================
   DASHBOARD
========================================================= */

.dashboard-body {
    min-height: 100vh;

    background: #f1f0ec;
    color: #171717;
}


.dashboard-layout {
    min-height: 100vh;

    display: grid;
    grid-template-columns:
        280px
        minmax(0, 1fr);
}


/* SIDEBAR */

.dashboard-sidebar {
    position: sticky;
    top: 0;

    height: 100vh;

    padding: 30px 22px;

    display: flex;
    flex-direction: column;

    background: #111;
    color: #fff;
}


.dashboard-brand {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 0 8px 30px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.1);
}


.dashboard-brand img {
    width: 52px;
    height: 52px;

    object-fit: contain;
}


.dashboard-brand strong {
    display: block;
}


.dashboard-brand span {
    display: block;

    margin-top: 4px;

    font-size: 0.75rem;

    color:
        rgba(255, 255, 255, 0.45);
}


/* NAV */

.dashboard-nav {
    display: grid;

    gap: 5px;

    margin-top: 30px;
}


.dashboard-nav__item {
    padding: 13px 15px;

    border-radius: 8px;

    font-size: 0.92rem;

    color:
        rgba(255, 255, 255, 0.66);

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.dashboard-nav__item:hover,
.dashboard-nav__item--active {
    background:
        rgba(255, 255, 255, 0.09);

    color: #fff;
}


.dashboard-sidebar__bottom {
    display: grid;

    gap: 12px;

    margin-top: auto;

    padding: 25px 8px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.1);
}


.dashboard-sidebar__bottom a,
.dashboard-sidebar__bottom button {
    border: 0;
    padding: 0;

    background: transparent;

    color:
        rgba(255, 255, 255, 0.6);

    text-align: left;

    cursor: pointer;
}


/* MAIN */

.dashboard-main {
    min-width: 0;
}


.dashboard-topbar {
    min-height: 86px;

    padding: 20px 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: #fff;

    border-bottom: 1px solid #dedbd5;
}


.dashboard-topbar__eyebrow {
    display: block;

    margin-bottom: 4px;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    color: #888;
}


.dashboard-topbar strong {
    font-size: 1rem;
}


.dashboard-user {
    font-size: 0.9rem;

    color: #555;
}


.dashboard-content {
    padding: 50px 5% 90px;
}


/* HEADING */

.dashboard-heading {
    margin-bottom: 35px;
}


.dashboard-heading p {
    margin: 0 0 7px;

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: #888;
}


.dashboard-heading h1 {
    margin: 0;

    font-size:
        clamp(
            2.3rem,
            4vw,
            4rem
        );

    line-height: 1;

    letter-spacing: -0.04em;
}


/* STATS */

.dashboard-stats {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 16px;

    margin-bottom: 35px;
}


.dashboard-stat {
    padding: 26px;

    background: #fff;

    border: 1px solid #dedbd5;
}


.dashboard-stat span {
    display: block;

    font-size: 0.77rem;

    color: #777;
}


.dashboard-stat strong {
    display: block;

    margin: 12px 0 6px;

    font-size: 2.7rem;

    line-height: 1;
}


.dashboard-stat small {
    color: #999;
}


/* PANEL */

.dashboard-panel {
    background: #fff;

    border: 1px solid #dedbd5;
}


.dashboard-panel__header {
    padding: 25px 28px;

    border-bottom: 1px solid #dedbd5;
}


.dashboard-panel__header span {
    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #999;
}


.dashboard-panel__header h2 {
    margin: 6px 0 0;

    font-size: 1.5rem;
}


/* TABLE */

.dashboard-table-wrapper {
    overflow-x: auto;
}


.dashboard-table {
    width: 100%;

    border-collapse: collapse;
}


.dashboard-table th,
.dashboard-table td {
    padding: 18px 22px;

    text-align: left;

    border-bottom: 1px solid #eeeae4;
}


.dashboard-table th {
    font-size: 0.72rem;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    color: #999;
}


.dashboard-table td {
    font-size: 0.9rem;
}


.dashboard-table td strong {
    display: block;
}


.dashboard-table td small {
    display: block;

    margin-top: 5px;

    color: #999;
}


.dashboard-status {
    display: inline-block;

    padding: 7px 10px;

    border-radius: 999px;

    background: #eeeae4;

    font-size: 0.75rem;
}


.dashboard-empty {
    padding: 50px 28px;

    color: #888;
}


/* =========================================================
   LOGIN
========================================================= */

.dashboard-login-body {
    min-height: 100vh;

    display: grid;
    place-items: center;

    padding: 30px;

    background: #111;
    color: #fff;
}


.dashboard-login {
    width: min(440px, 100%);
}


.dashboard-login__brand {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 30px;
}


.dashboard-login__brand img {
    width: 60px;
    height: 60px;

    object-fit: contain;
}


.dashboard-login__brand span {
    font-size: 1.1rem;
    font-weight: 700;
}


.dashboard-login__card {
    padding: 40px;

    background: #fff;
    color: #171717;
}


.dashboard-login__card > p {
    margin: 0;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    color: #888;
}


.dashboard-login__card h1 {
    margin: 8px 0 30px;

    font-size: 2.5rem;

    letter-spacing: -0.04em;
}


.dashboard-login__field {
    display: grid;

    gap: 7px;

    margin-bottom: 20px;
}


.dashboard-login__field label {
    font-size: 0.8rem;

    font-weight: 700;
}


.dashboard-login__field input {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #ccc;

    outline: none;
}


.dashboard-login__field input:focus {
    border-color: #111;
}


.dashboard-login__submit {
    width: 100%;

    margin-top: 10px;

    padding: 15px;

    border: 0;

    background: #111;
    color: #fff;

    font-weight: 700;

    cursor: pointer;
}


.dashboard-login__error {
    margin-bottom: 20px;

    padding: 12px;

    background: #f5e5e5;
    color: #8c2525;

    font-size: 0.85rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

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

}


@media (max-width: 900px) {

    .dashboard-layout {
        grid-template-columns: 1fr;
    }


    .dashboard-sidebar {
        position: relative;

        width: 100%;
        height: auto;

        padding: 20px 5%;
    }


    .dashboard-brand {
        padding-bottom: 18px;
    }


    .dashboard-nav {
        display: flex;

        overflow-x: auto;

        margin-top: 18px;

        padding-bottom: 5px;

        scrollbar-width: none;
    }


    .dashboard-nav::-webkit-scrollbar {
        display: none;
    }


    .dashboard-nav__item {
        flex: 0 0 auto;
    }


    .dashboard-sidebar__bottom {
        display: none;
    }


    .dashboard-topbar {
        min-height: 72px;
    }

}


@media (max-width: 600px) {

    .dashboard-topbar {
        padding:
            16px
            5%;
    }


    .dashboard-user {
        display: none;
    }


    .dashboard-content {
        padding:
            35px
            5%
            70px;
    }


    .dashboard-stats {
        grid-template-columns: 1fr;
    }


    .dashboard-stat {
        padding: 22px;
    }


    .dashboard-login-body {
        padding: 18px;
    }


    .dashboard-login__card {
        padding: 30px 22px;
    }

}

/* =========================================================
   DASHBOARD EDITOR
========================================================= */

.dashboard-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}


.dashboard-preview-link {
    flex: 0 0 auto;

    padding-bottom: 5px;

    border-bottom: 1px solid #999;

    font-size: 0.9rem;
    font-weight: 600;
}


.dashboard-messages {
    margin-bottom: 25px;
}


.dashboard-message {
    padding: 15px 18px;

    border: 1px solid #cbd8c8;

    background: #edf5eb;

    color: #34512f;

    font-size: 0.9rem;
}


.dashboard-message--warning {
    border-color: #e3d4a2;
    background: #fff9e7;
    color: #736847;
}

.dashboard-message--error {
    border-color: #e4bcbc;
    background: #faeaea;
    color: #7e2d2d;
}

.dashboard-message--info {
    border-color: #bfd1e8;
    background: #edf4fb;
    color: #31567d;
}


/* EDIT PANEL */

.dashboard-edit-panel {
    margin-bottom: 28px;

    padding: 35px;

    border: 1px solid #dedbd5;

    background: #fff;
}


.dashboard-edit-panel__heading {
    max-width: 700px;

    margin-bottom: 35px;

    padding-bottom: 25px;

    border-bottom: 1px solid #ece9e3;
}


.dashboard-edit-panel__heading > span {
    display: block;

    margin-bottom: 7px;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: #999;
}


.dashboard-edit-panel__heading h2 {
    margin: 0;

    font-size: 1.8rem;

    letter-spacing: -0.03em;
}


.dashboard-edit-panel__heading p {
    margin: 10px 0 0;

    line-height: 1.6;

    color: #777;
}


/* FORM */

.dashboard-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}


.dashboard-field {
    display: grid;

    align-content: start;

    gap: 8px;
}


.dashboard-field--full {
    grid-column: 1 / -1;
}


.dashboard-field label {
    font-size: 0.78rem;
    font-weight: 700;

    color: #444;
}


.dashboard-field input[type="text"],
.dashboard-field input[type="email"],
.dashboard-field input[type="url"],
.dashboard-field input[type="number"],
.dashboard-field textarea,
.dashboard-field select {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #cbc7bf;

    background: #fff;
    color: #171717;

    font: inherit;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.dashboard-field textarea {
    resize: vertical;

    line-height: 1.6;
}


.dashboard-field input:focus,
.dashboard-field textarea:focus,
.dashboard-field select:focus {
    border-color: #111;

    box-shadow:
        0 0 0 3px rgba(0, 0, 0, 0.05);
}


.dashboard-field input[type="file"] {
    width: 100%;

    padding: 13px;

    border: 1px dashed #bbb6ad;

    background: #faf9f7;
}


.dashboard-field .errorlist {
    margin: 0;
    padding: 0;

    list-style: none;

    color: #a32626;

    font-size: 0.8rem;
}


/* IMAGES */

.dashboard-images-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;

    margin-top: 30px;
}


.dashboard-image-editor {
    min-width: 0;
}


.dashboard-image-editor__header {
    margin-bottom: 12px;
}


.dashboard-image-editor__header strong {
    display: block;

    font-size: 0.85rem;
}


.dashboard-image-editor__header span {
    display: block;

    margin-top: 4px;

    font-size: 0.78rem;

    color: #888;
}


.dashboard-image-preview {
    width: 100%;

    aspect-ratio: 16 / 10;

    margin-bottom: 14px;

    overflow: hidden;

    background: #ddd;
}


.dashboard-image-preview img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.dashboard-image-preview--wide {
    max-width: 700px;

    margin-top: 8px;
}


/* SAVE BAR */

.dashboard-savebar {
    position: sticky;

    bottom: 20px;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 18px 22px;

    border: 1px solid #d4d0c8;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(10px);
}


.dashboard-savebar span {
    font-size: 0.82rem;

    color: #777;
}


.dashboard-save-button {
    flex: 0 0 auto;

    padding: 13px 22px;

    border: 0;

    background: #111;
    color: #fff;

    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   EDITOR RESPONSIVE
========================================================= */

@media (max-width: 800px) {

    .dashboard-images-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .dashboard-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 18px;
    }


    .dashboard-edit-panel {
        padding: 25px 20px;
    }


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


    .dashboard-field--full {
        grid-column: auto;
    }


    .dashboard-savebar {
        bottom: 10px;

        flex-direction: column;
        align-items: stretch;

        gap: 12px;
    }


    .dashboard-save-button {
        width: 100%;
    }

}

/* =========================================================
   DASHBOARD PORTFOLIO
========================================================= */

.dashboard-primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 18px;

    background: #111;
    color: #fff;

    font-size: 0.85rem;
    font-weight: 700;
}


.dashboard-portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}


.dashboard-portfolio-card {
    min-width: 0;

    overflow: hidden;

    border: 1px solid #dedbd5;

    background: #fff;
}


.dashboard-portfolio-card__image {
    position: relative;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #ddd;
}


.dashboard-portfolio-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}


.dashboard-portfolio-card:hover
.dashboard-portfolio-card__image img {
    transform: scale(1.025);
}


.dashboard-portfolio-card__placeholder {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #888;
}


.dashboard-portfolio-card__status {
    position: absolute;

    top: 14px;
    right: 14px;

    padding: 7px 10px;

    border-radius: 999px;

    background: #fff;
    color: #222;

    font-size: 0.7rem;
    font-weight: 700;
}


.dashboard-portfolio-card__status--draft {
    background: #262626;
    color: #fff;
}


.dashboard-portfolio-card__content {
    padding: 24px;
}


.dashboard-portfolio-card__category {
    display: block;

    margin-bottom: 7px;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #999;
}


.dashboard-portfolio-card__content h2 {
    margin: 0;

    font-size: 1.6rem;

    letter-spacing: -0.03em;
}


.dashboard-portfolio-card__meta {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 15px;

    font-size: 0.8rem;

    color: #777;
}


.dashboard-portfolio-card__actions {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-top: 25px;

    padding-top: 18px;

    border-top: 1px solid #ebe8e2;

    font-size: 0.85rem;
    font-weight: 700;
}


.dashboard-empty-state {
    padding: 70px 35px;

    border: 1px solid #dedbd5;

    background: #fff;

    text-align: center;
}


.dashboard-empty-state h2 {
    margin: 0;

    font-size: 2rem;
}


.dashboard-empty-state p {
    margin: 12px 0 25px;

    color: #777;
}


/* COVER */

.dashboard-cover-preview {
    width: min(850px, 100%);

    aspect-ratio: 16 / 9;

    margin-bottom: 20px;

    overflow: hidden;

    background: #ddd;
}


.dashboard-cover-preview img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* MULTIPLE UPLOAD */

.dashboard-upload-box {
    display: grid;

    gap: 9px;

    padding: 28px;

    border: 1px dashed #aaa59d;

    background: #faf9f6;
}


.dashboard-upload-box strong {
    font-size: 1rem;
}


.dashboard-upload-box span {
    margin-bottom: 8px;

    font-size: 0.82rem;

    color: #777;
}


.dashboard-upload-box input[type="file"] {
    width: 100%;

    padding: 14px;

    background: #fff;

    border: 1px solid #d5d1ca;
}


/* GALLERY */

.dashboard-gallery {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;

    margin-top: 30px;
}


.dashboard-gallery__item {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #ddd;
}


.dashboard-gallery__item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.dashboard-gallery__delete-button {
    position: absolute;

    right: 9px;
    bottom: 9px;

    padding: 8px 11px;

    border: 0;
    border-radius: 5px;

    background: rgba(0, 0, 0, 0.78);
    color: #fff;

    font-size: 0.72rem;
    font-weight: 700;

    cursor: pointer;
}


/* CHECKBOX */

.dashboard-field--checkbox {
    display: flex;
    align-items: center;

    gap: 10px;

    padding-top: 12px;
}


.dashboard-field--checkbox input {
    width: 18px;
    height: 18px;

    margin: 0;
}


.dashboard-field--checkbox label {
    cursor: pointer;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

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

}


@media (max-width: 800px) {

    .dashboard-portfolio-grid {
        grid-template-columns: 1fr;
    }


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

}


@media (max-width: 500px) {

    .dashboard-gallery {
        gap: 8px;
    }


    .dashboard-portfolio-card__actions {
        flex-direction: column;

        gap: 12px;
    }

}

/* =========================================================
   DASHBOARD DISHES
========================================================= */

.dashboard-filter-panel {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 28px;
    padding: 22px;

    border: 1px solid #dedbd5;

    background: #fff;
}


.dashboard-filters {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;

    gap: 14px;
}


.dashboard-filters > div {
    display: grid;

    gap: 7px;
}


.dashboard-filters label {
    font-size: 0.72rem;
    font-weight: 700;

    color: #666;
}


.dashboard-filters input,
.dashboard-filters select {
    min-height: 42px;

    padding: 0 12px;

    border: 1px solid #cbc7bf;

    background: #fff;

    font: inherit;
}


.dashboard-filter-search input {
    min-width: 240px;
}


.dashboard-filter-button {
    min-height: 42px;

    padding: 0 18px;

    border: 0;

    background: #111;
    color: #fff;

    font-weight: 700;

    cursor: pointer;
}


.dashboard-filter-reset {
    display: flex;
    align-items: center;

    min-height: 42px;

    font-size: 0.82rem;
    font-weight: 600;

    color: #777;
}


.dashboard-filter-count {
    flex: 0 0 auto;

    font-size: 0.8rem;

    color: #888;
}


/* GRID */

.dashboard-dishes-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.dashboard-dish-card {
    min-width: 0;

    overflow: hidden;

    border: 1px solid #dedbd5;

    background: #fff;
}


.dashboard-dish-card__visual {
    position: relative;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #dedbd5;
}


.dashboard-dish-card__visual img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}


.dashboard-dish-card:hover
.dashboard-dish-card__visual img {
    transform: scale(1.025);
}


.dashboard-dish-card__placeholder {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #888;
}


/* BADGES */

.dashboard-dish-status,
.dashboard-dish-featured {
    position: absolute;

    top: 12px;

    padding: 7px 10px;

    border-radius: 999px;

    font-size: 0.67rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.dashboard-dish-status {
    right: 12px;

    background: #fff;
    color: #111;
}


.dashboard-dish-status--inactive {
    background: #222;
    color: #fff;
}


.dashboard-dish-featured {
    left: 12px;

    background: #111;
    color: #fff;
}


/* CONTENT */

.dashboard-dish-card__content {
    padding: 22px;
}


.dashboard-dish-card__category {
    display: block;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #999;
}


.dashboard-dish-card__content h2 {
    margin: 8px 0 0;

    font-size: 1.45rem;

    letter-spacing: -0.03em;
}


.dashboard-dish-card__weight {
    display: inline-block;

    margin-top: 9px;

    font-size: 0.8rem;
    font-weight: 700;
}


.dashboard-dish-card__content > p {
    margin: 15px 0 0;

    line-height: 1.55;

    font-size: 0.86rem;

    color: #777;
}


.dashboard-dish-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 22px;
    padding-top: 17px;

    border-top: 1px solid #ebe8e2;
}


.dashboard-dish-card__actions a,
.dashboard-dish-card__actions button {
    border: 0;

    padding: 0;

    background: transparent;
    color: #171717;

    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;

    cursor: pointer;
}


/* EDIT IMAGE */

.dashboard-dish-image-preview {
    width: min(650px, 100%);

    aspect-ratio: 4 / 3;

    margin-bottom: 22px;

    overflow: hidden;

    background: #ddd;
}


.dashboard-dish-image-preview img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* RESPONSIVE */

@media (max-width: 1200px) {

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

}


@media (max-width: 750px) {

    .dashboard-filter-panel {
        align-items: stretch;
        flex-direction: column;
    }


    .dashboard-filters {
        display: grid;
        grid-template-columns: 1fr;
    }


    .dashboard-filter-search input {
        min-width: 0;
        width: 100%;
    }


    .dashboard-filters input,
    .dashboard-filters select,
    .dashboard-filter-button {
        width: 100%;
    }


    .dashboard-dishes-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   DISH CATEGORIES
========================================================= */

.dashboard-heading-actions {
    display: flex;
    align-items: center;

    gap: 18px;
}


.dashboard-category-list {
    display: grid;

    gap: 12px;
}


.dashboard-category-row {
    display: grid;

    grid-template-columns:
        60px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 22px;

    padding: 22px 25px;

    border: 1px solid #dedbd5;

    background: #fff;
}


.dashboard-category-row__order {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #f1efea;

    font-size: 0.82rem;
    font-weight: 700;

    color: #777;
}


.dashboard-category-row__heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;
}


.dashboard-category-row__heading h2 {
    margin: 0;

    font-size: 1.35rem;

    letter-spacing: -0.025em;
}


.dashboard-category-row__main > p {
    max-width: 700px;

    margin: 10px 0 0;

    line-height: 1.55;

    color: #777;
}


.dashboard-category-row__count {
    display: inline-block;

    margin-top: 10px;

    font-size: 0.78rem;

    color: #999;
}


.dashboard-category-status {
    display: inline-flex;

    padding: 6px 9px;

    border-radius: 999px;

    background: #ecefe8;

    font-size: 0.65rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.dashboard-category-status--inactive {
    background: #222;
    color: #fff;
}


.dashboard-category-row__actions {
    display: flex;
    align-items: center;

    gap: 18px;
}


.dashboard-category-row__actions a,
.dashboard-category-row__actions button {
    padding: 0;

    border: 0;

    background: transparent;

    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;

    color: #171717;

    cursor: pointer;
}


.dashboard-category-warning {
    margin-bottom: 28px;

    padding: 22px 25px;

    border: 1px solid #e3d4a2;

    background: #fff9e7;
}


.dashboard-category-warning strong {
    display: block;

    margin-bottom: 7px;
}


.dashboard-category-warning p {
    max-width: 800px;

    margin: 0;

    line-height: 1.6;

    font-size: 0.87rem;

    color: #736847;
}


@media (max-width: 750px) {

    .dashboard-heading-actions {
        width: 100%;

        justify-content: space-between;
    }


    .dashboard-category-row {
        grid-template-columns:
            45px
            minmax(0, 1fr);

        gap: 15px;

        padding: 20px;
    }


    .dashboard-category-row__order {
        width: 40px;
        height: 40px;
    }


    .dashboard-category-row__actions {
        grid-column: 1 / -1;

        justify-content: flex-end;

        padding-top: 15px;

        border-top: 1px solid #eeeae4;
    }

}

/* =========================================================
   DASHBOARD MENUS
========================================================= */

.dashboard-menu-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}


.dashboard-menu-card {
    overflow: hidden;

    border: 1px solid #dedbd5;

    background: #fff;
}


.dashboard-menu-card__visual {
    position: relative;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #ddd;
}


.dashboard-menu-card__visual img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.dashboard-menu-card__placeholder {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #888;
}


.dashboard-menu-status,
.dashboard-menu-featured {
    position: absolute;

    top: 14px;

    padding: 7px 10px;

    border-radius: 999px;

    font-size: 0.67rem;
    font-weight: 700;

    text-transform: uppercase;
}


.dashboard-menu-status {
    right: 14px;

    background: #fff;
    color: #111;
}


.dashboard-menu-status--inactive {
    background: #222;
    color: #fff;
}


.dashboard-menu-featured {
    left: 14px;

    background: #111;
    color: #fff;
}


.dashboard-menu-card__content {
    padding: 25px;
}


.dashboard-menu-card__content h2 {
    margin: 0;

    font-size: 1.7rem;

    letter-spacing: -0.03em;
}


.dashboard-menu-card__content > p {
    line-height: 1.6;

    color: #777;
}


.dashboard-menu-card__stats {
    display: flex;

    gap: 25px;

    margin-top: 20px;

    font-size: 0.8rem;

    color: #777;
}


.dashboard-menu-card__stats strong {
    color: #111;
}


.dashboard-menu-card__price {
    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid #ebe8e2;
}


.dashboard-menu-card__price small {
    display: block;

    color: #777;
}


.dashboard-menu-card__price strong {
    font-size: 1.4rem;
}


.dashboard-menu-card__price span {
    color: #777;
}


.dashboard-menu-card__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 22px;

    padding-top: 18px;

    border-top: 1px solid #ebe8e2;
}


.dashboard-menu-card__actions a,
.dashboard-menu-card__actions button {
    padding: 0;

    border: 0;

    background: transparent;

    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;

    cursor: pointer;
}


/* BUILDER */

.dashboard-menu-builder {
    margin-top: 50px;
}


.dashboard-menu-builder__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 25px;
}


.dashboard-menu-builder__header p {
    margin: 0 0 6px;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #888;
}


.dashboard-menu-builder__header h2 {
    margin: 0;

    font-size: 2.3rem;

    letter-spacing: -0.04em;
}


.dashboard-menu-builder__header > span {
    color: #888;

    font-size: 0.85rem;
}


/* SECTION */

.dashboard-menu-section {
    margin-bottom: 22px;

    padding: 30px;

    border: 1px solid #d8d4cd;

    background: #fff;
}


.dashboard-menu-section__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        140px;

    gap: 20px;

    margin-bottom: 20px;
}


.dashboard-menu-items {
    margin-top: 30px;

    border-top: 1px solid #e7e3dc;
}


.dashboard-menu-items__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 0;
}


.dashboard-menu-items__heading span {
    min-width: 28px;

    padding: 5px 8px;

    border-radius: 999px;

    background: #eeeae4;

    text-align: center;

    font-size: 0.72rem;
}


/* EXISTING DISH */

.dashboard-menu-item {
    display: grid;

    grid-template-columns:
        minmax(220px, 1.4fr)
        100px
        minmax(180px, 1fr)
        auto;

    align-items: end;

    gap: 15px;

    padding: 15px 0;

    border-top: 1px solid #eeeae4;
}


.dashboard-menu-item__dish {
    display: flex;
    align-items: center;

    gap: 12px;
}


.dashboard-menu-item__dish img {
    width: 54px;
    height: 54px;

    border-radius: 5px;

    object-fit: cover;
}


.dashboard-menu-item__dish strong,
.dashboard-menu-item__dish span,
.dashboard-menu-item__dish small {
    display: block;
}


.dashboard-menu-item__dish span {
    margin-top: 4px;

    font-size: 0.75rem;

    color: #888;
}


.dashboard-menu-item__dish small {
    margin-top: 4px;

    color: #a13c32;
}


.dashboard-menu-item__remove {
    display: flex;
    align-items: center;

    gap: 7px;

    min-height: 42px;

    font-size: 0.8rem;

    cursor: pointer;
}


.dashboard-menu-empty {
    margin: 0;

    padding: 25px 0;

    color: #888;
}


/* ADD DISH */

.dashboard-add-dish {
    margin-top: 25px;

    padding: 22px;

    background: #f7f5f1;
}


.dashboard-add-dish__heading {
    margin-bottom: 17px;
}


.dashboard-add-dish__grid {
    display: grid;

    grid-template-columns:
        minmax(250px, 1fr)
        110px
        minmax(180px, 1fr);

    gap: 15px;
}


.dashboard-menu-section__actions {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 25px;
}


.dashboard-secondary-button,
.dashboard-danger-button {
    padding: 12px 17px;

    border: 0;

    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;

    cursor: pointer;
}


.dashboard-secondary-button {
    background: #111;
    color: #fff;
}


.dashboard-danger-button {
    background: #f1e8e6;
    color: #812e27;
}


/* NEW SECTION */

.dashboard-new-section {
    margin-top: 35px;

    padding: 30px;

    border: 1px dashed #aaa59d;

    background: #faf9f6;
}


.dashboard-new-section > div:first-child span {
    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #888;
}


.dashboard-new-section h3 {
    margin: 6px 0 25px;

    font-size: 1.8rem;
}


.dashboard-new-section__fields {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        140px;

    gap: 20px;

    margin-bottom: 20px;
}


@media (max-width: 1050px) {

    .dashboard-menu-grid {
        grid-template-columns: 1fr;
    }


    .dashboard-menu-item {
        grid-template-columns:
            minmax(200px, 1fr)
            100px
            minmax(160px, 1fr);
    }


    .dashboard-menu-item__remove {
        grid-column: 1 / -1;
    }

}


@media (max-width: 750px) {

    .dashboard-menu-section {
        padding: 22px 18px;
    }


    .dashboard-menu-section__heading,
    .dashboard-add-dish__grid,
    .dashboard-new-section__fields {
        grid-template-columns: 1fr;
    }


    .dashboard-menu-item {
        grid-template-columns: 1fr;
        align-items: stretch;
    }


    .dashboard-menu-item__remove {
        grid-column: auto;
    }


    .dashboard-menu-section__actions {
        align-items: stretch;
        flex-direction: column;
    }


    .dashboard-secondary-button,
    .dashboard-danger-button {
        width: 100%;
    }

}

/* =========================================================
   DASHBOARD LEADS
========================================================= */

.dashboard-leads {
    display: grid;

    border: 1px solid #dedbd5;

    background: #fff;
}


.dashboard-lead-row {
    display: grid;

    grid-template-columns:
        minmax(190px, 1.4fr)
        minmax(140px, 1fr)
        120px
        90px
        minmax(130px, 0.8fr);

    align-items: center;

    gap: 20px;

    padding: 20px 24px;

    border-bottom: 1px solid #ebe8e2;

    transition:
        background 0.2s ease;
}


.dashboard-lead-row:last-child {
    border-bottom: 0;
}


.dashboard-lead-row:hover {
    background: #faf9f6;
}


.dashboard-lead-row__client strong,
.dashboard-lead-row__client span,
.dashboard-lead-row__client small {
    display: block;
}


.dashboard-lead-row__client span {
    margin-top: 5px;

    font-size: 0.85rem;

    color: #666;
}


.dashboard-lead-row__client small {
    margin-top: 3px;

    color: #999;
}


.dashboard-lead-label {
    display: block;

    margin-bottom: 5px;

    font-size: 0.65rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;

    color: #aaa;
}


.dashboard-lead-row strong {
    font-size: 0.88rem;
}


/* STATUS */

.dashboard-lead-status {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    padding: 7px 10px;

    border-radius: 999px;

    background: #eeeae4;

    font-size: 0.7rem;
    font-weight: 700;
}


.dashboard-lead-status--new {
    background: #e8eef8;
    color: #294d80;
}


.dashboard-lead-status--contacted {
    background: #f5eed9;
    color: #765e19;
}


.dashboard-lead-status--offer_sent {
    background: #eee6f6;
    color: #654080;
}


.dashboard-lead-status--won {
    background: #e4f2e5;
    color: #35623a;
}


.dashboard-lead-status--lost {
    background: #f5e5e5;
    color: #863535;
}


.dashboard-lead-date {
    display: block;

    margin-top: 7px;

    color: #aaa;
}


/* DETAIL SUMMARY */

.dashboard-lead-summary {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 1px;

    margin-bottom: 28px;

    border: 1px solid #dedbd5;

    background: #dedbd5;
}


.dashboard-lead-summary > div {
    padding: 20px 22px;

    background: #fff;
}


.dashboard-lead-summary span {
    display: block;

    margin-bottom: 8px;

    font-size: 0.68rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;

    color: #999;
}


.dashboard-lead-summary strong {
    font-size: 0.9rem;
}


.dashboard-lead-contact-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 25px;
}


.dashboard-lead-contact-actions
.dashboard-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.dashboard-lead-management {
    border-left: 4px solid #111;
}


/* RESPONSIVE */

@media (max-width: 1050px) {

    .dashboard-lead-row {
        grid-template-columns:
            minmax(180px, 1.4fr)
            minmax(130px, 1fr)
            110px
            minmax(120px, 0.8fr);
    }


    .dashboard-lead-row > div:nth-child(4) {
        display: none;
    }

}


@media (max-width: 750px) {

    .dashboard-lead-row {
        grid-template-columns:
            1fr
            1fr;

        gap: 18px;

        padding: 20px;
    }


    .dashboard-lead-row > div:nth-child(4) {
        display: block;
    }


    .dashboard-lead-row > div:last-child {
        grid-column: 1 / -1;
    }


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

}


@media (max-width: 480px) {

    .dashboard-lead-row {
        grid-template-columns: 1fr;
    }


    .dashboard-lead-row > div:last-child {
        grid-column: auto;
    }

}

/* =========================================================
   SITE SETTINGS
========================================================= */

.dashboard-site-logo-preview {
    width: min(300px, 100%);

    margin: 8px 0 18px;
    padding: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #111;
}


.dashboard-site-logo-preview img {
    display: block;

    max-width: 100%;
    max-height: 140px;

    object-fit: contain;
}


.dashboard-field-help {
    display: block;

    margin-top: 2px;

    font-size: 0.75rem;
    line-height: 1.5;

    color: #999;
}


/* PREVIEW */

.dashboard-settings-preview {
    display: grid;

    grid-template-columns:
        minmax(220px, 0.8fr)
        minmax(0, 1.5fr);

    gap: 50px;

    margin-bottom: 28px;
    padding: 35px;

    background: #111;
    color: #fff;
}


.dashboard-settings-preview__label {
    display: block;

    margin-bottom: 7px;

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    color:
        rgba(255, 255, 255, 0.5);
}


.dashboard-settings-preview h2 {
    margin: 0;

    font-size: 2rem;

    letter-spacing: -0.035em;
}


.dashboard-settings-preview__details {
    display: grid;

    gap: 18px;
}


.dashboard-settings-preview__details a,
.dashboard-settings-preview__details > div {
    display: grid;

    gap: 5px;

    padding-bottom: 17px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.12);
}


.dashboard-settings-preview__details a:last-child,
.dashboard-settings-preview__details > div:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}


.dashboard-settings-preview__details span {
    font-size: 0.68rem;

    text-transform: uppercase;
    letter-spacing: 0.1em;

    color:
        rgba(255, 255, 255, 0.45);
}


.dashboard-settings-preview__details strong {
    font-size: 0.9rem;
    line-height: 1.5;

    color: #fff;
}


@media (max-width: 700px) {

    .dashboard-settings-preview {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 28px 22px;
    }

}

/* =========================================================
   EVENT TYPES
========================================================= */

.dashboard-event-types-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


.dashboard-event-type-card {
    overflow: hidden;

    border: 1px solid #dedbd5;

    background: #fff;
}


.dashboard-event-type-card__visual {
    position: relative;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #ddd;
}


.dashboard-event-type-card__visual img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}


.dashboard-event-type-card:hover
.dashboard-event-type-card__visual img {
    transform: scale(1.025);
}


.dashboard-event-type-card__placeholder {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #888;
}


.dashboard-event-type-status {
    position: absolute;

    top: 13px;
    right: 13px;

    padding: 7px 10px;

    border-radius: 999px;

    background: #fff;

    font-size: 0.67rem;
    font-weight: 700;

    text-transform: uppercase;
}


.dashboard-event-type-status--inactive {
    background: #222;
    color: #fff;
}


.dashboard-event-type-card__content {
    padding: 23px;
}


.dashboard-event-type-card__content > span {
    font-size: 0.68rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;

    color: #999;
}


.dashboard-event-type-card__content h2 {
    margin: 8px 0 0;

    font-size: 1.6rem;

    letter-spacing: -0.03em;
}


.dashboard-event-type-card__content > p {
    margin: 13px 0 0;

    line-height: 1.55;

    color: #777;

    font-size: 0.86rem;
}


.dashboard-event-type-card__actions {
    display: flex;
    flex-wrap: wrap;

    gap: 17px;

    margin-top: 22px;
    padding-top: 17px;

    border-top: 1px solid #ebe8e2;
}


.dashboard-event-type-card__actions a,
.dashboard-event-type-card__actions button {
    padding: 0;

    border: 0;

    background: transparent;

    font: inherit;
    font-size: 0.8rem;
    font-weight: 700;

    cursor: pointer;
}


@media (max-width: 1100px) {

    .dashboard-event-types-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 650px) {

    .dashboard-event-types-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   EVENT TYPE GALLERY
========================================================= */

.dashboard-event-gallery {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;

    margin-top: 30px;
}


.dashboard-event-gallery__item {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #ddd;
}


.dashboard-event-gallery__item img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


@media (max-width: 1100px) {

    .dashboard-event-gallery {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .dashboard-event-gallery {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

/* =========================================================
   PORTFOLIO CATEGORIES
========================================================= */

.dashboard-portfolio-category-counts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 12px;
}


.dashboard-portfolio-category-counts span {
    font-size: 0.78rem;

    color: #888;
}


.dashboard-portfolio-category-counts strong {
    color: #171717;
}

/* =========================================================
   DASHBOARD NOTIFICATION BADGE
========================================================= */

.dashboard-nav__item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;
}


.dashboard-nav__badge {
    min-width: 23px;
    height: 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 6px;

    border-radius: 999px;

    background: #b83232;
    color: #fff;

    font-size: 0.65rem;
    font-weight: 800;

    line-height: 1;
}


.dashboard-nav__item--active
.dashboard-nav__badge {
    background: #fff;
    color: #111;
}

.dashboard-lead-row--new {
    position: relative;

    background: #fffdf7;
}


.dashboard-lead-row--new::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 4px;

    background: #b83232;
}

/* =========================================================
   LEAD QUICK ACTIONS
========================================================= */

.dashboard-secondary-button--whatsapp {
    background: #1f6f4a;
    border-color: #1f6f4a;

    color: #fff;
}


.dashboard-secondary-button--whatsapp:hover {
    background: #18583b;
    border-color: #18583b;
}


.dashboard-lead-quick-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 28px;
    padding: 22px 24px;

    border: 1px solid #dedbd5;

    background: #fff;
}


.dashboard-lead-quick-actions > div:first-child {
    display: grid;

    gap: 5px;
}


.dashboard-lead-quick-actions > div:first-child span {
    font-size: 0.65rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.11em;

    color: #999;
}


.dashboard-lead-quick-actions > div:first-child strong {
    font-size: 0.9rem;
}


.dashboard-lead-quick-actions__buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 9px;
}


.dashboard-lead-quick-actions__buttons form {
    margin: 0;
}


.dashboard-lead-quick-actions__buttons button {
    min-height: 38px;

    padding: 0 14px;

    border: 1px solid #d5d1cb;

    background: #f5f3ef;

    color: #222;

    font: inherit;
    font-size: 0.73rem;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}


.dashboard-lead-quick-actions__buttons button:hover {
    border-color: #111;

    background: #111;
    color: #fff;
}


.dashboard-lead-quick-actions__buttons
.dashboard-lead-quick-action--won {
    border-color: #bdd8c0;

    background: #e4f2e5;

    color: #35623a;
}


.dashboard-lead-quick-actions__buttons
.dashboard-lead-quick-action--lost {
    border-color: #e2c1c1;

    background: #f5e5e5;

    color: #863535;
}


@media (max-width: 850px) {

    .dashboard-lead-quick-actions {
        align-items: flex-start;
        flex-direction: column;
    }


    .dashboard-lead-quick-actions__buttons {
        width: 100%;

        justify-content: flex-start;
    }

}


@media (max-width: 520px) {

    .dashboard-lead-quick-actions__buttons {
        display: grid;

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


    .dashboard-lead-quick-actions__buttons button {
        width: 100%;
    }

}
/* =========================================================
   LEAD HISTORY
========================================================= */

.dashboard-lead-history {
    margin-bottom: 28px;
    padding: 30px;

    border: 1px solid #dedbd5;

    background: #fff;
}


.dashboard-lead-timeline {
    position: relative;

    margin-top: 35px;
}


.dashboard-lead-timeline::before {
    content: "";

    position: absolute;

    top: 8px;
    bottom: 8px;
    left: 7px;

    width: 1px;

    background: #ddd8d0;
}


.dashboard-lead-timeline__item {
    position: relative;

    display: grid;

    grid-template-columns:
        16px
        minmax(0, 1fr);

    gap: 20px;

    padding-bottom: 30px;
}


.dashboard-lead-timeline__item:last-child {
    padding-bottom: 0;
}


.dashboard-lead-timeline__marker {
    position: relative;

    z-index: 2;

    width: 15px;
    height: 15px;

    margin-top: 3px;

    border: 3px solid #fff;
    border-radius: 50%;

    background: #222;

    box-shadow:
        0 0 0 1px #222;
}


.dashboard-lead-timeline__item--created
.dashboard-lead-timeline__marker {
    background: #b69658;

    box-shadow:
        0 0 0 1px #b69658;
}


.dashboard-lead-timeline__content {
    padding-bottom: 3px;
}


.dashboard-lead-timeline__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.dashboard-lead-timeline__top strong {
    font-size: 0.88rem;
}


.dashboard-lead-timeline__top time {
    font-size: 0.7rem;

    color: #aaa;
}


.dashboard-lead-timeline__content p {
    margin: 10px 0 0;

    font-size: 0.82rem;
    line-height: 1.6;

    color: #777;
}


.dashboard-lead-timeline__content small {
    display: block;

    margin-top: 10px;

    font-size: 0.7rem;

    color: #aaa;
}


.dashboard-lead-timeline__content small strong {
    color: #555;
}


.dashboard-lead-history-status {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 12px;
}


.dashboard-lead-history-status span {
    padding: 6px 9px;

    border-radius: 999px;

    background: #f1eee9;

    font-size: 0.69rem;
    font-weight: 700;

    color: #555;
}


.dashboard-lead-history-status strong {
    color: #aaa;
}


@media (max-width: 600px) {

    .dashboard-lead-history {
        padding:
            25px
            20px;
    }


    .dashboard-lead-timeline__top {
        align-items: flex-start;
        flex-direction: column;

        gap: 5px;
    }

}

/* =========================================================
   LEAD CONTACT PANEL
========================================================= */

.dashboard-lead-contact-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 28px;
    padding: 22px 24px;

    border: 1px solid #dedbd5;

    background: #fff;
}


.dashboard-lead-contact-panel > div:first-child {
    display: grid;

    gap: 5px;
}


.dashboard-lead-contact-panel > div:first-child span {
    font-size: 0.65rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.11em;

    color: #999;
}


.dashboard-lead-contact-panel > div:first-child strong {
    font-size: 0.9rem;
}


.dashboard-lead-contact-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin: 0;
}


.dashboard-lead-contact-actions form {
    margin: 0;
}


.dashboard-lead-contact-actions
.dashboard-secondary-button {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 17px;

    cursor: pointer;
}


@media (max-width: 750px) {

    .dashboard-lead-contact-panel {
        align-items: flex-start;
        flex-direction: column;
    }


    .dashboard-lead-contact-actions {
        width: 100%;
    }


    .dashboard-lead-contact-actions form {
        flex: 1;
    }


    .dashboard-lead-contact-actions
    .dashboard-secondary-button {
        width: 100%;
    }

}


@media (max-width: 500px) {

    .dashboard-lead-contact-actions {
        display: grid;

        grid-template-columns: 1fr;

        width: 100%;
    }

}
/* =========================================================
   STEP 3 - LEADS OVERVIEW, FILTERS & PAGINATION
========================================================= */

.dashboard-lead-stats {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 12px;

    margin-bottom: 14px;
}


.dashboard-lead-stat {
    position: relative;

    min-width: 0;

    padding: 20px 18px;

    border: 1px solid #dedbd5;

    background: #fff;
    color: #171717;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}


.dashboard-lead-stat::before {
    content: "";

    position: absolute;

    top: -1px;
    left: -1px;
    right: -1px;

    height: 3px;

    background: #bbb6ad;
}


.dashboard-lead-stat:hover {
    transform: translateY(-2px);

    border-color: #bbb6ad;

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.06);
}


.dashboard-lead-stat.is-active {
    border-color: #8f8980;

    box-shadow:
        0 0 0 1px #8f8980;
}


.dashboard-lead-stat--new::before {
    background: #4a6f9d;
}


.dashboard-lead-stat--contacted::before {
    background: #a98a35;
}


.dashboard-lead-stat--offer::before {
    background: #7c5a97;
}


.dashboard-lead-stat--won::before {
    background: #4d8054;
}


.dashboard-lead-stat--lost::before {
    background: #9b4a4a;
}


.dashboard-lead-stat span,
.dashboard-lead-stat small {
    display: block;
}


.dashboard-lead-stat span {
    font-size: 0.67rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.09em;

    color: #8a857d;
}


.dashboard-lead-stat strong {
    display: block;

    margin: 10px 0 7px;

    font-size: 2rem;
    line-height: 1;

    letter-spacing: -0.04em;
}


.dashboard-lead-stat small {
    overflow: hidden;

    color: #99938b;

    font-size: 0.72rem;
    line-height: 1.4;

    text-overflow: ellipsis;
    white-space: nowrap;
}


.dashboard-lead-activity-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 0;

    margin-bottom: 28px;

    border: 1px solid #dedbd5;

    background: #f8f7f4;
}


.dashboard-lead-activity-strip > div {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 12px 17px;

    border-right: 1px solid #dedbd5;
}


.dashboard-lead-activity-strip > div:last-child {
    border-right: 0;
}


.dashboard-lead-activity-strip span {
    font-size: 0.72rem;

    color: #777169;
}


.dashboard-lead-activity-strip strong {
    font-size: 0.82rem;

    color: #171717;
}


.dashboard-lead-filter-panel {
    align-items: flex-end;
}


.dashboard-lead-filters {
    flex: 1 1 auto;
}


.dashboard-lead-filter-panel
.dashboard-filter-count strong {
    color: #171717;
}


.dashboard-lead-row__event small {
    display: block;

    margin-top: 5px;

    font-size: 0.72rem;
    line-height: 1.4;

    color: #999;
}


.dashboard-lead-past-date {
    display: block;

    margin-top: 5px;

    font-size: 0.68rem;

    color: #9b4a4a;
}


.dashboard-lead-row__status {
    min-width: 0;
}


.dashboard-pagination {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);

    align-items: center;

    gap: 20px;

    margin-top: 18px;
    padding: 15px 18px;

    border: 1px solid #dedbd5;

    background: #fff;
}


.dashboard-pagination__side {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;
}


.dashboard-pagination__side--right {
    justify-content: flex-end;
}


.dashboard-pagination__side a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding: 0 12px;

    border: 1px solid #d7d3cc;

    background: #faf9f6;
    color: #333;

    font-size: 0.76rem;
    font-weight: 700;

    transition:
        background 0.18s ease,
        border-color 0.18s ease;
}


.dashboard-pagination__side a:hover {
    border-color: #111;

    background: #111;
    color: #fff;
}


.dashboard-pagination__current {
    color: #777;

    font-size: 0.76rem;

    text-align: center;
}


.dashboard-pagination__current strong {
    color: #171717;
}


.dashboard-lead-empty-state {
    margin-top: 0;
}


/* DASHBOARD INDEX - LEAD OVERVIEW */

.dashboard-lead-dashboard-overview {
    margin-bottom: 28px;

    border: 1px solid #dedbd5;

    background: #fff;
}


.dashboard-lead-dashboard-overview__header,
.dashboard-panel__header--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;
}


.dashboard-lead-dashboard-overview__header
.dashboard-preview-link,
.dashboard-panel__header--split
.dashboard-preview-link {
    padding-bottom: 4px;

    font-size: 0.78rem;
}


.dashboard-lead-dashboard-metrics {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top: 1px solid #dedbd5;
}


.dashboard-lead-dashboard-metrics > a {
    padding: 24px 26px;

    border-right: 1px solid #dedbd5;

    transition:
        background 0.18s ease;
}


.dashboard-lead-dashboard-metrics > a:last-child {
    border-right: 0;
}


.dashboard-lead-dashboard-metrics > a:hover {
    background: #faf9f6;
}


.dashboard-lead-dashboard-metrics span,
.dashboard-lead-dashboard-metrics small {
    display: block;
}


.dashboard-lead-dashboard-metrics span {
    font-size: 0.68rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.09em;

    color: #999;
}


.dashboard-lead-dashboard-metrics strong {
    display: block;

    margin: 9px 0 6px;

    font-size: 2.15rem;
    line-height: 1;

    letter-spacing: -0.04em;
}


.dashboard-lead-dashboard-metrics small {
    font-size: 0.75rem;

    color: #888;
}


.dashboard-latest-leads-panel {
    margin-top: 0;
}


.dashboard-latest-lead--new {
    background: #fffdf7;
}


.dashboard-latest-lead--new td:first-child {
    box-shadow:
        inset 4px 0 0 #b83232;
}


@media (max-width: 1350px) {

    .dashboard-lead-stats {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 1050px) {

    .dashboard-lead-filter-panel {
        align-items: stretch;
        flex-direction: column;
    }


    .dashboard-lead-dashboard-metrics {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .dashboard-lead-dashboard-metrics > a:nth-child(2) {
        border-right: 0;
    }


    .dashboard-lead-dashboard-metrics > a:nth-child(-n + 2) {
        border-bottom: 1px solid #dedbd5;
    }

}


@media (max-width: 750px) {

    .dashboard-lead-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .dashboard-lead-stat small {
        white-space: normal;
    }


    .dashboard-lead-activity-strip {
        display: grid;
        grid-template-columns: 1fr;
    }


    .dashboard-lead-activity-strip > div {
        justify-content: space-between;

        border-right: 0;
        border-bottom: 1px solid #dedbd5;
    }


    .dashboard-lead-activity-strip > div:last-child {
        border-bottom: 0;
    }


    .dashboard-pagination {
        grid-template-columns: 1fr;
    }


    .dashboard-pagination__side,
    .dashboard-pagination__side--right {
        justify-content: center;
    }


    .dashboard-pagination__current {
        grid-row: 1;
    }


    .dashboard-lead-dashboard-overview__header,
    .dashboard-panel__header--split {
        align-items: flex-start;
        flex-direction: column;
    }


    .dashboard-lead-dashboard-metrics {
        grid-template-columns: 1fr;
    }


    .dashboard-lead-dashboard-metrics > a,
    .dashboard-lead-dashboard-metrics > a:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid #dedbd5;
    }


    .dashboard-lead-dashboard-metrics > a:last-child {
        border-bottom: 0;
    }

}


@media (max-width: 430px) {

    .dashboard-lead-stats {
        grid-template-columns: 1fr;
    }


    .dashboard-pagination__side {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        width: 100%;
    }


    .dashboard-pagination__side a {
        width: 100%;
    }

}

/* =========================================================
   STEP 4 - DASHBOARD MOBILE EXPERIENCE
========================================================= */

.dashboard-topbar__left {
    display: flex;
    align-items: center;
    gap: 16px;
}


.dashboard-mobile-menu-toggle,
.dashboard-sidebar__close,
.dashboard-mobile-overlay,
.dashboard-sidebar__mobile-user {
    display: none;
}


@media (max-width: 900px) {

    .dashboard-body.dashboard-menu-open {
        overflow: hidden;
    }


    .dashboard-layout {
        display: block;
        min-height: 100vh;
    }


    .dashboard-main {
        width: 100%;
        min-width: 0;
    }


    .dashboard-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;

        z-index: 1000;

        width: min(340px, 86vw);
        height: 100dvh;

        padding: 22px 18px 18px;

        overflow: hidden;

        transform: translateX(-105%);

        box-shadow:
            24px 0 55px rgba(0, 0, 0, 0.24);

        transition:
            transform 0.26s ease;
    }


    .dashboard-sidebar.is-open {
        transform: translateX(0);
    }


    .dashboard-sidebar__close {
        position: absolute;
        top: 18px;
        right: 16px;

        z-index: 2;

        width: 42px;
        height: 42px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 0;

        border:
            1px solid
            rgba(255, 255, 255, 0.14);
        border-radius: 8px;

        background:
            rgba(255, 255, 255, 0.06);
        color: #fff;

        font-size: 1.6rem;
        line-height: 1;

        cursor: pointer;
    }


    .dashboard-brand {
        flex: 0 0 auto;

        min-height: 64px;

        padding:
            0
            52px
            20px
            4px;
    }


    .dashboard-brand img {
        width: 46px;
        height: 46px;
    }


    .dashboard-brand strong {
        font-size: 0.9rem;
    }


    .dashboard-brand span {
        font-size: 0.68rem;
    }


    .dashboard-nav {
        flex: 1 1 auto;

        display: grid;
        align-content: start;

        gap: 5px;

        margin: 18px 0 0;
        padding:
            0
            4px
            18px
            0;

        overflow-x: hidden;
        overflow-y: auto;

        overscroll-behavior: contain;
        scrollbar-width: thin;
    }


    .dashboard-nav__item {
        flex: none;

        width: 100%;
        min-height: 47px;

        padding: 12px 14px;
    }


    .dashboard-sidebar__bottom {
        flex: 0 0 auto;

        display: grid;

        gap: 13px;

        margin-top: auto;
        padding:
            17px
            6px
            2px;
    }


    .dashboard-sidebar__mobile-user {
        display: grid;
        gap: 4px;

        margin-bottom: 3px;
        padding-bottom: 14px;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.08);
    }


    .dashboard-sidebar__mobile-user span {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;

        color:
            rgba(255, 255, 255, 0.4);
    }


    .dashboard-sidebar__mobile-user strong {
        overflow: hidden;

        font-size: 0.82rem;

        text-overflow: ellipsis;
        white-space: nowrap;
    }


    .dashboard-mobile-overlay {
        position: fixed;
        inset: 0;

        z-index: 990;

        display: block;

        width: 100%;
        height: 100%;

        padding: 0;
        border: 0;

        background: rgba(0, 0, 0, 0.48);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            opacity 0.24s ease,
            visibility 0.24s ease;
    }


    .dashboard-mobile-overlay.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }


    .dashboard-topbar {
        position: sticky;
        top: 0;

        z-index: 900;

        min-height: 72px;

        padding:
            13px
            4%;

        gap: 16px;

        box-shadow:
            0 5px 18px rgba(0, 0, 0, 0.04);
    }


    .dashboard-mobile-menu-toggle {
        flex: 0 0 44px;

        width: 44px;
        height: 44px;

        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;

        padding: 0;

        border: 1px solid #d9d5ce;
        border-radius: 8px;

        background: #fff;
        color: #171717;

        cursor: pointer;
    }


    .dashboard-mobile-menu-toggle span {
        display: block;

        width: 18px;
        height: 2px;

        background: currentColor;

        transition:
            transform 0.2s ease,
            opacity 0.2s ease;
    }


    .dashboard-mobile-menu-toggle[aria-expanded="true"]
    span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }


    .dashboard-mobile-menu-toggle[aria-expanded="true"]
    span:nth-child(2) {
        opacity: 0;
    }


    .dashboard-mobile-menu-toggle[aria-expanded="true"]
    span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    .dashboard-content {
        padding:
            32px
            4%
            85px;
    }


    .dashboard-heading {
        align-items: flex-start;
    }


    .dashboard-filter-panel,
    .dashboard-lead-filter-panel {
        align-items: stretch;
        flex-direction: column;

        gap: 18px;
    }


    .dashboard-filters,
    .dashboard-lead-filters {
        width: 100%;
    }


    .dashboard-filter-count {
        align-self: flex-start;
    }


    .dashboard-savebar {
        left: 0;
        right: 0;
    }

}


@media (max-width: 700px) {

    .dashboard-heading {
        margin-bottom: 26px;
    }


    .dashboard-heading h1 {
        font-size:
            clamp(
                2.15rem,
                10vw,
                3.15rem
            );
    }


    .dashboard-heading-actions {
        align-items: stretch;
        flex-direction: column;

        width: 100%;
    }


    .dashboard-heading-actions > a,
    .dashboard-heading-actions > button,
    .dashboard-primary-action,
    .dashboard-preview-link {
        width: 100%;

        text-align: center;
    }


    .dashboard-edit-panel {
        padding:
            26px
            20px;
    }


    .dashboard-edit-panel__heading {
        margin-bottom: 27px;
        padding-bottom: 20px;
    }


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


    .dashboard-field--full {
        grid-column: auto;
    }


    .dashboard-filter-panel {
        padding: 18px;
    }


    .dashboard-filters,
    .dashboard-lead-filters {
        display: grid;
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .dashboard-filters > div,
    .dashboard-lead-filters > div {
        width: 100%;
    }


    .dashboard-filter-search input,
    .dashboard-filters input,
    .dashboard-filters select,
    .dashboard-lead-filters input,
    .dashboard-lead-filters select,
    .dashboard-filter-button,
    .dashboard-filter-reset {
        width: 100%;
        min-width: 0;
    }


    .dashboard-filter-reset {
        justify-content: center;

        border: 1px solid #d9d5ce;

        background: #faf9f6;
    }


    .dashboard-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }


    .dashboard-stat {
        padding: 19px;
    }


    .dashboard-stat strong {
        margin: 9px 0 5px;

        font-size: 2rem;
    }


    .dashboard-stat small {
        font-size: 0.72rem;
    }


    .dashboard-lead-stats {
        gap: 9px;
    }


    .dashboard-lead-stat {
        padding:
            17px
            15px;
    }


    .dashboard-lead-stat strong {
        font-size: 1.7rem;
    }


    .dashboard-leads {
        gap: 11px;

        border: 0;

        background: transparent;
    }


    .dashboard-lead-row {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            18px
            14px;

        padding:
            19px
            18px;

        border: 1px solid #dedbd5;

        background: #fff;
    }


    .dashboard-lead-row:last-child {
        border-bottom: 1px solid #dedbd5;
    }


    .dashboard-lead-row__client,
    .dashboard-lead-row__status {
        grid-column: 1 / -1;
    }


    .dashboard-lead-row__status {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;

        gap: 10px;

        padding-top: 13px;

        border-top: 1px solid #eeeae4;
    }


    .dashboard-lead-date {
        margin-top: 0;
    }


    .dashboard-lead-row--new::before {
        width: 4px;
    }


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


    .dashboard-lead-quick-actions,
    .dashboard-lead-contact-panel {
        align-items: stretch;
        flex-direction: column;
    }


    .dashboard-lead-quick-actions__buttons,
    .dashboard-lead-contact-actions {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        width: 100%;
    }


    .dashboard-lead-quick-actions__buttons form,
    .dashboard-lead-contact-actions form {
        width: 100%;
    }


    .dashboard-lead-quick-actions__buttons button,
    .dashboard-lead-contact-actions
    .dashboard-secondary-button {
        width: 100%;
    }


    .dashboard-pagination {
        padding:
            14px
            12px;
    }


    .dashboard-panel__header,
    .dashboard-lead-dashboard-overview__header {
        padding:
            21px
            20px;
    }


    .dashboard-latest-leads-table {
        display: block;

        width: 100%;
    }


    .dashboard-latest-leads-table thead {
        display: none;
    }


    .dashboard-latest-leads-table tbody {
        display: grid;

        gap: 10px;

        padding: 12px;
    }


    .dashboard-latest-leads-table tr {
        display: block;

        overflow: hidden;

        border: 1px solid #e3dfd8;

        background: #fff;
    }


    .dashboard-latest-leads-table td {
        display: grid;
        grid-template-columns:
            minmax(92px, 0.45fr)
            minmax(0, 1fr);

        align-items: center;

        gap: 12px;

        padding:
            11px
            14px;

        border-bottom: 1px solid #eeeae4;

        text-align: left;
    }


    .dashboard-latest-leads-table td:last-child {
        border-bottom: 0;
    }


    .dashboard-latest-leads-table td::before {
        content: attr(data-label);

        font-size: 0.64rem;
        font-weight: 700;

        text-transform: uppercase;
        letter-spacing: 0.08em;

        color: #999;
    }


    .dashboard-latest-leads-table td strong,
    .dashboard-latest-leads-table td small {
        min-width: 0;
    }


    .dashboard-latest-lead--new td:first-child {
        box-shadow:
            inset 4px 0 0 #b83232;
    }


    .dashboard-menu-section__actions,
    .dashboard-category-row__actions,
    .dashboard-portfolio-card__actions,
    .dashboard-dish-card__actions {
        align-items: stretch;
        flex-direction: column;
    }


    .dashboard-category-row__actions a,
    .dashboard-category-row__actions button,
    .dashboard-portfolio-card__actions a,
    .dashboard-dish-card__actions a,
    .dashboard-dish-card__actions button {
        min-height: 40px;

        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;

        border: 1px solid #dedbd5;
    }

}


@media (max-width: 480px) {

    .dashboard-topbar {
        padding:
            11px
            4%;
    }


    .dashboard-topbar__eyebrow {
        font-size: 0.58rem;
    }


    .dashboard-topbar strong {
        font-size: 0.88rem;
    }


    .dashboard-content {
        padding:
            26px
            4%
            75px;
    }


    .dashboard-stats,
    .dashboard-lead-stats {
        grid-template-columns: 1fr;
    }


    .dashboard-lead-row {
        grid-template-columns: 1fr;
    }


    .dashboard-lead-row__client,
    .dashboard-lead-row__status {
        grid-column: auto;
    }


    .dashboard-lead-quick-actions__buttons,
    .dashboard-lead-contact-actions {
        grid-template-columns: 1fr;
    }


    .dashboard-lead-dashboard-metrics {
        grid-template-columns: 1fr;
    }


    .dashboard-savebar {
        bottom: 8px;

        padding:
            14px
            15px;
    }


    .dashboard-savebar span {
        display: none;
    }


    .dashboard-latest-leads-table td {
        grid-template-columns: 1fr;

        gap: 5px;
    }


    .dashboard-latest-leads-table td::before {
        margin-bottom: 1px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .dashboard-sidebar,
    .dashboard-mobile-overlay,
    .dashboard-mobile-menu-toggle span {
        transition: none;
    }

}

/* =========================================================
   STEP 6 - TESTIMONIALE
========================================================= */

.dashboard-testimonial-info {
    margin-bottom: 26px;
    padding: 20px 22px;
    border: 1px solid #e2ded7;
    background: #fff9e7;
}

.dashboard-testimonial-info strong {
    display: block;
    margin-bottom: 6px;
}

.dashboard-testimonial-info p {
    margin: 0;
    color: #6f664d;
    font-size: 0.85rem;
    line-height: 1.6;
}

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

.dashboard-testimonial-card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: 24px;
    border: 1px solid #dedbd5;
    background: #fff;
}

.dashboard-testimonial-card.is-inactive {
    opacity: 0.62;
    background: #f6f5f2;
}

.dashboard-testimonial-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #999;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-testimonial-card__status {
    padding: 6px 9px;
    border-radius: 999px;
    background: #edf5ee;
    color: #416847;
}

.dashboard-testimonial-card.is-inactive
.dashboard-testimonial-card__status {
    background: #e8e6e2;
    color: #777;
}

.dashboard-testimonial-card blockquote {
    margin: 35px 0;
    color: #2b2b2b;
    font-family: var(--admin-font-display);
    font-size: 1.08rem;
    line-height: 1.7;
}

.dashboard-testimonial-card__client {
    display: grid;
    gap: 5px;
    margin-top: auto;
}

.dashboard-testimonial-card__client span {
    color: #888;
    font-size: 0.78rem;
}

.dashboard-testimonial-card__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #ece9e4;
}

.dashboard-testimonial-card__actions form {
    margin: 0;
}

.dashboard-testimonial-card__actions a,
.dashboard-testimonial-card__actions button {
    border: 0;
    padding: 0;
    background: transparent;
    color: #171717;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.dashboard-testimonial-card__actions
.dashboard-testimonial-card__delete {
    color: #9b3535;
}

@media (max-width: 800px) {
    .dashboard-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .dashboard-testimonial-card {
        min-height: 0;
        padding: 20px;
    }

    .dashboard-testimonial-card__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .dashboard-testimonial-card__actions a,
    .dashboard-testimonial-card__actions button {
        display: block;
        width: 100%;
        padding: 10px 0;
        text-align: left;
    }
}

/* =========================================================
   PORTFOLIO EDITOR V2
========================================================= */

.dashboard-heading__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.dashboard-portfolio-editor .dashboard-edit-panel {
    overflow: hidden;
}

.dashboard-secondary-action {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border: 1px solid #cfcac1;
    background: #fff;
    color: #171717;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.dashboard-secondary-action:hover {
    border-color: #171717;
    background: #f7f4ef;
}

/* COVER FOCUS */

.dashboard-cover-focus {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.dashboard-cover-focus__preview {
    position: relative;
    min-height: 390px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid #d7d2c9;
    background: #e9e5de;
}

.dashboard-cover-focus__preview > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.dashboard-cover-focus__surface {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: crosshair;
}

.dashboard-cover-focus__marker {
    position: absolute;
    z-index: 3;
    width: 26px;
    height: 26px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.34);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.dashboard-cover-focus__marker::before,
.dashboard-cover-focus__marker::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}

.dashboard-cover-focus__marker::before {
    width: 8px;
    height: 2px;
}

.dashboard-cover-focus__marker::after {
    width: 2px;
    height: 8px;
}

.dashboard-cover-focus__empty {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 30px;
    text-align: center;
    color: #858078;
}

.dashboard-cover-focus__empty[hidden] {
    display: none;
}

.dashboard-cover-focus__empty strong {
    color: #4d4943;
}

.dashboard-cover-focus__preview.is-empty .dashboard-cover-focus__surface,
.dashboard-cover-focus__preview.is-empty .dashboard-cover-focus__marker {
    display: none;
}

.dashboard-cover-focus__controls {
    display: grid;
    gap: 25px;
}

.dashboard-cover-focus__slider {
    display: grid;
    gap: 10px;
}

.dashboard-cover-focus__slider > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dashboard-cover-focus__slider label {
    font-size: 0.78rem;
    font-weight: 700;
}

.dashboard-cover-focus__slider output {
    color: #77716a;
    font-size: 0.75rem;
    font-variant-numeric: tabular-nums;
}

.dashboard-cover-focus__slider input[type="range"] {
    width: 100%;
    accent-color: #171717;
}

.dashboard-cover-focus__hint {
    margin: -8px 0 0;
    color: #8a857d;
    font-size: 0.72rem;
    line-height: 1.55;
}

/* GALLERY SORTER */

.dashboard-upload-box--portfolio {
    margin-bottom: 28px;
}

.dashboard-gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 8px 0 18px;
    padding: 16px 0;
    border-top: 1px solid #e1ddd6;
    border-bottom: 1px solid #e1ddd6;
}

.dashboard-gallery-toolbar > div {
    display: grid;
    gap: 4px;
}

.dashboard-gallery-toolbar strong {
    font-size: 0.82rem;
}

.dashboard-gallery-toolbar span {
    color: #88827a;
    font-size: 0.72rem;
}

.dashboard-gallery-toolbar__status {
    flex: 0 0 auto;
    padding: 7px 10px;
    border: 1px solid #d8d3ca;
    background: #f8f6f2;
    color: #787269 !important;
    font-size: 0.66rem !important;
    font-weight: 700;
}

.dashboard-gallery-toolbar__status.is-dirty {
    border-color: #d8b66b;
    background: #fff8e8;
    color: #7e6021 !important;
}

.dashboard-gallery-v2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.dashboard-gallery-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dedad3;
    background: #fff;
    transition:
        transform 0.16s ease,
        opacity 0.16s ease,
        box-shadow 0.16s ease;
}

.dashboard-gallery-card.is-dragging {
    opacity: 0.55;
    transform: scale(0.985);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}

.dashboard-gallery-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e6e1da;
}

.dashboard-gallery-card__media > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.dashboard-gallery-card__order {
    position: absolute;
    left: 10px;
    bottom: 10px;
    min-width: 34px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    background: rgba(17, 17, 17, 0.82);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.dashboard-gallery-card__handle {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    gap: 3px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(17, 17, 17, 0.72);
    cursor: grab;
    backdrop-filter: blur(8px);
}

.dashboard-gallery-card__handle:active {
    cursor: grabbing;
}

.dashboard-gallery-card__handle span {
    display: block;
    width: 15px;
    height: 2px;
    background: #fff;
}

.dashboard-gallery-card__body {
    padding: 15px;
}

.dashboard-gallery-card__body > label {
    display: block;
    margin-bottom: 7px;
    color: #6f6a63;
    font-size: 0.68rem;
    font-weight: 700;
}

.dashboard-gallery-card__body > input {
    width: 100%;
    min-height: 42px;
    padding: 0 11px;
    border: 1px solid #d4d0c8;
    background: #fff;
    color: #181818;
    font: inherit;
    font-size: 0.78rem;
}

.dashboard-gallery-card__body > input:focus {
    outline: 2px solid rgba(17, 17, 17, 0.12);
    outline-offset: 1px;
    border-color: #77716a;
}

.dashboard-gallery-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
}

.dashboard-gallery-card__actions > div {
    display: flex;
    gap: 6px;
}

.dashboard-gallery-card__actions button {
    min-width: 38px;
    min-height: 36px;
    border: 1px solid #d7d2ca;
    background: #fff;
    color: #171717;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.dashboard-gallery-card__actions button:disabled {
    opacity: 0.3;
    cursor: default;
}

.dashboard-gallery-card__delete {
    padding: 0 11px !important;
    border-color: #e2c5c5 !important;
    color: #943f3f !important;
}

@media (max-width: 1100px) {
    .dashboard-cover-focus {
        grid-template-columns: 1fr;
    }

    .dashboard-cover-focus__preview {
        min-height: 0;
    }

    .dashboard-gallery-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .dashboard-heading__actions,
    .dashboard-gallery-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .dashboard-heading__actions {
        width: 100%;
    }

    .dashboard-heading__actions a {
        width: 100%;
        justify-content: center;
    }

    .dashboard-cover-focus__preview {
        aspect-ratio: 4 / 3;
    }

    .dashboard-gallery-v2 {
        grid-template-columns: 1fr;
    }

    .dashboard-gallery-card__handle {
        display: none;
    }

    .dashboard-gallery-toolbar__status {
        width: fit-content;
    }
}

/* =========================================================
   DASHBOARD LIVE / NO-REFRESH UX
========================================================= */

.dashboard-main {
    position: relative;
}

.dashboard-live-progress {
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    z-index: 300;
    height: 3px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    background: transparent;
    transition: opacity 0.18s ease;
}

.dashboard-live-progress::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -36%;
    width: 36%;
    background: #171717;
}

.dashboard-live-progress.is-active {
    opacity: 1;
}

.dashboard-live-progress.is-active::before {
    animation: dashboard-live-progress 0.85s ease-in-out infinite;
}

.dashboard-live-progress.is-success,
.dashboard-live-progress.is-error {
    opacity: 1;
}

.dashboard-live-progress.is-success::before,
.dashboard-live-progress.is-error::before {
    left: 0;
    width: 100%;
    animation: none;
}

.dashboard-live-progress.is-error::before {
    background: #9b342d;
}

@keyframes dashboard-live-progress {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(380%);
    }
}

.dashboard-topbar__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.dashboard-live-state {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid #e1ddd6;
    border-radius: 999px;
    background: #faf9f6;
    color: #6f6b65;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.dashboard-live-state__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4f9a65;
    box-shadow: 0 0 0 3px rgba(79, 154, 101, 0.11);
}

.dashboard-live-state[data-state="loading"] {
    border-color: #d9d3ca;
    background: #f4f1eb;
    color: #44413d;
}

.dashboard-live-state[data-state="loading"] .dashboard-live-state__dot {
    background: #b58c48;
    box-shadow: 0 0 0 3px rgba(181, 140, 72, 0.13);
    animation: dashboard-live-pulse 0.9s ease-in-out infinite;
}

.dashboard-live-state[data-state="success"] {
    border-color: #cfe3d4;
    background: #f3faf5;
    color: #2f7043;
}

.dashboard-live-state[data-state="error"] {
    border-color: #e5c7c4;
    background: #fff5f4;
    color: #8a312b;
}

.dashboard-live-state[data-state="error"] .dashboard-live-state__dot {
    background: #a13c32;
    box-shadow: 0 0 0 3px rgba(161, 60, 50, 0.12);
}

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

    50% {
        transform: scale(0.72);
        opacity: 0.58;
    }
}

.dashboard-content {
    transition: opacity 0.14s ease, transform 0.14s ease;
}

.dashboard-content.is-live-replacing {
    opacity: 0.72;
    transform: translateY(2px);
}

.dashboard-form.is-live-saving,
.dashboard-menu-section.is-live-saving,
.dashboard-new-section.is-live-saving {
    position: relative;
}

.dashboard-form.is-live-saving::after,
.dashboard-menu-section.is-live-saving::after,
.dashboard-new-section.is-live-saving::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 25;
    cursor: wait;
    background: rgba(255, 255, 255, 0.035);
}

.is-live-submitting {
    position: relative;
    cursor: wait !important;
    opacity: 0.72;
}

.is-live-submitting::after {
    content: "";
    width: 13px;
    height: 13px;
    margin-left: 9px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: dashboard-live-spin 0.68s linear infinite;
}

@keyframes dashboard-live-spin {
    to {
        transform: rotate(360deg);
    }
}

.dashboard-live-highlight {
    animation: dashboard-live-highlight 1.45s ease;
}

@keyframes dashboard-live-highlight {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 139, 68, 0);
        border-color: inherit;
    }

    24% {
        box-shadow: 0 0 0 5px rgba(184, 139, 68, 0.16);
        border-color: #b88b44;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(184, 139, 68, 0);
        border-color: inherit;
    }
}

.dashboard-live-toasts {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 1000;
    width: min(390px, calc(100vw - 32px));
    display: grid;
    gap: 10px;
    pointer-events: none;
}

.dashboard-live-toast {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 14px 14px 14px 16px;
    border: 1px solid #ddd8d0;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.98);
    color: #1c1b19;
    box-shadow: 0 18px 55px rgba(23, 23, 23, 0.16);
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
    pointer-events: auto;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    backdrop-filter: blur(14px);
}

.dashboard-live-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dashboard-live-toast.is-leaving {
    opacity: 0;
    transform: translateY(-6px) scale(0.985);
}

.dashboard-live-toast__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4f9a65;
}

.dashboard-live-toast--warning .dashboard-live-toast__dot,
.dashboard-live-toast--info .dashboard-live-toast__dot {
    background: #b58c48;
}

.dashboard-live-toast--error .dashboard-live-toast__dot {
    background: #a13c32;
}

.dashboard-live-toast__text {
    font-size: 0.82rem;
    line-height: 1.45;
}

.dashboard-live-toast__close {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #77716a;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.dashboard-live-toast__close:hover {
    background: #f2efe9;
    color: #171717;
}

/* MENU BUILDER - LIVE FEEDBACK */

.dashboard-menu-builder__header > span {
    transition: transform 0.2s ease, background 0.2s ease;
}

.dashboard-menu-section {
    scroll-margin-top: 118px;
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.dashboard-new-section {
    scroll-margin-top: 118px;
}

.dashboard-menu-section .dashboard-secondary-button,
.dashboard-menu-section .dashboard-danger-button,
.dashboard-new-section .dashboard-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dashboard-menu-section input,
.dashboard-menu-section textarea,
.dashboard-menu-section select,
.dashboard-new-section input,
.dashboard-new-section textarea {
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.dashboard-menu-section input:focus,
.dashboard-menu-section textarea:focus,
.dashboard-menu-section select:focus,
.dashboard-new-section input:focus,
.dashboard-new-section textarea:focus {
    border-color: #8f897f;
    box-shadow: 0 0 0 3px rgba(143, 137, 127, 0.09);
}

@media (max-width: 900px) {
    .dashboard-live-progress {
        left: 0;
    }

    .dashboard-topbar__right {
        gap: 10px;
    }

    .dashboard-live-state {
        min-height: 30px;
        padding: 0 9px;
        font-size: 0.66rem;
    }
}

@media (max-width: 600px) {
    .dashboard-live-state {
        padding: 0 8px;
    }

    .dashboard-user {
        display: none;
    }

    .dashboard-live-toasts {
        top: auto;
        right: 16px;
        bottom: 16px;
        left: 16px;
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dashboard-live-progress::before,
    .dashboard-live-state__dot,
    .is-live-submitting::after,
    .dashboard-live-highlight {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }

    .dashboard-content,
    .dashboard-live-toast {
        transition: none;
    }
}
