/* =========================================================
   PINK CACTUS CHEF V6
   Aligné sur le dashboard Direction
========================================================= */

:root {
    --pcc-pink: #f41661;
    --pcc-pink-dark: #bb124b;
    --pcc-pink-deep: #82103a;
    --pcc-pink-light: #ff6f9f;
    --pcc-pink-soft: #fff5f9;

    --pcc-white: #ffffff;
    --pcc-bg: #fbfafc;

    --pcc-text: #21191c;
    --pcc-muted: #81767a;
    --pcc-border: #eee8eb;

    --pcc-green: #0aab51;
    --pcc-orange: #f7a51a;
    --pcc-red: #ec293d;
    --pcc-blue: #4387c8;

    --pcc-shadow:
        0 8px 30px rgba(68,24,42,.055);

    --pcc-shadow-hover:
        0 16px 40px rgba(86,19,46,.11);
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    margin: 0 !important;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--pcc-text);
    background:
        linear-gradient(
            180deg,
            #fdfcfd 0%,
            #faf8fa 100%
        );
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

svg {
    display: block;
}


/* =========================================================
   LAYOUT
========================================================= */

.pcchef-shell {
    width: 100%;
    min-height: 100vh;

    display: grid;

    grid-template-columns:
        250px
        minmax(650px, 1fr)
        315px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.pcchef-sidebar {
    height: 100vh;

    position: sticky;
    top: 0;
    z-index: 40;

    display: flex;
    flex-direction: column;

    overflow-y: auto;

    padding:
        24px
        15px
        18px;

    color: white;

    background:
        radial-gradient(
            circle at 30% 93%,
            rgba(255,99,147,.45),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f31a63 0%,
            #c21351 54%,
            #811038 100%
        );
}


.pcchef-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    padding:
        0
        13px
        23px;
}


.pcchef-brand-mark {
    width: 46px;
    height: 52px;

    display: grid;
    place-items: center;

    flex-shrink: 0;
}


.pcchef-brand-mark svg {
    width: 42px;
    height: 48px;

    fill: none;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-brand-title {
    font-size: 27px;
    line-height: .92;
    font-weight: 900;
    letter-spacing: .4px;
}


.pcchef-brand-subtitle {
    margin-top: 7px;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: .7px;

    opacity: .9;
}


/* ROLE */

.pcchef-role {
    display: grid;

    grid-template-columns:
        42px
        1fr
        8px;

    align-items: center;
    gap: 10px;

    margin-bottom: 18px;
    padding: 10px;

    border:
        1px solid
        rgba(255,255,255,.25);

    border-radius: 14px;

    background:
        rgba(255,255,255,.08);

    backdrop-filter:
        blur(12px);
}


.pcchef-role-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--pcc-pink);

    background: white;
}


.pcchef-role-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-role strong {
    display: block;
    font-size: 11px;
}


.pcchef-role small {
    display: block;

    margin-top: 3px;

    font-size: 8px;

    opacity: .75;
}


.pcchef-role-online {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #5aee8a;

    box-shadow:
        0 0 0 5px
        rgba(90,238,138,.12);
}


/* MENU */

.pcchef-menu {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


.pcchef-menu-item {
    width: 100%;
    min-height: 43px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding:
        9px
        14px;

    border: 0;
    border-radius: 12px;

    color:
        rgba(255,255,255,.95);

    background: transparent;

    text-align: left;

    font-size: 13px;
    font-weight: 500;

    transition:
        background .18s ease,
        transform .18s ease,
        color .18s ease;
}


.pcchef-menu-item:hover {
    transform: translateX(2px);

    background:
        rgba(255,255,255,.11);
}


.pcchef-menu-item.active {
    color: var(--pcc-pink);
    background: white;

    box-shadow:
        0 7px 20px
        rgba(59,0,24,.16);
}


.pcchef-menu-icon {
    width: 23px;
    flex-shrink: 0;
}


.pcchef-menu-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* PROPERTY */

.pcchef-property {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: auto;

    padding: 10px;

    border:
        1px solid
        rgba(255,255,255,.28);

    border-radius: 14px;

    background:
        rgba(255,255,255,.08);
}


.pcchef-property-logo {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: var(--pcc-pink);
    background: white;

    font-size: 10px;
    font-weight: 900;
}


.pcchef-property strong {
    display: block;
    font-size: 12px;
}


.pcchef-property small {
    display: block;

    margin-top: 3px;

    font-size: 9px;

    opacity: .8;
}


/* =========================================================
   MAIN
========================================================= */

.pcchef-main {
    min-width: 0;

    padding:
        25px
        28px
        28px;
}


/* =========================================================
   HEADER
========================================================= */

.pcchef-header {
    min-height: 62px;

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

    gap: 20px;

    margin-bottom: 22px;
}


.pcchef-header h1 {
    margin: 0;

    color: #99143f;

    font-size: 27px;
    font-weight: 820;
    letter-spacing: -.7px;
}


.pcchef-header p {
    margin:
        8px
        0
        0;

    color: #5c5356;

    font-size: 12px;
}


.pcchef-demo {
    display: inline-block;

    margin-left: 7px;
    padding:
        4px
        8px;

    border-radius: 8px;

    color: #765b00;
    background: #fff3b6;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: .5px;
}


.pcchef-header-tools {
    display: flex;
    align-items: center;
    gap: 12px;
}


.pcchef-date {
    height: 47px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding:
        0
        14px;

    border:
        1px solid
        var(--pcc-border);

    border-radius: 12px;

    background: white;

    box-shadow: var(--pcc-shadow);

    color: #493e42;

    font-size: 10px;
}


.pcchef-date-icon {
    color: var(--pcc-pink);
}


.pcchef-date-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-date i {
    width: 1px;
    height: 22px;

    background: #eee7e9;
}


.pcchef-bell {
    width: 46px;
    height: 46px;

    position: relative;

    display: grid;
    place-items: center;

    border:
        1px solid
        var(--pcc-border);

    border-radius: 50%;

    color: #795665;
    background: white;

    box-shadow: var(--pcc-shadow);
}


.pcchef-bell > svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-bell > span {
    width: 18px;
    height: 18px;

    position: absolute;
    top: -2px;
    right: -1px;

    display: grid;
    place-items: center;

    border:
        2px solid
        white;

    border-radius: 50%;

    color: white;
    background: var(--pcc-pink);

    font-size: 8px;
    font-weight: 800;
}


/* =========================================================
   CARD BASE
========================================================= */

.pcchef-card {
    border:
        1px solid
        var(--pcc-border);

    border-radius: 15px;

    background: white;

    box-shadow: var(--pcc-shadow);
}


/* =========================================================
   KPI
========================================================= */

.pcchef-kpis {
    display: grid;

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

    gap: 15px;

    margin-bottom: 16px;
}


.pcchef-kpi {
    min-height: 124px;

    padding:
        17px
        18px;

    transition:
        transform .18s ease,
        box-shadow .18s ease;
}


.pcchef-kpi:hover {
    transform: translateY(-3px);
    box-shadow: var(--pcc-shadow-hover);
}


.pcchef-kpi-top {
    display: flex;
    align-items: center;
    gap: 15px;
}


.pcchef-kpi-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            135deg,
            #ff518e,
            #ef0d58
        );

    box-shadow:
        0 8px 18px
        rgba(244,22,97,.20);
}


