@font-face {
    font-family: "Neue Montreal";
    src: url("/assets/fonts/neuemontreal-regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Neue Montreal";
    src: url("/assets/fonts/neuemontreal-medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --c-teal: #80d4c5;
    --c-yellow: #ffed90;
    --c-blue-600: #567dff;
    --c-blue-800: #253068;
    --c-slate: #2c3e50;
    --c-text: #121212;
    --c-text-2: #464646;
    --c-orange: #e67e22;
    --c-white: #ffffff;
    --c-bg: #ffffff;
    --c-border: rgba(0, 0, 0, 0.1);
    --radius: 4px;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Neue Montreal", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    color: var(--c-text);
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

.pickup-app {
    width: min(100%, 390px);
    min-height: 100vh;
    margin: 0 auto;
    background: var(--c-bg);
    position: relative;
    overflow: visible;
    padding-bottom: 64px;
}

.pickup-main {
    padding: 0 16px 24px;
    overflow: visible;
}

.route-menu .pickup-main {
    padding: 0 10px 28px;
}

.pickup-app-product {
    padding-bottom: 0;
}

.pickup-app-no-nav {
    padding-bottom: 24px;
}

.pickup-main-product {
    padding: 0;
}

.route-cart .pickup-main {
    padding-bottom: 96px;
}

.route-checkout .pickup-main {
    padding-bottom: 96px;
}

.pickup-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--c-bg);
}

.promo-bar {
    background: var(--c-teal);
    color: var(--c-text);
    min-height: 30px;
    padding: 8px 16px;
    font-size: 12px;
    line-height: 1.2;
    display: grid;
    place-items: center;
    text-align: center;
}

.promo-progress {
    width: 100%;
    max-width: 250px;
    height: 2px;
    margin-top: 4px;
    background: rgba(0, 0, 0, 0.2);
}

.promo-progress span {
    display: block;
    height: 100%;
    background: var(--c-slate);
}

.order-strip {
    min-height: 70px;
    padding: 16px;
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.order-strip-title {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--c-text-2);
}

.order-strip p {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    color: var(--c-text-2);
}

.order-strip-link {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    min-height: 35px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--c-text-2);
    background: var(--c-white);
    cursor: pointer;
}

.order-details-modal[hidden] {
    display: none;
}

.order-details-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
}

.order-details-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.order-details-sheet {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: min(390px, 100%);
    background: var(--c-white);
    border-radius: 16px 16px 0 0;
    border: 1px solid var(--c-border);
    border-bottom: 0;
    padding: 14px 16px 16px;
}

.order-details-sheet > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.order-details-sheet > header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.icon-plain-btn {
    border: 0;
    background: transparent;
    padding: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.icon-plain-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-details-form {
    display: grid;
    gap: 8px;
}

.order-details-row {
    display: grid;
    gap: 4px;
}

.order-details-actions {
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.location-strip {
    display: none;
}

.btn {
    border: 1px solid transparent;
    border-radius: var(--radius);
    min-height: 53px;
    padding: 16px;
    font-size: 16px;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 500;
}

.btn-primary {
    background: var(--c-blue-800);
    color: var(--c-white);
}

.btn-light {
    background: var(--c-white);
    border-color: var(--c-border);
    color: var(--c-text-2);
}

.btn-soft {
    background: var(--c-white);
    border-color: var(--c-border);
    color: var(--c-text);
    min-height: 36px;
    font-size: 12px;
    padding: 8px 12px;
}

.btn-block {
    width: 100%;
}

.step1-hero-media {
    margin: 0 -16px;
    height: 157px;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #dce9f3 0%, #f2f5f9 100%);
    border-bottom: 1px solid var(--c-border);
}

.step1-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.step1-intro {
    margin-top: 32px;
}

.step1-intro h1 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--c-text);
}

.step1-intro p {
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.2;
    color: var(--c-text);
}

.step1-cta-group {
    margin-top: 24px;
    display: grid;
    gap: 8px;
}

.quick-add-home {
    margin-top: 20px;
}

.quick-add-home .section-title h2 {
    font-size: 18px;
}

.home-quick-track {
    margin-top: 10px;
    grid-auto-columns: 224px;
}

.home-quick-track .favorite-card {
    min-height: 222px;
    display: flex;
    flex-direction: column;
}

.home-quick-track .favorite-card-copy {
    padding: 8px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-quick-track .favorite-card-copy h3 {
    font-size: 15px;
}

.home-quick-track .favorite-card-copy p {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.quick-add-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.quick-add-row .btn {
    min-height: 24px;
    padding: 4px 8px;
    font-size: 11px;
    margin-left: auto;
    align-self: flex-end;
}

.catering-card {
    min-height: 53px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 8px 16px;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--c-white);
}

.catering-card strong {
    font-size: 16px;
    font-weight: 500;
}

.catering-card span {
    font-size: 12px;
    line-height: 1.2;
}

.store-summary-card {
    margin-top: 16px;
    min-height: 108px;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    background: var(--c-white);
    padding: 16px;
    display: grid;
    align-content: center;
    gap: 6px;
}

.store-summary-card h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: var(--c-text);
}

