 /* ─── Basket Drawer ─────────────────────────────── */
    .basket-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.35);
      z-index: 200;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .basket-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
    .basket-drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: 400px;
      max-width: 100vw;
      height: 100vh;
      background: #fff;
      z-index: 201;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    }
    .basket-drawer.open { transform: translateX(0); }

    .basket-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 1.5rem 1rem;
      border-bottom: 2px solid #EDC1BB;
      background: #E7DFE1;
    }
    .basket-title {
      font-family: 'Cooper Black', serif;
      font-size: 20px;
      color: #CD7250;
    }
    .basket-close {
      background: none;
      border: none;
      cursor: pointer;
      color: #7e98a8;
      padding: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: background 0.2s, color 0.2s;
    }
    .basket-close:hover { background: #EDC1BB; color: #CD7250; }

    .basket-items {
      flex: 1;
      overflow-y: auto;
      padding: 1.25rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .basket-empty {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      color: #bbb;
      padding: 2rem;
      text-align: center;
    }
    .basket-empty svg { opacity: 0.3; }
    .basket-empty p { font-size: 14px; font-weight: 700; }
    .basket-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.75rem;
      background: #faf7f7;
      border-radius: 14px;
      border: 1.5px solid #EDC1BB;
    }
    .basket-item-img {
      width: 56px;
      height: 56px;
      border-radius: 10px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }
    .basket-item-info { flex: 1; }
    .basket-item-name {
      font-size: 13px;
      font-weight: 700;
      color: #444;
      margin-bottom: 2px;
    }
    .basket-item-price {
      font-family: 'Cooper Black', serif;
      font-size: 14px;
      color: #CD7250;
    }
    .basket-item-qty {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .qty-btn {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 2px solid #EDC1BB;
      background: #fff;
      color: #CD7250;
      font-size: 16px;
      font-weight: 900;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      transition: background 0.15s;
    }
    .qty-btn:hover { background: #EDC1BB; }
    .qty-num {
      font-size: 14px;
      font-weight: 900;
      color: #555;
      min-width: 16px;
      text-align: center;
    }

    .basket-footer {
      padding: 1.25rem 1.5rem 1.5rem;
      border-top: 2px solid #EDC1BB;
      background: #faf7f7;
    }
    .basket-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }
    .basket-total-label {
      font-size: 14px;
      font-weight: 700;
      color: #888;
    }
    .basket-total-price {
      font-family: 'Cooper Black', serif;
      font-size: 22px;
      color: #CD7250;
    }
    .checkout-btn {
      display: block;
      width: 100%;
      background: #CD7250;
      color: #fff;
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 16px;
      padding: 15px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 0 #9a4f2f;
      text-align: center;
      transition: transform 0.1s, box-shadow 0.1s;
      letter-spacing: 0.3px;
    }
    .checkout-btn:hover { transform: translateY(2px); box-shadow: 0 2px 0 #9a4f2f; }
    .checkout-btn:disabled {
      background: #ccc;
      box-shadow: 0 4px 0 #aaa;
      cursor: not-allowed;
      transform: none;
    }

    /* Mobile: full screen drawer */
    @media (max-width: 768px) {
      .basket-drawer {
        width: 100vw;
        top: 0;
      }
    }

    /* Added-to-basket flash */
    .add-flash {
      position: fixed;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: #CD7250;
      color: #fff;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 13px;
      padding: 10px 24px;
      border-radius: 50px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
      z-index: 300;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s, transform 0.25s;
      white-space: nowrap;
    }
    .add-flash.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