.pcchef-kpi-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-kpi-top span {
    display: block;

    color: #4b4245;

    font-size: 10px;
}


.pcchef-kpi-top strong {
    display: block;

    margin-top: 6px;

    font-size: 21px;
    line-height: 1;
}


.pcchef-kpi-note {
    margin-top: 11px;

    font-size: 9px;
    font-weight: 650;
}


.pcchef-kpi-note.success {
    color: var(--pcc-green);
}


.pcchef-kpi-note.warning {
    color: var(--pcc-orange);
}


.pcchef-kpi-note.danger {
    color: var(--pcc-red);
}


/* =========================================================
   QUICK ZONE
========================================================= */

.pcchef-quick-zone {
    margin-bottom: 16px;
    padding: 18px;
}


.pcchef-section-title,
.pcchef-section-main-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 18px;

    margin-bottom: 14px;
}


.pcchef-section-title > div > span,
.pcchef-section-main-head > div > span,
.pcchef-panel-head > div > span {
    display: block;

    margin-bottom: 4px;

    color: var(--pcc-pink);

    font-size: 7px;
    font-weight: 850;
    letter-spacing: 1.1px;
}


.pcchef-section-title h2,
.pcchef-section-main-head h2 {
    margin: 0;

    color: #54182f;

    font-size: 17px;
}


.pcchef-section-title small,
.pcchef-section-main-head p {
    color: var(--pcc-muted);

    font-size: 9px;
}


.pcchef-section-main-head p {
    margin:
        5px
        0
        0;
}


.pcchef-action-grid {
    display: grid;

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

    gap: 10px;
}


.pcchef-action-card {
    min-height: 88px;

    position: relative;

    display: grid;

    grid-template-columns:
        44px
        1fr
        27px;

    align-items: center;
    gap: 10px;

    overflow: hidden;

    padding: 13px;

    border:
        1px solid
        var(--pcc-border);

    border-radius: 13px;

    color: var(--pcc-text);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fffafd
        );

    text-align: left;

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


.pcchef-action-card:hover {
    transform: translateY(-4px);

    border-color: #f5c3d4;

    box-shadow:
        0 14px 32px
        rgba(91,19,48,.10);
}


.pcchef-action-icon {
    width: 43px;
    height: 43px;

    position: relative;
    z-index: 2;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #ff518e,
            #ef0d58
        );

    box-shadow:
        0 8px 17px
        rgba(244,22,97,.18);
}


.pcchef-action-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-action-copy {
    position: relative;
    z-index: 2;
}


.pcchef-action-copy strong {
    display: block;
    font-size: 10px;
}


.pcchef-action-copy span {
    display: block;

    margin-top: 4px;

    color: var(--pcc-muted);

    font-size: 7px;
    line-height: 1.4;
}


.pcchef-action-arrow {
    width: 25px;
    height: 25px;

    position: relative;
    z-index: 2;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--pcc-pink);
    background: #fff0f5;

    transition:
        transform .18s ease,
        color .18s ease,
        background .18s ease;
}


.pcchef-action-arrow svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-action-card:hover
.pcchef-action-arrow {
    transform: translateX(3px);

    color: white;
    background: var(--pcc-pink);
}


.pcchef-action-shine {
    width: 100px;
    height: 140%;

    position: absolute;
    top: -20%;
    left: -150px;

    transform: rotate(18deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(244,22,97,.055),
            transparent
        );

    transition:
        left .55s ease;
}


.pcchef-action-card:hover
.pcchef-action-shine {
    left: calc(100% + 50px);
}