.store-summary-card p {
    margin-top: 4px;
    font-size: 16px;
    color: var(--c-text-2);
}

.menu-title-row {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.menu-title-row h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

.filter-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-width: 162px;
}

.filter-select {
    appearance: none;
    border: 1px solid var(--c-border);
    border-radius: 999px;
    background: var(--c-white);
    min-height: 38px;
    width: 100%;
    padding: 8px 36px 8px 14px;
    font-size: 16px;
    color: var(--c-text-2);
    cursor: pointer;
}

.filter-select-wrap:hover .filter-select,
.filter-select:focus {
    background: var(--c-white);
    color: var(--c-text-2);
    outline: none;
}

.filter-select-arrow {
    position: absolute;
    right: 12px;
    width: 14px;
    height: 14px;
    pointer-events: none;
    transform: rotate(90deg);
    transition: transform 0.18s ease, filter 0.18s ease;
}

.filter-select-wrap:hover .filter-select-arrow,
.filter-select:focus + .filter-select-arrow {
    transform: rotate(-90deg);
}

.category-tabs {
    position: sticky;
    top: var(--sticky-tabs-top, 100px);
    z-index: 19;
    margin: 16px -16px 0;
    padding: 0 16px 0;
    display: flex;
    gap: 0;
    overflow-x: auto;
    background: var(--c-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    position: relative;
    white-space: nowrap;
    min-height: 36px;
    padding: 8px 14px 9px;
    border: 0;
    color: var(--c-text-2);
    font-size: 14px;
}

.category-tab::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -1px;
    height: 1.5px;
    background: transparent;
    transition: background-color 0.15s ease;
}

.category-tab.active {
    color: var(--c-text);
}

.category-tab.active::after {
    background: #000;
}

.featured-section {
    margin-top: 8px;
}

.section-title h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.carousel-controls {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.carousel-control {
    border: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.carousel-control img {
    width: 24px;
    height: 24px;
}

.featured-track {
    margin-top: 10px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 262px;
    gap: 10px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.featured-track::-webkit-scrollbar {
    display: none;
}

.favorite-card {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    overflow: hidden;
}

.favorite-card-image {
    position: relative;
    height: 112px;
    background: #eef3f7;
}

.favorite-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorite-card-image span {
    position: absolute;
    left: 8px;
    top: 8px;
    min-height: 20px;
    padding: 3px 8px;
    border-radius: 2px;
    background: var(--c-yellow);
    color: var(--c-slate);
    font-size: 12px;
}

.favorite-card-copy {
    padding: 10px;
}

.favorite-card-copy h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.favorite-card-copy p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.2;
    color: var(--c-text-2);
}

.favorite-card-copy strong {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: var(--c-text);
    font-weight: 500;
}

.menu-list {
    margin-top: 16px;
    display: grid;
    gap: 16px;
    min-width: 0;
}

.menu-category {
    scroll-margin-top: 12px;
    min-width: 0;
}

.menu-category > header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

.menu-category > header p {
    margin-top: 4px;
    font-size: 14px;
    color: var(--c-text-2);
}

.menu-grid {
    margin-top: 10px;
    display: grid;
    gap: 10px;
    min-width: 0;
}

.menu-track {
    margin-top: 10px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 14px) / 2.25);
    gap: 10px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    min-width: 0;
}

.menu-track::-webkit-scrollbar {
    display: none;
}

.menu-track .product-card {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
}

.menu-track .product-media {
    order: -1;
    padding: 8px 8px 0;
    min-height: 0;
}

.menu-track .product-media-frame {
    aspect-ratio: 4 / 3;
}

.menu-track .product-copy {
    padding: 8px;
}

.menu-track .product-copy h4 {
    font-size: 14px;
}

.menu-track .product-copy p {
    font-size: 11px;
}

.section-controls-row {
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
}

.product-card {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    min-height: 136px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 142px;
    gap: 16px;
    min-width: 0;
}

.product-copy {
    min-width: 0;
    min-height: 100%;
    padding: 8px 0 8px 8px;
    display: flex;
    flex-direction: column;
}

.product-copy h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--c-text);
}

.product-copy p {
    margin-top: 5px;
    font-size: 12px;
    color: var(--c-text-2);
    line-height: 1.25;
}

.dietary-badges {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
}

.dietary-badge {
    font-size: 10px;
    color: var(--c-text-2);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1.15;
}

