    /* ---------- SHOPPING LIST ---------- */
    .shopping-layout {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 18px;
      align-items: start;
    }

    @media (max-width:860px) {
      .shopping-layout {
        grid-template-columns: 1fr;
      }
    }

    .shopping-form h3 {
      font-size: 12px;
      font-family: var(--font-mono);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 14px;
      font-weight: 500;
    }

    .shopping-form .field select,
    .shopping-form .field input {
      width: 100%;
    }

    .shopping-list-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 4px;
      gap: 10px;
      flex-wrap: wrap;
    }

    .shopping-list-head h3 {
      margin-bottom: 0;
    }

    .shopping-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .shopping-summary {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--muted);
    }

    .shopping-summary b {
      color: var(--brass);
      font-weight: 600;
    }

    .shop-cat-group {
      margin-top: 18px;
    }

    .shop-cat-group:first-child {
      margin-top: 6px;
    }

    .shop-cat-title {
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink-dim);
      padding-bottom: 6px;
      margin-bottom: 8px;
      border-bottom: 1px solid var(--line);
    }

    .shop-cat-title .sw {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex: 0 0 auto;
    }

    .shop-cat-title .count {
      color: var(--muted);
      font-weight: 400;
      margin-left: auto;
    }

    .shop-items {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .shop-item {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--panel-alt);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 8px 10px;
      cursor: pointer;
    }

    .shop-item:hover {
      border-color: var(--line-strong);
    }

    .shop-item.done {
      opacity: 0.55;
    }

    .shop-item.done .s-name {
      text-decoration: line-through;
    }

    .shop-check {
      width: 17px;
      height: 17px;
      border-radius: 5px;
      border: 1px solid var(--line-strong);
      flex: 0 0 auto;
      cursor: pointer;
      background: var(--panel);
      display: flex;
      align-items: center;
      justify-content: center;
      color: transparent;
      font-size: 11px;
    }

    .shop-check:hover {
      border-color: var(--brass);
    }

    .shop-item.done .shop-check {
      background: var(--good);
      border-color: var(--good);
      color: var(--panel);
    }

    .shop-main {
      flex: 1;
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .s-name {
      font-size: 13px;
      font-weight: 500;
    }

    .s-qty {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--muted);
    }

    .qty-stepper {
      display: flex;
      align-items: center;
      gap: 5px;
      background: var(--panel);
      border: 1px solid var(--line-strong);
      border-radius: 20px;
      padding: 2px 3px;
      cursor: default;
    }

    .qty-stepper button {
      width: 17px;
      height: 17px;
      border-radius: 50%;
      border: none;
      background: var(--panel-raised);
      color: var(--ink-dim);
      font-size: 12px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .qty-stepper button:hover {
      background: var(--brass-soft);
      color: var(--brass);
    }

    .qty-stepper .s-qty {
      min-width: 52px;
      text-align: center;
    }

    .s-store {
      font-family: var(--font-mono);
      font-size: 9px;
      padding: 2px 7px;
      border-radius: 10px;
      background: var(--panel-raised);
      color: var(--ink-dim);
      border: 1px solid var(--line-strong);
    }

    .s-price {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--brass);
      margin-left: auto;
      padding-right: 6px;
    }

    .shop-del {
      background: none;
      border: none;
      color: var(--muted);
      font-size: 15px;
      padding: 0 2px;
      flex: 0 0 auto;
    }

    .shop-del:hover {
      color: var(--coral);
    }

    .shopping-empty {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--muted);
      text-align: center;
      padding: 24px 0;
    }