/* =========================================================
   2 COLUMN GRIDS
========================================================= */

.pcchef-grid-two {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 16px;

    margin-bottom: 16px;
}


.pcchef-panel {
    padding: 17px;
}


.pcchef-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 10px;
}


.pcchef-panel-head h3 {
    margin: 0;

    color: var(--pcc-pink);

    font-size: 14px;
}


/* =========================================================
   BUTTONS
========================================================= */

.pcchef-soft-button,
.pcchef-outline-button,
.pcchef-main-button {
    min-height: 34px;

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

    gap: 7px;

    padding:
        0
        11px;

    border-radius: 9px;

    font-size: 8px;
    font-weight: 700;

    transition:
        transform .17s ease,
        box-shadow .17s ease,
        background .17s ease;
}


.pcchef-soft-button {
    border:
        1px solid
        #f1d8e1;

    color: var(--pcc-pink);

    background: #fff9fb;
}


.pcchef-soft-button:hover {
    transform: translateY(-1px);

    color: white;

    border-color: var(--pcc-pink);

    background: var(--pcc-pink);
}


.pcchef-outline-button {
    border:
        1px solid
        #efd8e1;

    color: var(--pcc-pink);

    background: white;
}


.pcchef-outline-button:hover {
    transform: translateY(-1px);

    background: #fff5f9;
}


.pcchef-main-button {
    border: 0;

    color: white;

    background:
        linear-gradient(
            135deg,
            #ff4383,
            var(--pcc-pink)
        );

    box-shadow:
        0 8px 18px
        rgba(244,22,97,.18);
}


.pcchef-main-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 24px
        rgba(244,22,97,.26);
}


.pcchef-soft-button svg,
.pcchef-outline-button svg,
.pcchef-main-button svg {
    width: 14px;
    height: 14px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   ORDERS
========================================================= */

.pcchef-order-row {
    min-height: 54px;

    display: grid;

    grid-template-columns:
        34px
        1fr
        auto
        68px;

    align-items: center;

    gap: 9px;

    border-bottom:
        1px solid
        #f2edef;
}


.pcchef-row-symbol {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    color: var(--pcc-pink);
    background: #fff1f5;
}


.pcchef-row-symbol svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-row-copy strong {
    display: block;
    font-size: 9px;
}


.pcchef-row-copy span {
    display: block;

    margin-top: 3px;

    color: var(--pcc-muted);

    font-size: 7px;
}


.pcchef-order-qty {
    font-size: 8px;
    white-space: nowrap;
}


.pcchef-status {
    min-height: 22px;

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

    padding:
        0
        7px;

    border-radius: 20px;

    font-size: 6px;
    font-weight: 700;
}


.pcchef-status.success {
    color: #18834c;
    background: #e8f8ef;
}


.pcchef-status.warning {
    color: #a87116;
    background: #fff5e5;
}


.pcchef-status.danger {
    color: #bd3b49;
    background: #fff0f2;
}


.pcchef-status.neutral {
    color: #817278;
    background: #f2eff0;
}


/* SHEET */

.pcchef-sheet-card {
    display: grid;

    grid-template-columns:
        38px
        1fr
        auto;

    align-items: center;

    gap: 9px;

    margin-top: 12px;
    padding: 10px;

    border:
        1px solid
        #d8ede1;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #f5fff9,
            #ffffff
        );
}


.pcchef-sheet-logo {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    color: white;
    background:
        linear-gradient(
            135deg,
            #34b868,
            #16884b
        );
}


.pcchef-sheet-logo svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-sheet-card strong {
    display: block;

    color: #22623e;

    font-size: 8px;
}


.pcchef-sheet-card span {
    display: block;

    margin-top: 3px;

    color: #698477;

    font-size: 6px;
}


.pcchef-sheet-card button {
    padding:
        6px
        8px;

    border:
        1px solid
        #bce0ca;

    border-radius: 7px;

    color: #278653;
    background: white;

    font-size: 6px;
    font-weight: 700;
}


/* =========================================================
   SALES
========================================================= */

.pcchef-sale-row {
    min-height: 52px;

    display: grid;

    grid-template-columns:
        38px
        1fr
        auto;

    align-items: center;

    gap: 9px;

    border-bottom:
        1px solid
        #f2edef;
}


.pcchef-food-code {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    color: var(--pcc-pink);
    background:
        linear-gradient(
            145deg,
            #fff0f5,
            #ffe4ed
        );

    font-size: 7px;
    font-weight: 900;
    letter-spacing: .4px;
}


.pcchef-sale-row strong {
    display: block;
    font-size: 9px;
}


.pcchef-sale-row span {
    display: block;

    margin-top: 3px;

    color: var(--pcc-muted);

    font-size: 7px;
}


.pcchef-sale-number {
    color: var(--pcc-pink);
    font-size: 14px !important;
}


.pcchef-info {
    display: flex;
    gap: 8px;

    margin-top: 11px;
    padding: 9px;

    border-radius: 9px;

    color: #42667e;
    background: #f2f8fc;
}


.pcchef-info > div {
    width: 19px;
    height: 19px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;
    background: var(--pcc-blue);

    font-size: 7px;
    font-weight: 800;
}


.pcchef-info p {
    margin: 0;

    font-size: 6px;
    line-height: 1.5;
}


/* =========================================================
   LOSSES
========================================================= */

.pcchef-loss-row {
    min-height: 52px;

    display: grid;

    grid-template-columns:
        31px
        1fr
        auto;

    align-items: center;

    gap: 9px;

    border-bottom:
        1px solid
        #f2edef;
}