.dietary-badge i {
    width: 10px;
    height: 10px;
    stroke-width: 1.9;
}

.dietary-badge i.badge-icon-halal {
    width: 5px;
    height: 5px;
    stroke-width: 1.15;
}

.dietary-badge img {
    width: 10px;
    height: 10px;
    object-fit: contain;
}

.dietary-badge img.badge-icon-halal-svg {
    width: 7px;
    height: 7px;
}

.product-copy strong {
    margin-top: auto;
    padding-top: 8px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text);
    align-self: flex-start;
}

.product-media {
    padding: 8px 8px 8px 0;
    min-height: 100%;
    display: flex;
    align-items: center;
}

.product-media-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 3px;
    overflow: hidden;
    background: #edf2f6;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-media-plus {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid var(--c-border);
    background: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.product-media-plus img {
    min-height: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-sheet {
    background: var(--c-white);
    min-height: 100vh;
    padding-bottom: 104px;
}

.product-sheet-hero {
    height: 268px;
    position: relative;
    overflow: hidden;
    background: #e8edf3;
}

.product-sheet-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero-action {
    position: absolute;
    top: 12px;
    display: inline-flex;
    z-index: 2;
    width: 20px;
    height: 20px;
    padding: 0;
}

.product-hero-action img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-hero-back {
    left: 12px;
}

.product-hero-close {
    right: 12px;
}

.product-sheet-body {
    padding: 12px 16px 0;
}

.product-dietary-badges {
    margin-top: 8px;
}

.product-sheet-body h1 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.product-price {
    margin-top: 6px;
    font-size: 14px;
    color: var(--c-text);
    font-weight: 500;
}

.product-description {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.25;
    color: var(--c-text-2);
}

.modifier-groups {
    margin-top: 12px;
}

.modifier-groups h2 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 500;
}

.modifier-group {
    border-top: 1px solid var(--c-border);
    padding-top: 12px;
    margin-top: 12px;
}

.modifier-group > header {
    display: grid;
    justify-items: start;
    gap: 2px;
    margin-bottom: 4px;
}

.modifier-group > header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.modifier-group > header span {
    font-size: 12px;
    color: var(--c-text-2);
}

.modifier-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.modifier-group li + li {
    border-top: 1px solid var(--c-border);
}

.modifier-option {
    min-height: 46px;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.modifier-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.modifier-option-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.modifier-option-copy {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.modifier-option-title-row {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
}

.modifier-option-control {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid var(--c-border);
    display: inline-block;
    flex-shrink: 0;
    position: relative;
}

.modifier-option input:checked + .modifier-option-left .modifier-option-control {
    border-color: var(--c-blue-800);
    background: var(--c-blue-800);
}

.modifier-option input:checked + .modifier-option-left .modifier-option-control::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 999px;
    background: var(--c-white);
}

.modifier-option-text {
    font-size: 14px;
    line-height: 1.2;
}

.modifier-option-description {
    font-size: 11px;
    line-height: 1.2;
    color: #737373;
    display: block;
}

.modifier-option-tags {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 6px;
}

.modifier-option strong {
    font-size: 12px;
    color: var(--c-text-2);
}

.product-form-extras {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}

.inline-form-row,
.form-field {
    display: grid;
    gap: 6px;
}

.form-field small {
    font-size: 11px;
    color: var(--c-text-2);
    line-height: 1.2;
}

label {
    font-size: 14px;
    color: var(--c-text-2);
}

input,
textarea {
    min-height: 40px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 9px 10px;
    font-size: 14px;
    color: var(--c-text);
    background: var(--c-white);
}

textarea {
    min-height: 72px;
    resize: vertical;
}

.quantity-control {
    border: 1px solid var(--c-border);
    border-radius: 999px;
    overflow: hidden;
    width: fit-content;
    display: grid;
    grid-template-columns: 32px 58px 32px;
}

.quantity-control button {
    border: 0;
    background: #f6f6f6;
    cursor: pointer;
}

.quantity-control input {
    border: 0;
    text-align: center;
    min-height: 32px;
    padding: 0;
}

.quantity-control.compact {
    grid-template-columns: 24px 40px 24px;
}

.quantity-control.compact input {
    min-height: 24px;
}

.quantity-control.compact button {
    min-height: 24px;
    font-size: 12px;
}

.form-error {
    margin-top: 4px;
    font-size: 12px;
    color: #b92d2d;
}

.floating-notice {
    position: fixed;
    left: 50%;
    bottom: 88px;
    transform: translateX(-50%);
    width: min(92vw, 360px);
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff7f7;
    color: #9c1f1f;
    font-size: 13px;
    line-height: 1.25;
    text-align: center;
    z-index: 80;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.floating-notice.is-success {
    background: #f2fcf7;
    color: #06663f;
}

.floating-notice.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
}

.modifier-group.is-invalid > header h3,
.modifier-group.is-invalid > header span {
    color: #b92d2d;
}

.product-sticky-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: min(390px, 100%);
    padding: 10px 16px 12px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--c-border);
    z-index: 18;
}

