.ip-gastro-floating-order {
    align-items: center;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 38, 32, 0.18);
    border-radius: 999px;
    bottom: 22px;
    box-shadow: 0 16px 44px rgba(18, 29, 24, 0.18);
    color: #142018;
    display: inline-flex;
    font-weight: 900;
    gap: 8px;
    min-height: 54px;
    padding: 0 22px;
    position: fixed;
    right: 22px;
    text-decoration: none;
    z-index: 1080;
}

.ip-gastro-customer-body {
    background: #f5f6f2;
    color: #152019;
    font-family: Inter, Arial, sans-serif;
    margin: 0;
}

#ip-gastro-customer-order {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) 360px;
    margin: 0 auto;
    max-width: 1240px;
    min-height: 100vh;
    padding: 16px;
}

.ip-gastro-hero {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(24, 38, 32, 0.12);
    border-radius: 8px;
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    padding: 18px;
}

.ip-gastro-eyebrow {
    color: #627168;
    display: block;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.ip-gastro-hero h1,
.ip-gastro-status-card h1 {
    font-size: 34px;
    letter-spacing: 0;
    line-height: 1.05;
    margin: 4px 0 0;
}

.ip-gastro-mode {
    background: #eaf3ef;
    border-radius: 999px;
    color: #1c6744;
    font-weight: 900;
    padding: 9px 14px;
}

.ip-gastro-customer-panel,
.ip-gastro-cart,
.ip-gastro-status-card {
    background: #ffffff;
    border: 1px solid rgba(24, 38, 32, 0.12);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(17, 27, 22, 0.08);
    padding: 14px;
}

.ip-gastro-customer-panel {
    align-content: start;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ip-gastro-customer-panel label,
.ip-gastro-note {
    display: grid;
    gap: 5px;
}

.ip-gastro-customer-panel span,
.ip-gastro-note span {
    color: #607067;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.ip-gastro-customer-panel input,
.ip-gastro-customer-panel textarea,
.ip-gastro-note textarea {
    border: 1px solid #d8e0da;
    border-radius: 8px;
    font: inherit;
    min-height: 42px;
    padding: 10px 12px;
    width: 100%;
}

.ip-gastro-catalog {
    align-content: start;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.ip-gastro-product {
    background: #ffffff;
    border: 1px solid rgba(24, 38, 32, 0.12);
    border-radius: 8px;
    overflow: hidden;
}

.ip-gastro-product img {
    aspect-ratio: 1.18;
    background: #edf0ec;
    display: block;
    object-fit: cover;
    width: 100%;
}

.ip-gastro-product-body {
    display: grid;
    gap: 8px;
    padding: 12px;
}

.ip-gastro-product-name {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.15;
    min-height: 40px;
}

.ip-gastro-product-price {
    color: #1f6b48;
    font-size: 18px;
    font-weight: 950;
}

.ip-gastro-product button,
.ip-gastro-submit {
    background: #1d6f4b;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    min-height: 44px;
    padding: 11px 13px;
}

.ip-gastro-cart {
    align-self: start;
    display: grid;
    gap: 12px;
    position: sticky;
    top: 12px;
}

.ip-gastro-cart-head {
    align-items: center;
    display: flex;
    font-size: 20px;
    justify-content: space-between;
}

.ip-gastro-cart-lines {
    display: grid;
    gap: 8px;
}

.ip-gastro-cart-line {
    align-items: center;
    background: #f7f9f6;
    border-radius: 8px;
    display: grid;
    gap: 6px;
    grid-template-columns: 1fr auto;
    padding: 10px;
}

.ip-gastro-cart-line strong {
    font-size: 15px;
}

.ip-gastro-cart-line small {
    color: #607067;
    display: block;
}

.ip-gastro-cart-line button {
    background: #e6eee9;
    border: 0;
    border-radius: 8px;
    color: #173222;
    font-weight: 900;
    height: 34px;
    min-width: 34px;
}

.ip-gastro-pay-choice {
    display: grid;
    gap: 8px;
}

.ip-gastro-status-card {
    margin: 28px auto;
    max-width: 640px;
}

.ip-gastro-status-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
}

.ip-gastro-status-grid div {
    background: #f7f9f6;
    border-radius: 8px;
    display: grid;
    gap: 8px;
    padding: 13px;
}

.ip-gastro-status-grid strong {
    color: #607067;
    font-size: 12px;
    text-transform: uppercase;
}

.ip-gastro-status-grid span {
    font-size: 18px;
    font-weight: 900;
}

.ip-gastro-status-lines {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

@media (max-width: 900px) {
    #ip-gastro-customer-order {
        grid-template-columns: 1fr;
        padding-bottom: 150px;
    }

    .ip-gastro-customer-panel {
        grid-template-columns: 1fr;
    }

    .ip-gastro-cart {
        bottom: 0;
        left: 0;
        position: fixed;
        right: 0;
        top: auto;
        z-index: 20;
    }

    .ip-gastro-floating-order {
        bottom: 16px;
        right: 16px;
    }

    .ip-gastro-status-grid {
        grid-template-columns: 1fr;
    }
}