.pcchef-loss-symbol {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 8px;

    color: white;
    background: var(--pcc-red);

    font-size: 8px;
    font-weight: 900;
}


.pcchef-loss-row strong {
    display: block;
    font-size: 8px;
}


.pcchef-loss-row span {
    display: block;

    margin-top: 3px;

    color: var(--pcc-muted);

    font-size: 6px;
}


.pcchef-loss-row > strong:last-child {
    color: var(--pcc-red);
}


.pcchef-reason-list {
    display: flex;
    flex-wrap: wrap;

    gap: 5px;

    margin-top: 11px;
}


.pcchef-reason-list span {
    padding:
        5px
        7px;

    border-radius: 20px;

    color: #915f70;
    background: #fff0f5;

    font-size: 6px;
}


/* =========================================================
   STOCK
========================================================= */

.pcchef-stock-grid {
    display: grid;

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

    gap: 8px;
}


.pcchef-stock-grid > div {
    padding: 11px;

    border:
        1px solid
        var(--pcc-border);

    border-radius: 10px;

    background: #fdfcfd;
}


.pcchef-stock-grid span {
    display: block;

    color: var(--pcc-muted);

    font-size: 7px;
}


.pcchef-stock-grid strong {
    display: block;

    margin-top: 6px;

    font-size: 11px;
}


.pcchef-stock-grid strong.danger {
    color: var(--pcc-red);
}


.pcchef-stock-progress {
    margin-top: 12px;
}


.pcchef-progress-head {
    display: flex;
    justify-content: space-between;

    margin-bottom: 7px;

    font-size: 7px;
}


.pcchef-progress {
    height: 7px;

    overflow: hidden;

    border-radius: 20px;

    background: #f4e9ed;
}


.pcchef-progress span {
    height: 100%;

    display: block;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #ff69a0,
            var(--pcc-pink)
        );

    animation:
        pcchefProgress 1.2s ease both;
}


@keyframes pcchefProgress {
    from {
        width: 0;
    }
}


/* =========================================================
   RECIPES
========================================================= */

.pcchef-recipes-section {
    margin-bottom: 16px;
    padding: 18px;
}


.pcchef-heading-actions {
    display: flex;
    gap: 8px;
}


.pcchef-recipe-grid {
    display: grid;

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

    gap: 12px;
}


.pcchef-recipe-card {
    overflow: hidden;

    border:
        1px solid
        var(--pcc-border);

    border-radius: 14px;

    background: white;

    transition:
        transform .20s ease,
        box-shadow .20s ease;
}


.pcchef-recipe-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 32px
        rgba(86,19,46,.10);
}


.pcchef-recipe-visual {
    height: 118px;

    position: relative;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            white,
            #ffe7ef
        );
}


.pcchef-recipe-visual::before,
.pcchef-recipe-visual::after {
    content: "";

    position: absolute;

    border:
        1px solid
        rgba(244,22,97,.10);

    border-radius: 50%;
}


.pcchef-recipe-visual::before {
    width: 110px;
    height: 110px;
}


.pcchef-recipe-visual::after {
    width: 78px;
    height: 78px;
}


.pcchef-recipe-code {
    position: relative;
    z-index: 2;

    color: var(--pcc-pink);

    font-size: 23px;
    font-weight: 900;
    letter-spacing: 1px;
}


.pcchef-recipe-lines {
    position: absolute;
    right: 15px;
    bottom: 12px;

    display: flex;
    gap: 3px;
}


.pcchef-recipe-lines span {
    width: 4px;

    border-radius: 5px;

    background: rgba(244,22,97,.25);
}


.pcchef-recipe-lines span:nth-child(1) {
    height: 14px;
}


.pcchef-recipe-lines span:nth-child(2) {
    height: 22px;
}


.pcchef-recipe-lines span:nth-child(3) {
    height: 17px;
}


.pcchef-recipe-body {
    padding: 12px;
}


.pcchef-recipe-category {
    color: var(--pcc-pink);

    font-size: 6px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
}


.pcchef-recipe-body h3 {
    margin:
        5px
        0
        11px;

    font-size: 10px;
}


.pcchef-recipe-data {
    display: grid;

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

    gap: 5px;
}


.pcchef-recipe-data span {
    display: block;

    color: var(--pcc-muted);

    font-size: 6px;
}


.pcchef-recipe-data strong {
    display: block;

    margin-top: 3px;

    font-size: 8px;
}


.pcchef-recipe-data strong.pink {
    color: var(--pcc-pink);
}


.pcchef-recipe-buttons {
    display: flex;
    gap: 5px;

    margin-top: 11px;
}


.pcchef-recipe-buttons button {
    flex: 1;

    min-height: 29px;

    border:
        1px solid
        #efd8e1;

    border-radius: 7px;

    color: var(--pcc-pink);
    background: #fffafd;

    font-size: 6px;

    transition:
        color .16s ease,
        background .16s ease;
}


.pcchef-recipe-buttons button:hover {
    color: white;
    background: var(--pcc-pink);
}


.pcchef-recipe-export {
    display: grid;

    grid-template-columns:
        43px
        1fr
        auto;

    align-items: center;

    gap: 10px;

    margin-top: 12px;
    padding: 12px;

    border:
        1px solid
        var(--pcc-border);

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #fff7fa,
            white
        );
}


.pcchef-export-icon {
    width: 41px;
    height: 41px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: var(--pcc-pink);
    background: #fff0f5;
}