.product-add-btn {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 8px;
    background: #008054;
    color: var(--c-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.product-popular-section {
    margin-top: 14px;
}

.product-popular-section .section-title h2 {
    font-size: 14px;
}

.product-popular-track {
    margin-top: 8px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(156px, 1fr);
    gap: 8px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-popular-track::-webkit-scrollbar {
    display: none;
}

.popular-option-card {
    position: relative;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    background: var(--c-white);
    padding: 10px 38px 10px 10px;
    display: grid;
    gap: 6px;
    text-align: left;
    cursor: pointer;
}

.popular-option-card::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 1px solid var(--c-border);
    background: #fff;
}

.popular-option-card small {
    font-size: 10px;
    color: var(--c-text-2);
}

.popular-option-card strong {
    font-size: 14px;
    font-weight: 500;
}

.popular-option-card span {
    font-size: 13px;
    color: var(--c-text-2);
    line-height: 1.25;
}

.popular-option-card.active {
    border-color: rgba(0, 0, 0, 0.34);
    background: #f9f9f9;
}

.popular-option-card.active::after {
    border-color: #111;
    background: #111;
}

.special-instructions-toggle {
    min-height: 22px;
    border: 0;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 13px;
    color: var(--c-text);
    cursor: pointer;
}

.special-instructions-toggle img {
    width: 12px;
    height: 12px;
}

.special-instructions-toggle.is-open {
    opacity: 0.85;
}

.special-instructions-box {
    margin-top: 2px;
    display: none;
}

.special-instructions-box.is-open {
    display: grid;
}

.cart-step-header {
    margin-top: 8px;
}

.cart-step-header h1 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.cart-step-header p {
    margin-top: 2px;
    font-size: 14px;
    color: var(--c-text-2);
}

.pickup-time-row {
    margin-top: 8px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    min-height: 49px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pickup-time-row strong,
.pickup-time-row span {
    font-size: 14px;
}

.cart-list {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.cart-item {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    min-height: 96px;
    padding: 8px;
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 8px;
    align-items: center;
}

.cart-item-media {
    width: 72px;
    height: 72px;
    border-radius: 3px;
    overflow: hidden;
    background: #eef2f6;
}

.cart-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-copy h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.cart-item-copy p {
    margin-top: 4px;
    font-size: 10px;
    color: var(--c-text-2);
    white-space: pre-line;
}

.cart-item-actions {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-danger {
    border: 0;
    background: transparent;
    color: var(--c-text-2);
    font-size: 10px;
    cursor: pointer;
    text-transform: lowercase;
}

.cart-item-total {
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text);
}

.upsell-card {
    margin-top: 10px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    min-height: 96px;
    padding: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 98px;
    gap: 12px;
}

.upsell-copy h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.upsell-copy p {
    margin: 4px 0 0;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--c-text);
}

.upsell-copy small {
    margin-top: 2px;
    font-size: 12px;
    color: var(--c-text);
    display: block;
}

.upsell-add-btn {
    margin-top: 8px;
    justify-self: start;
    min-height: 26px;
    padding: 4px 8px;
}

.upsell-media {
    width: 98px;
    height: 72px;
    border-radius: 4px;
    overflow: hidden;
    background: #edf2f6;
}

.upsell-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tip-panel {
    margin-top: 10px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    padding: 10px;
}

.tip-panel h2 {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: var(--c-text-2);
}

.tip-options {
    margin-top: 8px;
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    border: 1px solid var(--c-border);
    border-radius: 999px;
    overflow: hidden;
}

.tip-option {
    min-width: 0;
    min-height: 32px;
    flex: 1 1 0;
    border: 0;
    border-right: 1px solid var(--c-border);
    border-radius: 0;
    background: var(--c-white);
    font-size: 12px;
    color: var(--c-text-2);
    cursor: pointer;
}

.tip-option:last-child {
    border-right: 0;
}

.tip-option.active {
    background: rgba(0, 128, 84, 0.1);
    color: #008054;
}

.tip-custom-input {
    margin-top: 8px;
    width: 100%;
}

.cart-summary {
    margin-top: 12px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    padding: 10px;
    display: grid;
    gap: 8px;
}

.cart-summary > div {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: var(--c-text-2);
}

.summary-total {
    border-top: 1px solid var(--c-border);
    padding-top: 8px;
    font-size: 16px;
    color: var(--c-text);
}

.summary-total strong {
    font-weight: 500;
}

.cart-complete-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: min(390px, 100%);
    border-top: 1px solid var(--c-border);
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 16px 12px;
    z-index: 18;
}

.cart-complete-bar .btn {
    min-height: 46px;
    width: 100%;
    justify-content: space-between;
    background: #2e8158;
}

.checkout-submit-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: min(390px, 100%);
    border-top: 1px solid var(--c-border);
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 16px 12px;
    z-index: 18;
}

.checkout-submit-bar .btn {
    min-height: 46px;
    width: 100%;
    justify-content: space-between;
    background: #2e8158;
}

.page-header {
    margin-top: 16px;
}

.page-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

.page-header p {
    margin-top: 4px;
    font-size: 14px;
    color: var(--c-text-2);
}

.inline-form,
.checkout-form {
    margin-top: 12px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    padding: 10px;
    display: grid;
    gap: 10px;
}

.checkout-layout {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.checkout-summary {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    padding: 10px;
    display: grid;
    gap: 6px;
}

.checkout-summary h2 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 500;
}

.checkout-summary > div {
    font-size: 12px;
    color: var(--c-text-2);
    display: flex;
    justify-content: space-between;
}

.checkout-summary small {
    margin-top: 4px;
    font-size: 11px;
    color: var(--c-text-2);
}

.orders-list {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.order-card {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    padding: 10px;
}

.order-card > header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.order-card > header strong {
    font-size: 14px;
    font-weight: 500;
}

.order-card p {
    margin-top: 6px;
    font-size: 12px;
    color: var(--c-text-2);
}

.order-meta {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.status-pill {
    min-height: 20px;
    padding: 3px 8px;
    border: 1px solid var(--c-border);
    border-radius: 2px;
    font-size: 10px;
}

.status-pill.is-pending {
    background: #f5f5f5;
}

.status-pill.is-progress {
    background: rgba(86, 125, 255, 0.12);
    color: var(--c-blue-600);
}

.status-pill.is-ready {
    background: rgba(128, 212, 197, 0.25);
    color: var(--c-slate);
}

.status-pill.is-cancelled {
    background: rgba(230, 126, 34, 0.18);
    color: var(--c-orange);
}

.confirmation-screen,
.empty-state {
    margin-top: 16px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    padding: 22px 14px;
    text-align: center;
}

.confirmation-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    border: 1px solid var(--c-border);
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(128, 212, 197, 0.22);
}

.confirmation-icon i {
    width: 28px;
    height: 28px;
    color: var(--c-slate);
}

.confirmation-screen h1,
.empty-state h1,
.empty-state h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

.confirmation-screen p,
.empty-state p,
.empty-text {
    margin-top: 6px;
    font-size: 14px;
    color: var(--c-text-2);
}

.confirmation-actions {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.bottom-nav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: min(390px, 100%);
    min-height: 56px;
    border-top: 1px solid var(--c-border);
    background: var(--c-bg);
    z-index: 22;
    padding: 8px 12px;
    display: grid;
    grid-template-columns: 96px 52px 96px;
    align-items: center;
    justify-content: space-between;
    column-gap: 16px;
}

.bottom-nav-left {
    display: grid;
    grid-template-columns: repeat(2, 40px);
    align-items: center;
    gap: 16px;
    width: fit-content;
    min-width: 0;
}

.bottom-nav-left .bottom-nav-item {
    width: 40px;
    min-width: 0;
}

.bottom-nav-item,
.bottom-nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--c-text);
    font-size: 14px;
    line-height: 1;
    position: relative;
    min-height: 37px;
}

