:root {
      --okc-green: #47A13E;
      --okc-green-deep: #3a8534;
      --okc-orange: #F7941E;
      --okc-red: #C91C1C;
      --okc-navy: #10233A;
      --okc-cream: #FFF8EE;
      --okc-cream-deep: #f7efe2;
      --okc-surface: #FFFFFF;
      --okc-surface-soft: #fffdf8;
      --okc-surface-tint: #f8fbf6;
      --okc-text: #10233A;
      --okc-text-soft: #32485a;
      --okc-muted: #60727A;
      --okc-border: rgba(38, 50, 56, 0.12);
      --okc-border-strong: rgba(38, 50, 56, 0.18);
      --okc-shadow-sm: 0 8px 20px rgba(16, 35, 58, 0.04);
      --okc-shadow: 0 18px 42px rgba(16, 35, 58, 0.08);
      --okc-shadow-lg: 0 28px 56px rgba(16, 35, 58, 0.12);
      --okc-radius-2xl: 32px;
      --okc-radius-xl: 26px;
      --okc-radius-lg: 20px;
      --okc-radius-md: 16px;
      --okc-radius-sm: 12px;
      --okc-transition: 180ms cubic-bezier(.2, .8, .2, 1);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", sans-serif;
      color: var(--okc-text);
      background:
        radial-gradient(circle at top left, rgba(247, 148, 30, 0.07), transparent 30%),
        radial-gradient(circle at right 12% top 18%, rgba(71, 161, 62, 0.08), transparent 28%),
        linear-gradient(180deg, #fffdfa 0%, var(--okc-cream) 56%, #fffaf2 100%);
      min-height: 100vh;
      line-height: 1.45;
    }

    h1, h2, h3, h4, h5, .brand-mark, .section-eyebrow {
      font-family: "Sora", sans-serif;
      letter-spacing: -0.02em;
    }

    .text-muted-soft {
      color: var(--okc-muted) !important;
    }

    .min-w-0 {
      min-width: 0;
    }

    .app-shell {
      padding-bottom: 6.5rem;
    }

    .header-blur {
      background: rgba(255, 251, 245, 0.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(38, 50, 56, 0.08);
    }

    .header-icon-btn,
    .cart-trigger-btn,
    .account-btn {
      width: 48px;
      height: 48px;
      border-radius: 15px;
      border: 1px solid rgba(38, 50, 56, 0.1);
      background: rgba(255, 255, 255, 0.92);
      color: var(--okc-navy);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 18px rgba(16, 35, 58, 0.04);
      transition: transform var(--okc-transition), border-color var(--okc-transition), background-color var(--okc-transition), box-shadow var(--okc-transition);
    }

    .header-icon-btn:hover,
    .cart-trigger-btn:hover,
    .account-btn:hover {
      transform: translateY(-1px);
      border-color: rgba(71, 161, 62, 0.26);
      background: #fff;
      box-shadow: 0 12px 22px rgba(16, 35, 58, 0.08);
    }

    .brand-badge {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      background: linear-gradient(180deg, rgba(71, 161, 62, 0.14), rgba(71, 161, 62, 0.08));
      color: var(--okc-green);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      box-shadow: inset 0 0 0 1px rgba(71, 161, 62, 0.06);
    }

    .brand-mark {
      font-size: 1.02rem;
      font-weight: 700;
      line-height: 1.12;
      margin: 0;
    }

    .brand-subcopy {
      font-size: 0.78rem;
      color: var(--okc-muted);
      margin: 0;
    }

    .customer-nav {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
    }

    .customer-nav-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0.72rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(38, 50, 56, 0.1);
      background: rgba(255, 255, 255, 0.92);
      color: var(--okc-navy);
      text-decoration: none;
      font-weight: 700;
      box-shadow: 0 8px 18px rgba(16, 35, 58, 0.04);
      transition: transform var(--okc-transition), border-color var(--okc-transition), background-color var(--okc-transition), box-shadow var(--okc-transition);
    }

    .customer-nav-link:hover,
    .customer-nav-link:focus {
      transform: translateY(-1px);
      border-color: rgba(71, 161, 62, 0.26);
      background: #fff;
      color: var(--okc-navy);
      box-shadow: 0 12px 22px rgba(16, 35, 58, 0.08);
    }

    .customer-nav-link.is-active {
      background: var(--okc-green);
      border-color: var(--okc-green);
      color: #fff;
      box-shadow: 0 14px 28px rgba(71, 161, 62, 0.22);
    }

    .customer-nav-collapse {
      width: 100%;
    }

    .customer-nav-mobile {
      display: grid;
      gap: 0.75rem;
    }

    .customer-nav-button {
      width: 100%;
    }

    .hero-panel {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 247, 0.96)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 246, 0.92));
      border: 1px solid rgba(38, 50, 56, 0.08);
      border-radius: var(--okc-radius-2xl);
      box-shadow: var(--okc-shadow);
      overflow: hidden;
      position: relative;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(71, 161, 62, 0.035), transparent 34%),
        linear-gradient(225deg, rgba(247, 148, 30, 0.04), transparent 26%);
      pointer-events: none;
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      inset: auto -6% -20% auto;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(71, 161, 62, 0.09), transparent 68%);
      pointer-events: none;
    }

    .section-eyebrow {
      display: inline-block;
      font-size: 0.74rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--okc-green);
      margin-bottom: 0.75rem;
    }

    .headline {
      font-size: clamp(2.2rem, 3.2vw, 3.35rem);
      line-height: 1.04;
      margin-bottom: 0.75rem;
      max-width: 12ch;
    }

    .toolbar-stat {
      border: 1px solid rgba(38, 50, 56, 0.08);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.72);
      backdrop-filter: blur(8px);
      padding: 1.05rem 1.1rem;
      min-width: 140px;
      box-shadow: 0 10px 20px rgba(16, 35, 58, 0.03);
    }

    .toolbar-stat-label {
      font-size: 0.72rem;
      color: var(--okc-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.45rem;
    }

    .toolbar-stat-value {
      font-weight: 800;
      font-size: 1.06rem;
      margin: 0;
      color: var(--okc-navy);
      line-height: 1.25;
    }

    .child-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.85rem;
      border: 1px solid rgba(38, 50, 56, 0.1);
      background: rgba(255, 255, 255, 0.96);
      color: var(--okc-navy);
      border-radius: 999px;
      padding: 0.65rem 0.75rem 0.65rem 1rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      transition: all var(--okc-transition);
      box-shadow: 0 8px 18px rgba(16, 35, 58, 0.04);
    }

    .child-chip-main {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      line-height: 1.1;
    }

    .child-chip-name {
      font-size: 0.96rem;
      font-weight: 800;
    }

    .child-chip-meta {
      font-size: 0.73rem;
      color: var(--okc-muted);
      margin-top: 0.22rem;
    }

    .child-chip-count {
      min-width: 34px;
      height: 34px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding-inline: 0.55rem;
      background: rgba(16, 35, 58, 0.06);
      color: var(--okc-text-soft);
      font-size: 0.76rem;
      font-weight: 800;
    }

    .child-chip:hover {
      border-color: rgba(71, 161, 62, 0.28);
      background: #fff;
      transform: translateY(-1px);
    }

    .child-chip.active {
      background: var(--okc-green);
      border-color: var(--okc-green);
      color: #fff;
      box-shadow: 0 14px 28px rgba(71, 161, 62, 0.22);
    }

    .child-chip.active .child-chip-meta,
    .child-chip.active .child-chip-count {
      color: rgba(255, 255, 255, 0.9);
    }

    .child-chip.active .child-chip-count {
      background: rgba(255, 255, 255, 0.16);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .pref-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border-radius: 999px;
      padding: 0.5rem 0.85rem;
      background: rgba(255, 255, 255, 0.9);
      color: var(--okc-text-soft);
      font-size: 0.84rem;
      font-weight: 600;
      border: 1px solid rgba(38, 50, 56, 0.08);
      box-shadow: 0 8px 18px rgba(16, 35, 58, 0.03);
    }

    .pref-tag i {
      color: var(--okc-orange);
    }

    .manage-pref-btn {
      border-radius: 999px;
      font-weight: 800;
      padding: 0.88rem 1.2rem;
      background: #fff;
      border-color: rgba(38, 50, 56, 0.12);
      color: var(--okc-navy);
      box-shadow: 0 10px 18px rgba(16, 35, 58, 0.04);
    }

    .manage-pref-btn:hover,
    .manage-pref-btn:focus {
      background: rgba(255, 255, 255, 0.96);
      border-color: rgba(71, 161, 62, 0.26);
      color: var(--okc-green-deep);
      box-shadow: 0 14px 24px rgba(16, 35, 58, 0.06);
    }

    .day-card {
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(38, 50, 56, 0.08);
      border-radius: 24px;
      box-shadow: var(--okc-shadow-sm);
      transition: transform var(--okc-transition), box-shadow var(--okc-transition), border-color var(--okc-transition);
      overflow: hidden;
      height: 100%;
    }

    .day-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 32px rgba(16, 35, 58, 0.08);
      border-color: rgba(71, 161, 62, 0.14);
    }

    .day-card-header {
      padding: 1.5rem 1.55rem 1.15rem;
      border-bottom: 1px solid rgba(38, 50, 56, 0.08);
      background: linear-gradient(180deg, rgba(255, 248, 238, 0.88), rgba(255, 255, 255, 0.98));
    }

    .day-card-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      margin-bottom: 0.7rem;
    }

    .day-count-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.42rem 0.7rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(38, 50, 56, 0.08);
      color: var(--okc-text-soft);
      font-size: 0.73rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .day-kicker {
      color: var(--okc-orange);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }

    .day-name {
      font-size: 1.4rem;
      font-family: "Sora", sans-serif;
      margin: 0;
      line-height: 1.15;
    }

    .day-note {
      color: var(--okc-muted);
      font-size: 0.94rem;
      margin-top: 0.45rem;
      margin-bottom: 0;
      max-width: 34ch;
    }

    .meal-list {
      padding: 0.9rem;
    }

    .meal-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1.25rem;
      align-items: center;
      padding: 1.05rem 1.05rem;
      border-radius: 18px;
      border: 1px solid transparent;
      transition: background-color var(--okc-transition), transform var(--okc-transition), border-color var(--okc-transition), box-shadow var(--okc-transition);
    }

    .meal-row + .meal-row {
      margin-top: 0.55rem;
    }

    .meal-row:hover {
      background: rgba(71, 161, 62, 0.035);
      border-color: rgba(71, 161, 62, 0.12);
      transform: translateX(2px);
    }

    .meal-row.is-selected {
      background: rgba(71, 161, 62, 0.055);
      border-color: rgba(71, 161, 62, 0.18);
      box-shadow: inset 0 0 0 1px rgba(71, 161, 62, 0.04);
    }

    .meal-row.is-just-added {
      animation: mealAddedFlash 650ms ease;
    }

    .meal-name {
      margin-bottom: 0.45rem;
      font-weight: 800;
      color: var(--okc-navy);
      font-size: 1rem;
      line-height: 1.35;
    }

    .meal-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .meta-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.74rem;
      font-weight: 700;
      padding: 0.4rem 0.68rem;
      border-radius: 999px;
      background: rgba(16, 35, 58, 0.055);
      color: var(--okc-text-soft);
    }

    .meta-badge.is-featured {
      background: rgba(247, 148, 30, 0.14);
      color: #a76a1f;
    }

    .add-btn {
      min-width: 112px;
      border-radius: 999px;
      font-weight: 800;
      letter-spacing: -0.01em;
      padding: 0.74rem 1rem;
      border: 1px solid rgba(71, 161, 62, 0.2);
      background: rgba(71, 161, 62, 0.09);
      color: var(--okc-green);
      box-shadow: 0 8px 16px rgba(71, 161, 62, 0.08);
      transition: all var(--okc-transition);
    }

    .add-btn:hover {
      background: rgba(71, 161, 62, 0.16);
      color: var(--okc-green-deep);
      transform: translateY(-1px);
      box-shadow: 0 12px 20px rgba(71, 161, 62, 0.12);
    }

    .add-btn.is-added {
      background: var(--okc-green);
      border-color: var(--okc-green);
      color: #fff;
      box-shadow: 0 14px 24px rgba(71, 161, 62, 0.22);
    }

    .add-btn.is-just-added {
      animation: addButtonPop 560ms cubic-bezier(.2, .9, .25, 1);
    }

    .cart-card,
    .offcanvas-cart-shell {
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 251, 245, 0.98));
      color: var(--okc-text);
      border-radius: 28px;
      border: 1px solid rgba(38, 50, 56, 0.08);
      box-shadow: var(--okc-shadow);
    }

    .cart-card {
      position: sticky;
      top: 92px;
      overflow: hidden;
    }

    .cart-card.cart-bump,
    .offcanvas-cart-shell.cart-bump {
      animation: cartPulse 620ms ease;
    }

    .cart-shell {
      display: flex;
      flex-direction: column;
      min-height: min(78vh, 860px);
    }

    .cart-header {
      padding: 1.35rem 1.35rem 1rem;
      border-bottom: 1px solid rgba(38, 50, 56, 0.08);
      background: rgba(255, 255, 255, 0.72);
    }

    .cart-header-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.9rem;
      margin-bottom: 0.85rem;
    }

    .cart-title {
      font-family: "Sora", sans-serif;
      margin-bottom: 0.2rem;
      font-size: 1.35rem;
    }

    .cart-summary {
      color: var(--okc-muted);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .cart-header-actions {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .cart-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.46rem 0.76rem;
      border-radius: 999px;
      background: rgba(71, 161, 62, 0.08);
      color: var(--okc-green-deep);
      font-size: 0.78rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .cart-clear-btn {
      border: 0;
      background: transparent;
      color: var(--okc-muted);
      font-weight: 700;
      padding: 0;
      transition: color var(--okc-transition), opacity var(--okc-transition);
    }

    .cart-clear-btn:hover {
      color: var(--okc-red);
    }

    .cart-clear-btn:disabled {
      opacity: 0.38;
      pointer-events: none;
    }

    .cart-confidence {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.82rem 0.95rem;
      border-radius: 16px;
      background: rgba(71, 161, 62, 0.06);
      border: 1px solid rgba(71, 161, 62, 0.1);
      color: var(--okc-green-deep);
      font-size: 0.87rem;
      font-weight: 700;
    }

    .cart-confidence i {
      color: var(--okc-green);
    }

    .cart-body {
      flex: 1 1 auto;
      max-height: min(54vh, 560px);
      overflow-y: auto;
      padding: 1rem 1.1rem;
      scrollbar-gutter: stable;
    }

    .cart-body::-webkit-scrollbar {
      width: 6px;
    }

    .cart-body::-webkit-scrollbar-thumb {
      background: rgba(16, 35, 58, 0.12);
      border-radius: 999px;
    }

    .cart-group {
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid rgba(38, 50, 56, 0.08);
      border-radius: 20px;
      padding: 1rem;
      box-shadow: 0 10px 18px rgba(16, 35, 58, 0.03);
    }

    .cart-group + .cart-group {
      margin-top: 1.05rem;
    }

    .cart-group-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      margin-bottom: 0.85rem;
    }

    .cart-group-title {
      font-weight: 800;
      margin-bottom: 0.2rem;
      font-size: 1.06rem;
      color: var(--okc-text);
    }

    .cart-group-subtitle {
      color: var(--okc-muted);
      font-size: 0.77rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 800;
      margin-bottom: 0;
    }

    .cart-day-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.38rem 0.65rem;
      border-radius: 999px;
      background: rgba(247, 148, 30, 0.12);
      color: #aa6918;
      font-size: 0.68rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }

    .cart-item {
      border-top: 1px solid rgba(38, 50, 56, 0.08);
      padding-top: 1rem;
      margin-top: 1rem;
    }

    .cart-item:first-of-type {
      border-top: 0;
      padding-top: 0;
      margin-top: 0;
    }

    .cart-item-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.8rem;
      margin-bottom: 0.55rem;
    }

    .cart-item-name {
      font-weight: 800;
      margin-bottom: 0.25rem;
      color: var(--okc-text);
      line-height: 1.35;
      font-size: 0.98rem;
    }

    .cart-item-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
    }

    .cart-item-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.34rem 0.6rem;
      border-radius: 999px;
      font-size: 0.73rem;
      font-weight: 800;
      line-height: 1;
    }

    .cart-item-badge.is-day {
      background: rgba(247, 148, 30, 0.12);
      color: #aa6918;
    }

    .cart-item-badge.is-child {
      background: rgba(71, 161, 62, 0.08);
      color: var(--okc-green-deep);
    }

    .cart-item-tags {
      font-size: 0.8rem;
      color: var(--okc-muted);
      margin-top: 0.45rem;
    }

    .cart-item-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      margin-top: 0.85rem;
    }

    .qty-wrap {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      border: 1px solid rgba(38, 50, 56, 0.1);
      border-radius: 999px;
      padding: 0.22rem;
      background: rgba(255, 248, 238, 0.72);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .qty-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 0;
      background: rgba(16, 35, 58, 0.07);
      color: var(--okc-navy);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background-color var(--okc-transition), transform var(--okc-transition);
    }

    .qty-btn:hover {
      background: rgba(16, 35, 58, 0.12);
      transform: translateY(-1px);
    }

    .qty-value {
      min-width: 28px;
      text-align: center;
      font-weight: 800;
      color: var(--okc-navy);
      font-size: 0.92rem;
    }

    .qty-meta {
      font-size: 0.79rem;
      color: var(--okc-muted);
      font-weight: 800;
      letter-spacing: 0.01em;
    }

    .cart-remove {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(38, 50, 56, 0.1);
      background: rgba(255, 255, 255, 0.92);
      color: var(--okc-muted);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      transition: color var(--okc-transition), background-color var(--okc-transition), border-color var(--okc-transition), transform var(--okc-transition);
    }

    .cart-remove:hover {
      color: var(--okc-red);
      background: rgba(201, 28, 28, 0.06);
      border-color: rgba(201, 28, 28, 0.18);
      transform: translateY(-1px);
    }

    .cart-summary-block {
      border-top: 1px solid rgba(38, 50, 56, 0.08);
      border-bottom: 1px solid rgba(38, 50, 56, 0.08);
      background: rgba(255, 255, 255, 0.74);
      padding: 1rem 1.1rem;
    }

    .cart-summary-card {
      border-radius: 18px;
      border: 1px solid rgba(38, 50, 56, 0.08);
      background: rgba(255, 255, 255, 0.94);
      padding: 0.95rem 1rem;
      box-shadow: 0 8px 18px rgba(16, 35, 58, 0.03);
    }

    .cart-summary-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      font-size: 0.92rem;
      color: var(--okc-text-soft);
    }

    .cart-summary-line + .cart-summary-line {
      margin-top: 0.55rem;
    }

    .cart-summary-line strong {
      color: var(--okc-text);
      font-weight: 800;
    }

    .cart-summary-note {
      margin-top: 0.8rem;
      color: var(--okc-muted);
      font-size: 0.78rem;
      font-weight: 700;
      line-height: 1.55;
    }

    .cart-footer {
      position: sticky;
      bottom: 0;
      border-top: 1px solid rgba(38, 50, 56, 0.08);
      background: rgba(255, 253, 248, 0.98);
      padding: 1rem 1.1rem 1.15rem;
      backdrop-filter: blur(12px);
    }

    .cart-footer-title {
      font-family: "Sora", sans-serif;
      font-size: 1rem;
      margin-bottom: 0.25rem;
    }

    .cart-footer-copy {
      color: var(--okc-muted);
      font-size: 0.86rem;
      font-weight: 700;
      margin-bottom: 0.95rem;
    }

    .cart-cta {
      border-radius: 18px;
      font-weight: 800;
      background: linear-gradient(135deg, #4fa646, #3d9236);
      border-color: #3d9236;
      color: #fff;
      box-shadow: 0 18px 30px rgba(71, 161, 62, 0.24);
      min-height: 54px;
    }

    .cart-cta:hover {
      background: linear-gradient(135deg, #58ae4f, #378530);
      border-color: #378530;
      color: #fff;
      box-shadow: 0 22px 34px rgba(71, 161, 62, 0.28);
      transform: translateY(-1px);
    }

    .cart-cta:disabled {
      opacity: 0.55;
      box-shadow: none;
      transform: none;
    }

    .cart-empty {
      padding: 2.4rem 1rem 2.2rem;
      text-align: center;
    }

    .cart-empty-illustration {
      width: 78px;
      height: 78px;
      margin-inline: auto;
      border-radius: 26px;
      background: linear-gradient(180deg, rgba(247, 148, 30, 0.14), rgba(71, 161, 62, 0.08));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--okc-orange);
      font-size: 1.85rem;
      margin-bottom: 1rem;
      box-shadow: 0 16px 28px rgba(16, 35, 58, 0.06);
    }

    .cart-empty-title {
      font-family: "Sora", sans-serif;
      font-size: 1.08rem;
      margin-bottom: 0.45rem;
    }

    .cart-empty-copy {
      color: var(--okc-muted);
      font-size: 0.9rem;
      margin-bottom: 0.55rem;
    }

    .cart-empty-hint {
      color: var(--okc-green-deep);
      font-size: 0.82rem;
      font-weight: 800;
    }

    .mobile-cart-bar {
      position: fixed;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      z-index: 1040;
    }

    .mobile-cart-btn {
      border: 0;
      border-radius: 22px;
      padding: 1rem 1.1rem;
      background: rgba(255, 255, 255, 0.97);
      color: var(--okc-navy);
      width: 100%;
      border: 1px solid rgba(38, 50, 56, 0.1);
      box-shadow: 0 18px 30px rgba(16, 35, 58, 0.12);
      transition: transform var(--okc-transition), box-shadow var(--okc-transition), border-color var(--okc-transition);
    }

    .mobile-cart-btn:hover {
      transform: translateY(-1px);
      border-color: rgba(71, 161, 62, 0.18);
      box-shadow: 0 22px 34px rgba(16, 35, 58, 0.14);
    }

    .mobile-cart-btn strong {
      font-family: "Sora", sans-serif;
      font-size: 1rem;
    }

    .mobile-cart-btn .small {
      color: var(--okc-muted) !important;
    }

    .mobile-cart-btn .badge {
      background: rgba(71, 161, 62, 0.1) !important;
      color: var(--okc-green-deep) !important;
    }

    .offcanvas {
      background: transparent;
      border-left: 0;
    }

    .offcanvas.offcanvas-end {
      --bs-offcanvas-width: min(430px, 100vw);
    }

    .offcanvas-body {
      padding: 0.9rem !important;
    }

    .modal-content {
      border: 0;
      border-radius: 32px;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 247, 0.98));
      box-shadow: var(--okc-shadow-lg);
    }

    .modal-header,
    .modal-footer {
      border-color: rgba(38, 50, 56, 0.08);
      background: rgba(255, 253, 249, 0.94);
    }

    .modal-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .modal-footer-note {
      color: var(--okc-muted);
      font-size: 0.88rem;
      font-weight: 700;
    }

    .modal-footer-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-left: auto;
    }

    .preference-card {
      border: 1px solid rgba(38, 50, 56, 0.08);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 10px 18px rgba(16, 35, 58, 0.03);
    }

    .pref-option {
      position: relative;
    }

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

    .pref-option-label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      border: 1px solid rgba(38, 50, 56, 0.1);
      border-radius: 16px;
      padding: 0.92rem 1rem;
      font-weight: 700;
      background: #fff;
      cursor: pointer;
      transition: all var(--okc-transition);
    }

    .pref-option-label:hover {
      border-color: rgba(71, 161, 62, 0.18);
      background: rgba(248, 251, 246, 0.9);
    }

    .pref-option-label::after {
      content: "\F26E";
      font-family: "bootstrap-icons";
      color: transparent;
      font-size: 1rem;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid rgba(38, 50, 56, 0.14);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all var(--okc-transition);
    }

    .pref-option input:checked + .pref-option-label {
      background: rgba(71, 161, 62, 0.08);
      border-color: rgba(71, 161, 62, 0.3);
      color: var(--okc-green-deep);
      box-shadow: 0 12px 20px rgba(71, 161, 62, 0.08);
    }

    .pref-option input:checked + .pref-option-label::after {
      background: var(--okc-green);
      border-color: var(--okc-green);
      color: #fff;
    }

    .accordion-item {
      border: 1px solid rgba(38, 50, 56, 0.08);
      border-radius: 24px !important;
      overflow: hidden;
      box-shadow: 0 12px 22px rgba(16, 35, 58, 0.04);
    }

    .accordion-button {
      font-weight: 800;
      background: #fff;
      box-shadow: none !important;
      padding: 1.1rem 1.25rem;
    }

    .accordion-button:not(.collapsed) {
      color: var(--okc-navy);
      background: rgba(255, 248, 238, 0.9);
    }

    .child-name-input {
      border-radius: 16px;
      padding: 0.85rem 1rem;
      border-color: rgba(38, 50, 56, 0.12);
      min-height: 52px;
    }

    .child-name-input:focus {
      border-color: rgba(71, 161, 62, 0.34);
      box-shadow: 0 0 0 0.25rem rgba(71, 161, 62, 0.12);
    }

    .preference-group-title {
      color: var(--okc-navy);
      font-family: "Sora", sans-serif;
      font-size: 0.95rem;
      margin-bottom: 0.3rem;
    }

    .preference-group-copy {
      color: var(--okc-muted);
      font-size: 0.84rem;
      margin-bottom: 1rem;
      min-height: 2.5rem;
    }

    .accordion-child-meta {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--okc-muted);
      margin-left: 0.75rem;
    }

    .toast {
      border-radius: 18px;
      border: 1px solid rgba(38, 50, 56, 0.08);
      box-shadow: 0 18px 30px rgba(16, 35, 58, 0.08);
    }

    .toast-success-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--okc-green);
      box-shadow: 0 0 0 6px rgba(71, 161, 62, 0.14);
    }

    .review-note {
      border-radius: 18px;
      background: rgba(71, 161, 62, 0.08);
      color: var(--okc-green-deep);
      font-size: 0.88rem;
      font-weight: 700;
      border: 1px solid rgba(71, 161, 62, 0.12);
    }

    .desktop-cart-col {
      min-width: 0;
    }

    .section-title {
      font-family: "Sora", sans-serif;
      font-size: clamp(1.5rem, 2vw, 1.9rem);
      line-height: 1.15;
      margin-bottom: 0.4rem;
    }

    .section-chip {
      border-radius: 999px;
      padding: 0.62rem 0.95rem;
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid rgba(38, 50, 56, 0.08);
      color: var(--okc-text-soft);
      font-weight: 700;
      box-shadow: 0 10px 18px rgba(16, 35, 58, 0.03);
    }

    .lead {
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 56ch;
    }

    .btn:focus-visible,
    .accordion-button:focus-visible,
    .child-chip:focus-visible,
    .header-icon-btn:focus-visible,
    .cart-trigger-btn:focus-visible,
    .account-btn:focus-visible,
    .mobile-cart-btn:focus-visible {
      outline: none;
      box-shadow: 0 0 0 0.25rem rgba(71, 161, 62, 0.16);
    }

    @keyframes addButtonPop {
      0% {
        transform: scale(1);
      }
      35% {
        transform: scale(1.07);
      }
      100% {
        transform: scale(1);
      }
    }

    @keyframes mealAddedFlash {
      0% {
        background: rgba(71, 161, 62, 0.12);
        border-color: rgba(71, 161, 62, 0.24);
      }
      100% {
        background: rgba(71, 161, 62, 0.055);
        border-color: rgba(71, 161, 62, 0.18);
      }
    }

    @keyframes cartPulse {
      0% {
        transform: translateY(0);
        box-shadow: var(--okc-shadow);
      }
      45% {
        transform: translateY(-3px);
        box-shadow: 0 26px 42px rgba(16, 35, 58, 0.12), 0 0 0 4px rgba(71, 161, 62, 0.08);
      }
      100% {
        transform: translateY(0);
        box-shadow: var(--okc-shadow);
      }
    }

    @media (max-width: 991.98px) {
      .app-shell {
        padding-bottom: 7.5rem;
      }

      .headline {
        font-size: 2.35rem;
        max-width: none;
      }

      .toolbar-stat {
        min-width: 0;
      }

      .meal-row {
        grid-template-columns: 1fr;
        gap: 0.9rem;
      }

      .add-btn {
        width: 100%;
      }

      .cart-card,
      .offcanvas-cart-shell {
        border-radius: 26px;
      }

      .modal-footer {
        align-items: stretch;
      }

      .modal-footer-note,
      .modal-footer-actions {
        width: 100%;
      }

      .modal-footer-actions .btn {
        flex: 1 1 0;
      }
    }

    @media (max-width: 575.98px) {
      .hero-panel {
        border-radius: 26px;
      }

      .customer-nav-link {
        width: 100%;
      }

      .toolbar-stat {
        width: 100%;
      }

      .meal-list {
        padding: 0.75rem;
      }

      .meal-row {
        padding: 0.95rem 0.9rem;
      }

      .day-card-header {
        padding: 1.3rem 1.15rem 1rem;
      }

      .day-card-topline {
        align-items: flex-start;
        flex-direction: column;
      }

      .child-chip {
        width: 100%;
        justify-content: space-between;
      }

      .mobile-cart-bar {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
      }

      .mobile-cart-btn {
        padding: 0.95rem 1rem;
      }

      .modal-header,
      .modal-body,
      .modal-footer {
        padding-left: 1.1rem !important;
        padding-right: 1.1rem !important;
      }

      .modal-footer-actions {
        flex-direction: column-reverse;
      }

      .modal-footer-actions .btn {
        width: 100%;
      }
    }

    @media (min-width: 576px) and (max-width: 991.98px) {
      .toolbar-stat {
        padding: 1rem;
      }

      .mobile-cart-bar {
        left: 1.2rem;
        right: 1.2rem;
      }
    }

    @media (min-width: 768px) and (max-width: 1199.98px) {
      .cart-body {
        max-height: min(54vh, 620px);
      }

      .day-note {
        max-width: none;
      }
    }