.pcchef-export-icon svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-recipe-export strong {
    display: block;
    font-size: 8px;
}


.pcchef-recipe-export span {
    display: block;

    margin-top: 3px;

    color: var(--pcc-muted);

    font-size: 6px;
}


/* =========================================================
   TEAM
========================================================= */

.pcchef-team-row {
    min-height: 58px;

    display: grid;

    grid-template-columns:
        37px
        1fr
        100px
        65px;

    align-items: center;

    gap: 9px;

    border-bottom:
        1px solid
        #f2edef;
}


.pcchef-team-avatar {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            135deg,
            #ff518e,
            var(--pcc-pink)
        );

    font-size: 9px;
    font-weight: 900;
}


.pcchef-team-row > div:nth-child(2) strong {
    display: block;
    font-size: 8px;
}


.pcchef-team-row > div:nth-child(2) span {
    display: block;

    margin-top: 3px;

    color: var(--pcc-pink);

    font-size: 6px;
}


.pcchef-team-time small {
    display: block;

    color: var(--pcc-muted);

    font-size: 6px;
}


.pcchef-team-time strong {
    display: block;

    margin-top: 3px;

    font-size: 7px;
}


/* =========================================================
   WEEK
========================================================= */

.pcchef-week {
    display: grid;

    grid-template-columns:
        repeat(7,1fr);

    gap: 5px;
}


.pcchef-week > div {
    min-height: 90px;

    position: relative;

    overflow: hidden;

    padding: 9px;

    border:
        1px solid
        var(--pcc-border);

    border-radius: 9px;

    background: #fdfcfd;
}


.pcchef-week > div::after {
    content: "";

    width: 30px;
    height: 30px;

    position: absolute;
    right: -15px;
    bottom: -15px;

    border-radius: 50%;

    background:
        rgba(244,22,97,.06);
}


.pcchef-week strong {
    display: block;

    color: var(--pcc-pink);

    font-size: 8px;
}


.pcchef-week span {
    display: block;

    margin-top: 13px;

    font-size: 6px;
}


.pcchef-week small {
    display: block;

    margin-top: 4px;

    color: var(--pcc-muted);

    font-size: 5px;
}


.pcchef-week > div.busy {
    border-color: #f5c8d8;
    background: #fff4f8;
}


/* =========================================================
   MESSAGES
========================================================= */

.pcchef-messages {
    margin-bottom: 8px;
    padding: 18px;
}


.pcchef-contact-grid {
    display: grid;

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

    gap: 9px;
}


.pcchef-contact-card {
    min-height: 67px;

    display: grid;

    grid-template-columns:
        39px
        1fr
        22px;

    align-items: center;
    gap: 9px;

    padding: 10px;

    border:
        1px solid
        var(--pcc-border);

    border-radius: 11px;

    color: var(--pcc-text);
    background: white;

    text-align: left;

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


.pcchef-contact-card:hover,
.pcchef-contact-card.active {
    transform: translateY(-2px);

    border-color: #f3b8cd;

    box-shadow:
        0 10px 24px
        rgba(86,19,46,.07);
}


.pcchef-contact-icon {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--pcc-pink);
    background: #fff0f5;
}


.pcchef-contact-icon svg,
.pcchef-contact-card > svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-contact-card > svg {
    width: 13px;
    color: var(--pcc-pink);
}


.pcchef-contact-card strong {
    display: block;
    font-size: 8px;
}


.pcchef-contact-card span {
    display: block;

    margin-top: 3px;

    color: var(--pcc-muted);

    font-size: 6px;
}


.pcchef-compose {
    margin-top: 11px;
    padding: 12px;

    border:
        1px solid
        var(--pcc-border);

    border-radius: 11px;

    background: #fdfcfd;
}


.pcchef-compose-top {
    margin-bottom: 7px;

    color: var(--pcc-muted);

    font-size: 7px;
}


.pcchef-compose-top strong {
    color: var(--pcc-pink);
}


.pcchef-compose textarea {
    width: 100%;

    padding: 11px;

    border:
        1px solid
        var(--pcc-border);

    border-radius: 9px;

    outline: 0;

    resize: vertical;

    background: white;

    font-size: 8px;
}


.pcchef-compose textarea:focus {
    border-color: #f2a8c0;

    box-shadow:
        0 0 0 3px
        rgba(244,22,97,.06);
}


.pcchef-compose-actions {
    display: flex;
    justify-content: flex-end;

    gap: 7px;

    margin-top: 8px;
}


/* =========================================================
   RIGHT SERVICE PANEL
========================================================= */

.pcchef-service {
    height: 100vh;

    position: sticky;
    top: 0;

    overflow-y: auto;

    padding:
        24px
        14px
        18px;

    border-left:
        1px solid
        var(--pcc-border);

    background:
        linear-gradient(
            180deg,
            #fffafd,
            #fff7fb
        );
}


.pcchef-service-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 14px;
}


.pcchef-service-head > div:first-child > span {
    display: block;

    color: var(--pcc-pink);

    font-size: 6px;
    font-weight: 850;
    letter-spacing: 1.1px;
}


.pcchef-service-head h2 {
    margin:
        3px
        0
        0;

    color: #5b1933;

    font-size: 18px;
}


.pcchef-live {
    display: flex;
    align-items: center;
    gap: 5px;

    padding:
        5px
        7px;

    border-radius: 20px;

    color: #22804d;
    background: #e7f8ee;

    font-size: 6px;
    font-weight: 700;
}