.bottom-nav-item {
    width: 40px;
}

.bottom-nav-item span,
.bottom-nav-checkout span {
    white-space: nowrap;
}

.bottom-nav-item img {
    width: 15px;
    height: 16px;
}

.bottom-nav-center img {
    width: 43px;
    height: 40px;
}

.bottom-nav-checkout {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    min-height: 35px;
    background: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--c-text-2);
    width: 96px;
}

.bottom-nav-item.active,
.bottom-nav-center.active,
.bottom-nav-checkout.active {
    color: var(--c-blue-800);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: 10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--c-orange);
    color: var(--c-white);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

@media (min-width: 440px) {
    .pickup-app {
        border: 1px solid var(--c-border);
        box-shadow: var(--shadow);
    }

    .bottom-nav {
        bottom: 0;
        border: 1px solid var(--c-border);
        border-radius: 0 0 var(--radius) var(--radius);
    }
}

.gift-card-panel {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: #f8fafc;
}

.cart-gift-card {
    margin-top: 10px;
    border: 0;
    background: transparent;
    padding: 0;
    gap: 8px;
}

.gift-card-toggle {
    width: fit-content;
}

.gift-card-content {
    display: grid;
    gap: 10px;
}

.gift-card-content[hidden] {
    display: none !important;
}

.cart-gift-card .gift-card-content {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: #f8fafc;
    padding: 10px;
}

.gift-card-panel h2 {
    margin: 0;
    font-size: 18px;
}

.gift-card-panel p {
    margin: 0;
    color: var(--c-text-2);
    font-size: 13px;
}

.gift-card-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
}

.gift-card-input {
    width: 100%;
    min-height: 38px;
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.gift-card-hint {
    display: block;
    font-size: 11px;
    line-height: 1.35;
    opacity: 0.56;
    margin-top: -2px;
}

.bundle-card .favorite-card-copy small {
    display: inline-block;
    margin-top: 2px;
    color: var(--c-text-2);
    font-size: 12px;
}

.bundle-item-list {
    margin: 4px 0 0;
    padding-left: 16px;
    color: var(--c-text-2);
    font-size: 12px;
    line-height: 1.4;
}

.closed-screen {
    min-height: calc(100vh - 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 12px 28px;
}

.closed-card {
    width: 100%;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-white);
    box-shadow: var(--shadow);
    padding: 22px 16px;
    display: grid;
    gap: 10px;
    text-align: center;
}

.closed-card h1 {
    margin: 0;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 500;
}

.closed-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: var(--c-text-2);
}

.closed-message-es {
    opacity: 0.88;
}

.closed-reason {
    display: inline-block;
    margin-top: 2px;
    font-size: 11px;
    opacity: 0.55;
}

.closed-actions {
    margin-top: 4px;
    display: grid;
    gap: 8px;
}

/* Glass Modal */
.glass-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.glass-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.glass-modal {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 24px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    padding: 32px 24px 24px 24px;
}

.glass-modal-overlay.is-open .glass-modal {
    transform: translateY(0) scale(1);
}

.glass-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.05);
    border: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-muted);
    transition: background 0.2s;
    z-index: 10;
}

.glass-modal-close:hover {
    background: rgba(0,0,0,0.1);
    color: var(--color-primary);
}

.glass-modal-body {
    position: relative;
}

.glass-carousel-track::-webkit-scrollbar {
    display: none;
}
.glass-carousel-track {
    scrollbar-width: none;
}

/* =============================================================
   CATERING MULTI-STEP WIZARD
   Apple Silicon Glass — Mobile First
   ============================================================= */

:root {
    --cw-accent: #80d4c5;
    --cw-accent-dark: #5cbfad;
    --cw-accent-light: rgba(128,212,197,0.15);
}

/* --- Header --- */
.catering-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.catering-header-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    max-width: 430px;
    margin: 0 auto;
}
.catering-header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.catering-header-logo-icon {
    width: 30px;
    height: 30px;
}
.catering-header-logo-img {
    height: 18px;
    width: auto;
}
.catering-header-logo-text {
    font-weight: 500;
    font-size: 0.92rem;
}
.catering-header-pickup-link {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--c-text-2);
    opacity: 0.65;
    transition: opacity 0.2s;
}
.catering-header-pickup-link:hover { opacity: 1; }

/* --- Wizard Container --- */
.cater-wizard {
    max-width: 430px;
    margin: 0 auto;
    padding: 0 8px 136px;
    position: relative;
}

/* --- Progress Bar --- */
.cw-progress {
    position: sticky;
    top: 50px;
    z-index: 40;
    padding: 12px 0 8px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
.cw-progress-bar {
    height: 2px;
    background: rgba(0,0,0,0.06);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.cw-progress-bar::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: var(--cw-progress, 14.28%);
    background: var(--cw-accent);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cw-steps-indicator {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
}
.cw-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.cw-dot.active {
    background: var(--cw-accent);
    transform: scale(1.4);
}
.cw-dot.done {
    background: var(--cw-accent-dark);
}

/* --- Steps --- */
.cw-step {
    display: none;
    animation: cwFadeIn 0.3s ease;
}
.cw-step.active { display: block; }

@keyframes cwFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cw-step-header {
    padding: 20px 0 12px;
}
.cw-step-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cw-accent-dark);
    margin-bottom: 4px;
}
.cw-step-title {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}
.cw-step-subtitle {
    font-size: 0.84rem;
    color: var(--c-text-2);
    margin: 4px 0 0;
}

/* --- Glass Card --- */
.cw-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 14px;
    padding: 15px;
    margin-bottom: 12px;
}
.cw-card-title {
    font-size: 0.92rem;
    font-weight: 500;
    margin: 0 0 2px;
}
.cw-card-hint {
    font-size: 0.76rem;
    color: var(--c-text-2);
    margin: 0 0 14px;
}