.pcchef-live i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--pcc-green);
}


/* SERVICE HERO */

.pcchef-service-hero {
    position: relative;

    overflow: hidden;

    padding:
        20px
        17px;

    border-radius: 16px;

    color: white;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255,255,255,.18),
            transparent 33%
        ),
        linear-gradient(
            135deg,
            #f51a65,
            #b70f49
        );

    box-shadow:
        0 12px 28px
        rgba(158,17,66,.15);
}


.pcchef-service-hero::after {
    content: "";

    width: 110px;
    height: 110px;

    position: absolute;
    right: -50px;
    bottom: -60px;

    border:
        18px solid
        rgba(255,255,255,.08);

    border-radius: 50%;
}


.pcchef-service-hero > span {
    display: block;

    font-size: 6px;
    font-weight: 850;
    letter-spacing: 1.1px;

    opacity: .8;
}


.pcchef-service-hero > strong {
    display: block;

    margin-top: 8px;

    font-size: 19px;
}


.pcchef-service-hero p {
    margin:
        8px
        0
        15px;

    max-width: 190px;

    font-size: 8px;
    line-height: 1.5;

    opacity: .88;
}


.pcchef-service-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding:
        6px
        9px;

    border:
        1px solid
        rgba(255,255,255,.25);

    border-radius: 20px;

    background:
        rgba(255,255,255,.10);

    font-size: 7px;
    font-weight: 700;
}


.pcchef-service-time svg {
    width: 13px;
    height: 13px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* RIGHT BLOCK */

.pcchef-right-block {
    margin-top: 10px;
    padding: 13px;

    border:
        1px solid
        var(--pcc-border);

    border-radius: 13px;

    background: white;

    box-shadow:
        0 6px 18px
        rgba(55,16,31,.03);
}


.pcchef-right-title {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 9px;
}


.pcchef-right-title span {
    color: var(--pcc-pink);

    font-size: 6px;
    font-weight: 850;
    letter-spacing: 1px;
}


.pcchef-right-title strong {
    color: var(--pcc-muted);

    font-size: 6px;
}


.pcchef-task {
    display: grid;

    grid-template-columns:
        8px
        1fr;

    gap: 8px;

    padding:
        8px
        0;

    border-bottom:
        1px solid
        #f2edef;
}


.pcchef-task:last-child {
    border-bottom: 0;
}


.pcchef-task > i {
    width: 7px;
    height: 7px;

    margin-top: 4px;

    border-radius: 50%;
}


.pcchef-task.danger > i {
    background: var(--pcc-red);
}


.pcchef-task.warning > i {
    background: var(--pcc-orange);
}


.pcchef-task.success > i {
    background: var(--pcc-green);
}


.pcchef-task strong {
    display: block;

    font-size: 8px;
}


.pcchef-task span {
    display: block;

    margin-top: 3px;

    color: var(--pcc-muted);

    font-size: 6px;
}


/* COUNTDOWN */

.pcchef-service-countdown {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding:
        8px
        0;
}


.pcchef-service-countdown > div {
    text-align: center;
}


.pcchef-service-countdown strong {
    display: block;

    color: var(--pcc-pink);

    font-size: 23px;
}


.pcchef-service-countdown span {
    display: block;

    margin-top: 2px;

    color: var(--pcc-muted);

    font-size: 6px;
}


.pcchef-service-countdown > i {
    color: #d5a0b3;

    font-size: 20px;
    font-style: normal;
}


/* MANAGER MESSAGE */

.pcchef-manager-message {
    display: grid;

    grid-template-columns:
        34px
        1fr;

    gap: 9px;
}


.pcchef-manager-avatar {
    width: 33px;
    height: 33px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            135deg,
            #ff518e,
            var(--pcc-pink)
        );

    font-size: 8px;
    font-weight: 850;
}


.pcchef-manager-message strong {
    display: block;
    font-size: 8px;
}


.pcchef-manager-message p {
    margin:
        4px
        0;

    color: #5e5357;

    font-size: 7px;
    line-height: 1.45;
}


.pcchef-manager-message span {
    color: var(--pcc-muted);
    font-size: 6px;
}


.pcchef-right-message-button {
    width: 100%;
    min-height: 33px;

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

    gap: 7px;

    margin-top: 10px;

    border:
        1px solid
        #efd8e1;

    border-radius: 9px;

    color: var(--pcc-pink);
    background: #fffafd;

    font-size: 7px;
    font-weight: 700;
}


.pcchef-right-message-button svg {
    width: 12px;
    height: 12px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-right-summary {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 7px;

    margin-top: 10px;
}


.pcchef-right-summary > div {
    padding: 10px;

    border:
        1px solid
        var(--pcc-border);

    border-radius: 10px;

    background: white;
}


.pcchef-right-summary span {
    display: block;

    color: var(--pcc-muted);

    font-size: 6px;
}


.pcchef-right-summary strong {
    display: block;

    margin-top: 4px;

    color: var(--pcc-pink);

    font-size: 11px;
}


/* =========================================================
   FOOTER
========================================================= */

.pcchef-footer {
    padding:
        8px
        0;

    text-align: center;

    color: var(--pcc-muted);

    font-size: 7px;
}


/* =========================================================
   DRAWERS
========================================================= */

.pcchef-drawer-overlay {
    position: fixed;

    inset: 0;

    z-index: 99997;

    visibility: hidden;

    background:
        rgba(31,10,18,.42);

    backdrop-filter:
        blur(5px);

    opacity: 0;

    transition:
        opacity .28s ease,
        visibility .28s ease;
}


.pcchef-drawer-overlay.open {
    visibility: visible;
    opacity: 1;
}


.pcchef-drawer {
    width:
        min(
            465px,
            92vw
        );

    height: 100vh;

    position: fixed;
    top: 0;
    right: 0;

    z-index: 99998;

    display: flex;
    flex-direction: column;

    border-left:
        1px solid
        var(--pcc-border);

    background: white;

    box-shadow:
        -25px 0 70px
        rgba(44,8,23,.18);

    transform:
        translateX(102%);

    transition:
        transform
        .38s
        cubic-bezier(.22,.61,.36,1);
}


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


.pcchef-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding:
        21px
        20px;

    border-bottom:
        1px solid
        var(--pcc-border);

    background:
        linear-gradient(
            135deg,
            #fff9fb,
            white
        );
}