/* --- Delivery fields spacing --- */
.cw-delivery-fields {
    margin-top: 18px;
    border-color: rgba(128,212,197,0.38);
    background: rgba(128,212,197,0.08);
}

/* --- Form Fields --- */
.cw-field {
    margin-bottom: 16px;
}
.cw-field:last-child { margin-bottom: 0; }
.cw-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--c-text);
}
.cw-optional {
    font-weight: 400;
    color: var(--c-text-2);
}
.cw-input {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid rgba(0,0,0,0.09);
    border-radius: 10px;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.85);
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.cw-input:focus {
    outline: none;
    border-color: var(--cw-accent);
    box-shadow: 0 0 0 3px var(--cw-accent-light);
}
.cw-textarea { resize: vertical; min-height: 52px; }
.cw-hint {
    display: block;
    font-size: 0.72rem;
    color: var(--c-text-2);
    margin-top: 3px;
}
.cw-input.cw-error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}

/* --- Stepper --- */
.cw-stepper {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.09);
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
    background: rgba(255,255,255,0.85);
}
.cw-stepper-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--c-text);
    cursor: pointer;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}
.cw-stepper-btn:active { background: var(--cw-accent-light); }
.cw-stepper-input {
    width: 52px;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(0,0,0,0.06);
    border-right: 1px solid rgba(0,0,0,0.06);
    font-size: 0.95rem;
    font-weight: 500;
    background: none;
    padding: 0;
    -moz-appearance: textfield;
}
.cw-stepper-input::-webkit-inner-spin-button,
.cw-stepper-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.cw-stepper-sm { border-radius: 8px; }
.cw-stepper-sm .cw-stepper-btn { width: 34px; height: 34px; font-size: 0.95rem; }
.cw-stepper-sm .cw-stepper-input { width: 40px; font-size: 0.84rem; }

/* --- Option Cards (radio) --- */
.cw-options-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cw-option-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px;
    border: 1.5px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    cursor: pointer;
    background: rgba(255,255,255,0.5);
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.cw-option-card:has(input:checked) {
    border-color: var(--cw-accent);
    background: var(--cw-accent-light);
}
.cw-option-radio { display: none; }
.cw-option-body { flex: 1; }
.cw-option-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}
.cw-option-desc {
    display: block;
    font-size: 0.74rem;
    color: var(--c-text-2);
    margin-top: 1px;
}
.cw-option-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    color: transparent;
}
.cw-option-check svg { width: 10px; height: 10px; }
.cw-option-card:has(input:checked) .cw-option-check {
    background: var(--cw-accent);
    border-color: var(--cw-accent);
    color: #fff;
}

/* --- Package Cards --- */
.cw-packages-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cw-package-card {
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255,255,255,0.5);
    transition: all 0.2s;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}
.cw-package-card:has(input:checked) {
    border-color: var(--cw-accent);
    box-shadow: 0 2px 16px rgba(128,212,197,0.2);
}
.cw-package-img {
    position: relative;
    height: 136px;
    overflow: hidden;
    background: #f0f0f0;
}

.cw-package-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.24), rgba(0,0,0,0) 52%);
    pointer-events: none;
}
.cw-package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cw-package-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    background: rgba(18, 18, 18, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.cw-package-body {
    padding: 12px 12px 14px;
}
.cw-package-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 4px;
}
.cw-package-name {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}
.cw-package-price-inline {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--c-text);
}
.cw-package-price-inline small {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--c-text-2);
}
.cw-package-desc {
    font-size: 0.78rem;
    color: var(--c-text-2);
    margin: 0 0 8px;
    line-height: 1.35;
}
.cw-package-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}
.cw-includes-item {
    font-size: 0.68rem;
    background: rgba(0,0,0,0.04);
    padding: 2px 7px;
    border-radius: 5px;
    color: var(--c-text-2);
}

/* --- Guest Pill --- */
.cw-guest-pill {
    display: inline-block;
    background: var(--cw-accent-light);
    color: var(--cw-accent-dark);
    padding: 2px 9px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
}