.pcchef-drawer-header span {
    display: block;

    color: var(--pcc-pink);

    font-size: 7px;
    font-weight: 850;
    letter-spacing: 1px;
}


.pcchef-drawer-header h2 {
    margin:
        4px
        0
        0;

    color: #55182f;

    font-size: 20px;
}


.pcchef-drawer-close {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 50%;

    color: #765e68;
    background: #f8f3f5;

    font-size: 22px;
    line-height: 1;
}


.pcchef-drawer-body {
    flex: 1;

    overflow-y: auto;

    padding:
        20px;
}


.pcchef-drawer-intro {
    display: grid;

    grid-template-columns:
        42px
        1fr;

    align-items: center;
    gap: 10px;

    margin-bottom: 17px;
    padding: 11px;

    border:
        1px solid
        #d6e9f6;

    border-radius: 11px;

    color: #46657b;
    background: #f3f9fd;
}


.pcchef-drawer-intro.danger {
    color: #89525e;

    border-color: #f4d4dc;

    background: #fff5f7;
}


.pcchef-drawer-intro > div {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: white;
    background: var(--pcc-pink);
}


.pcchef-drawer-intro svg {
    width: 19px;
    height: 19px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-drawer-intro p {
    margin: 0;

    font-size: 8px;
    line-height: 1.55;
}


.pcchef-drawer-body label {
    display: block;

    margin:
        12px
        0
        5px;

    color: #725f67;

    font-size: 8px;
    font-weight: 650;
}


.pcchef-drawer-body input,
.pcchef-drawer-body select,
.pcchef-drawer-body textarea {
    width: 100%;

    min-height: 43px;

    padding:
        10px
        11px;

    border:
        1px solid
        var(--pcc-border);

    border-radius: 10px;

    outline: 0;

    background: #fdfcfd;

    color: var(--pcc-text);

    font-size: 9px;

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


.pcchef-drawer-body textarea {
    min-height: auto;
    resize: vertical;
}


.pcchef-drawer-body input:focus,
.pcchef-drawer-body select:focus,
.pcchef-drawer-body textarea:focus {
    border-color: #f2a9c0;

    box-shadow:
        0 0 0 3px
        rgba(244,22,97,.06);
}


.pcchef-form-two {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 9px;
}


.pcchef-drawer-footer {
    display: flex;
    justify-content: flex-end;

    gap: 8px;

    padding:
        14px
        20px
        18px;

    border-top:
        1px solid
        var(--pcc-border);

    background: white;
}


.pcchef-other-reason {
    display: none;
}


.pcchef-other-reason.show {
    display: block;
}


/* SALES DRAWER */

.pcchef-sale-input-row {
    min-height: 62px;

    display: grid;

    grid-template-columns:
        38px
        1fr
        112px;

    align-items: center;

    gap: 9px;

    border-bottom:
        1px solid
        #f2edef;
}


.pcchef-sale-input-row strong {
    display: block;
    font-size: 8px;
}


.pcchef-sale-input-row span {
    display: block;

    margin-top: 3px;

    color: var(--pcc-muted);

    font-size: 6px;
}


.pcchef-number {
    display: grid;

    grid-template-columns:
        30px
        45px
        30px;

    gap: 3px;

    align-items: center;
}


.pcchef-number button {
    width: 30px;
    height: 30px;

    border:
        1px solid
        #efd8e1;

    border-radius: 8px;

    color: var(--pcc-pink);
    background: white;

    font-size: 14px;
}


.pcchef-number input {
    min-height: 30px !important;

    padding: 0 !important;

    text-align: center;
}


/* =========================================================
   TOAST
========================================================= */

.pcchef-toast {
    min-width: 260px;

    position: fixed;
    right: 24px;
    bottom: 24px;

    z-index: 999999;

    display: flex;
    align-items: center;

    gap: 10px;

    padding:
        12px
        14px;

    border:
        1px solid
        #d8eee2;

    border-radius: 14px;

    background:
        rgba(255,255,255,.97);

    box-shadow:
        0 18px 45px
        rgba(40,10,22,.16);

    backdrop-filter:
        blur(10px);

    opacity: 0;

    pointer-events: none;

    transform:
        translateY(15px);

    transition:
        opacity .25s ease,
        transform .25s ease;
}


.pcchef-toast.show {
    opacity: 1;

    transform:
        translateY(0);
}


.pcchef-toast-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: white;

    background:
        linear-gradient(
            135deg,
            #32c66b,
            #15904b
        );
}


.pcchef-toast-icon svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.pcchef-toast strong {
    display: block;

    font-size: 8px;
}


.pcchef-toast span {
    display: block;

    margin-top: 3px;

    color: var(--pcc-muted);

    font-size: 6px;
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.pcchef-mobile-nav {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */

@media
(max-width: 1450px) {

    .pcchef-shell {
        grid-template-columns:
            220px
            minmax(620px,1fr)
            285px;
    }

    .pcchef-main {
        padding:
            22px
            22px
            24px;
    }

}


@media
(max-width: 1200px) {

    .pcchef-shell {
        grid-template-columns:
            205px
            1fr;
    }

    .pcchef-service {
        display: none;
    }

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

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

}


/* =========================================================
   MOBILE
========================================================= */

@media
(max-width: 760px) {

    body {
        padding-bottom: 82px;
    }

    .pcchef-shell {
        display: block;
    }

    .pcchef-sidebar {
        height: auto;
        min-height: auto;

        position: relative;

        padding:
            15px;
    }

    .pcchef-brand {
        padding:
            0
            5px
            10px;
    }

    .pcchef-brand-mark {
        width: 37px;
        height: 40px;
    }

    .pcchef-brand-mark svg {
        width: 31px;
        height: 37px;
    }

    .pcchef-brand-title {
        font-size: 21px;
    }

    .pcchef-brand-subtitle {
        font-size: 6px;
    }

    .pcchef-role {
        margin-bottom: 0;
    }

    .pcchef-menu,
    .pcchef-property {
        display: none;
    }

    .pcchef-main {
        padding:
            15px;
    }

    .pcchef-header {
        margin-bottom: 14px;
    }

    .pcchef-header h1 {
        font-size: 22px;
    }

    .pcchef-header-tools {
        display: none;
    }

    .pcchef-header p {
        font-size: 10px;
        line-height: 1.5;
    }

    .pcchef-demo {
        margin-left: 0;
        margin-top: 5px;
    }

    .pcchef-kpis,
    .pcchef-action-grid,
    .pcchef-grid-two,
    .pcchef-recipe-grid,
    .pcchef-contact-grid {
        grid-template-columns: 1fr;
    }

    .pcchef-kpi {
        min-height: 104px;
    }

    .pcchef-section-title,
    .pcchef-section-main-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .pcchef-heading-actions {
        width: 100%;
    }

    .pcchef-heading-actions button {
        flex: 1;
    }

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

    .pcchef-recipe-export {
        grid-template-columns:
            42px
            1fr;
    }

    .pcchef-recipe-export > button {
        grid-column:
            1 / -1;

        width: 100%;
    }

    .pcchef-team-row {
        grid-template-columns:
            37px
            1fr
            auto;

        padding:
            7px
            0;
    }

    .pcchef-team-time {
        display: none;
    }

    /*
     * Colonne service convertie en contenu mobile,
     * pas de grande photo Omar.
     */

    .pcchef-service {
        height: auto;

        position: relative;

        display: block;

        padding:
            0
            15px
            15px;

        border-left: 0;

        background: transparent;
    }

    .pcchef-service-head {
        margin-top: 3px;
    }

    .pcchef-service-hero {
        min-height: 145px;
    }

    .pcchef-right-summary {
        margin-bottom: 7px;
    }

    /*
     * NAVIGATION MOBILE PREMIUM
     */

    .pcchef-mobile-nav {
        height: 66px;

        position: fixed;
        right: 10px;
        bottom: 9px;
        left: 10px;

        z-index: 9990;

        display: grid;

        grid-template-columns:
            1fr
            1fr
            62px
            1fr
            1fr;

        align-items: center;

        padding:
            5px
            7px;

        border:
            1px solid
            rgba(255,255,255,.75);

        border-radius: 20px;

        background:
            rgba(255,255,255,.94);

        box-shadow:
            0 18px 45px
            rgba(45,12,25,.20);

        backdrop-filter:
            blur(18px);
    }

    .pcchef-mobile-nav > button {
        min-width: 0;
        height: 50px;

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

        gap: 3px;

        border: 0;

        color: #8c7b82;
        background: transparent;

        font-size: 6px;
    }

    .pcchef-mobile-nav > button svg {
        width: 19px;
        height: 19px;

        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .pcchef-mobile-nav > button.active {
        color: var(--pcc-pink);
    }

    .pcchef-mobile-nav
    .pcchef-mobile-plus {
        width: 55px;
        height: 55px;

        position: relative;
        top: -13px;

        justify-self: center;

        display: grid;
        place-items: center;

        border-radius: 50%;

        color: white;

        background:
            linear-gradient(
                135deg,
                #ff4b89,
                var(--pcc-pink)
            );

        box-shadow:
            0 10px 25px
            rgba(244,22,97,.31);
    }

    .pcchef-mobile-nav
    .pcchef-mobile-plus svg {
        width: 25px;
        height: 25px;
    }

    .pcchef-drawer {
        width: 100%;
    }

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

    .pcchef-toast {
        right: 14px;
        bottom: 90px;
        left: 14px;

        min-width: 0;
    }

}


@media
(max-width: 460px) {

    .pcchef-action-card {
        min-height: 80px;
    }

    .pcchef-section-title small {
        display: none;
    }

    .pcchef-compose-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .pcchef-compose-actions button {
        width: 100%;
    }

    .pcchef-heading-actions {
        flex-direction: column;
    }

    .pcchef-week {
        grid-template-columns:
            1fr
            1fr;
    }

}