/* --- Customization Selections --- */
.cw-selection-group {
    margin-bottom: 12px;
}
.cw-selection-title {
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 0 8px;
    padding: 0 2px;
}
.cw-selection-count {
    font-weight: 400;
    color: var(--c-text-2);
    font-size: 0.76rem;
}
.cw-selection-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.cw-sel-chip {
    display: block;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.cw-sel-chip input { display: none; }
.cw-sel-chip span {
    display: block;
    padding: 9px 14px;
    font-size: 0.82rem;
    font-weight: 400;
    border: 1.5px solid rgba(0,0,0,0.07);
    border-radius: 10px;
    background: rgba(255,255,255,0.5);
    transition: all 0.2s;
}
.cw-sel-chip input:checked + span {
    border-color: var(--cw-accent);
    background: var(--cw-accent);
    color: #fff;
    font-weight: 500;
}
.cw-sel-chip input:disabled + span {
    opacity: 0.3;
    cursor: not-allowed;
}

/* --- Upgrades --- */
.cw-upgrade-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.cw-upgrade-row:last-child { border-bottom: none; }

/* --- Add-Ons --- */
.cw-addon-tray-row,
.cw-addon-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    gap: 10px;
}
.cw-addon-tray-row:last-child,
.cw-addon-item-row:last-child { border-bottom: none; }
.cw-addon-name {
    font-size: 0.85rem;
    flex: 1;
}
.cw-addon-price {
    font-size: 0.74rem;
    color: var(--c-text-2);
}
.cw-addon-item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cw-addon-size {
    padding: 7px 9px;
    border: 1px solid rgba(0,0,0,0.09);
    border-radius: 8px;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.85);
    min-width: 130px;
    -webkit-appearance: none;
    appearance: none;
}

/* --- Chips --- */
.cw-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 13px;
    border: 1.5px solid rgba(0,0,0,0.07);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    background: rgba(255,255,255,0.5);
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.cw-chip input { display: none; }
.cw-chip:has(input:checked) {
    border-color: var(--cw-accent);
    background: var(--cw-accent);
    color: #fff;
}
.cw-supplies-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* --- Nav --- */
.cw-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-top: 1px solid rgba(0,0,0,0.05);
    z-index: 100;
}
.cw-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 11px 22px;
    border: none;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.cw-btn-next {
    background: var(--cw-accent);
    color: #fff;
    margin-left: auto;
}
.cw-btn-next:active { transform: scale(0.97); }
.cw-btn-next:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.cw-btn-back {
    background: none;
    color: var(--c-text-2);
    padding: 11px 14px;
}
.cw-btn-back:active { background: rgba(0,0,0,0.03); border-radius: 10px; }
.cw-btn-submit {
    background: var(--cw-accent);
    color: #fff;
    width: 100%;
    justify-content: center;
    padding: 13px 22px;
    font-size: 0.95rem;
    border-radius: 12px;
}
.cw-btn-submit:active { transform: scale(0.98); }

/* --- Review --- */
.cw-review-section {
    margin-bottom: 12px;
}
.cw-review-section-title {
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-text-2);
    margin: 0 0 6px;
    padding: 0 2px;
}
.cw-review-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 14px;
}
.cw-review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 0.84rem;
}
.cw-review-row.cw-review-total {
    font-weight: 500;
    font-size: 1rem;
    border-top: 1.5px solid rgba(0,0,0,0.07);
    margin-top: 6px;
    padding-top: 10px;
}
.cw-review-label { color: var(--c-text-2); }
.cw-review-value { font-weight: 500; }
.cw-review-items {
    font-size: 0.78rem;
    color: var(--c-text-2);
    line-height: 1.5;
    margin-top: 4px;
}
.cw-review-edit {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--cw-accent-dark);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

/* --- Allergy Disclaimer --- */
.cw-disclaimer {
    font-size: 0.72rem;
    color: var(--c-text-2);
    line-height: 1.5;
    padding: 12px 14px;
    background: rgba(0,0,0,0.02);
    border-radius: 10px;
    margin-top: 14px;
}

.cw-policies {
    margin: 14px 0 28px;
    padding: 0 2px;
}

.cw-policies-title {
    margin: 0 0 7px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--c-text-2);
    opacity: 0.72;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cw-policies-list {
    display: grid;
    gap: 6px;
}

.cw-policy-item {
    margin: 0;
    font-size: 0.69rem;
    line-height: 1.45;
    color: var(--c-text-2);
    opacity: 0.78;
}

.cw-policy-item strong {
    color: var(--c-text);
    font-weight: 500;
}

/* --- Desktop: keep mobile centered, fix nav --- */
@media (min-width: 520px) {
    .cw-packages-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .cw-package-img { height: 116px; }
}

@media (min-width: 481px) {
    body.route-menu {
        background: linear-gradient(180deg, #f1f8f7 0%, #f7f7f7 44%, #f1f8f7 100%);
    }
    body.route-menu .pickup-app {
        width: min(100%, 430px);
        margin: 0 auto;
        background: #fff;
        min-height: 100vh;
        box-shadow: 0 0 40px rgba(0,0,0,0.06);
        border-radius: 20px;
        overflow: hidden;
    }
    body.route-menu .catering-header {
        border-radius: 20px 20px 0 0;
    }
    body.route-menu .cw-nav {
        border-radius: 0 0 20px 20px;
    }
}

/* --- Hide bottom-nav on /menu for catering --- */
.route-menu .bottom-nav { display: none; }
.route-menu .pickup-app { padding-bottom: 0; }
