    /* ── CART DRAWER ── */
    .cart-icon-wrap { position: relative; background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; }
    .cart-count { position: absolute; top: -6px; right: -7px; background: #fff; color: #000; font-size: 0.42rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; pointer-events: none; }
    .cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 500; display: block; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
    .cart-overlay.open { opacity: 1; pointer-events: all; }
    .cart-drawer { position: fixed; top: 0; right: 0; width: 520px; max-width: 100vw; height: 100dvh; background: #0d0d0d; border-left: 1px solid rgba(255,255,255,0.06); z-index: 501; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); visibility: hidden; }
    .cart-drawer.open { transform: translateX(0); visibility: visible; }
    body.cart-open { overflow: hidden; }
    .cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem 0.6rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.07); flex-shrink: 0; }
    .cart-title { font-size: 1rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); display: flex; align-items: center; gap: 0.5rem; }
    .cart-title-count { font-size: 0.75rem; font-weight: 700; color: var(--w45); letter-spacing: 0.05em; }
    .cart-close-btn { background: none; border: none; color: var(--w45); cursor: pointer; display: flex; align-items: center; padding: 4px; transition: color 0.2s; }
    .cart-close-btn svg { width: 22px; height: 22px; }
    .cart-close-btn:hover { color: var(--white); }
    .cart-body { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
    .cart-body::-webkit-scrollbar { width: 4px; }
    .cart-body::-webkit-scrollbar-track { background: transparent; }
    .cart-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }
    .cart-items { padding: 0 1.5rem 0 1rem; flex: 1; display: flex; flex-direction: column; }
    .cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.85rem; color: var(--w45); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; padding-top: 5rem; padding-bottom: 2rem; }
    .cart-empty svg { width: 36px; height: 36px; opacity: 0.3; }
    .cart-item { padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .cart-item-row { display: flex; gap: 0.6rem; align-items: stretch; }
    .cart-item-img { flex-shrink: 0; }
    .cart-item-img img { width: 100px; height: 100%; object-fit: contain; object-position: top; display: block; }
    .cart-item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.3rem; }
    .cart-item-name { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); white-space: nowrap; }
    .cart-item-variant { font-size: 0.56rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--w45); }
    .cart-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
    .cart-qty { display: flex; align-items: center; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
    .cart-qty-btn { width: 32px; height: 32px; background: transparent; border: none; color: var(--white); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; border-radius: 100px; }
    .cart-qty-btn:hover { background: rgba(255,255,255,0.1); }
    .cart-qty-btn:disabled { color: var(--w45); }
    .cart-qty-num { width: 30px; text-align: center; font-size: 0.78rem; font-weight: 700; color: var(--white); height: 32px; display: flex; align-items: center; justify-content: center; }
    .cart-delivery-label { display: flex; align-items: center; gap: 0.3rem; color: rgba(255,255,255,0.55); font-family: var(--ui); font-size: 0.5rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
    .cart-confirm-remove { display: flex; align-items: center; gap: 0.4rem; }
    .cart-confirm-remove span { font-size: 0.62rem; color: var(--w45); white-space: nowrap; }
    .cart-confirm-yes { font-size: 0.62rem; font-weight: 700; color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 3px 10px; cursor: pointer; transition: background 0.15s; }
    .cart-confirm-yes:hover { background: rgba(255,255,255,0.15); }
    .cart-confirm-no { font-size: 0.62rem; font-weight: 700; color: var(--w45); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 3px 10px; cursor: pointer; transition: background 0.15s; }
    .cart-confirm-no:hover { background: rgba(255,255,255,0.1); }
    .cart-item-price { display: flex; align-items: baseline; gap: 0.35rem; justify-content: flex-end; }
    .cart-item-price-compare { font-size: 0.7rem; color: var(--w45); text-decoration: line-through; }
    .cart-item-price-main { font-size: 1rem; font-weight: 800; color: var(--white); }
    .cart-item-remove { background: none; border: none; cursor: pointer; font-family: var(--ui); font-size: 0.52rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--w45); padding: 2px 0; text-decoration: underline; transition: color 0.2s; flex-shrink: 0; margin-top: 2px; }
    .cart-item-remove:hover { color: var(--white); }
    .cart-item-name-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; }
    .cart-item-x { background: none; border: none; cursor: pointer; color: var(--w45); font-size: 0.7rem; line-height: 1; padding: 0; flex-shrink: 0; transition: color 0.2s; }
    .cart-item-x:hover { color: var(--white); }
    .cart-sub-pill-wrap { position: relative; margin-top: 0.45rem; }
    .cart-sub-pill { width: 100%; display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1.5px solid #fff; border-radius: 100px; padding: 0.85rem 1rem; cursor: pointer; font-family: var(--ui); font-size: 0.56rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #000; transition: background 0.2s, color 0.2s, border-color 0.2s; box-sizing: border-box; }
    .cart-sub-pill.active { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
    .cart-sub-pill.subscribing { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); pointer-events: none; cursor: default; justify-content: center; }
    .cart-sub-pill img { filter: brightness(0); }
    .cart-sub-pill.active img { filter: brightness(0) invert(1); }
    .cart-sub-dropdown { display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #1c1c1c; border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; overflow: hidden; z-index: 10; }
    .cart-sub-dropdown.open { display: block; }
    .cart-sub-dropdown button { width: 100%; padding: 0.7rem 1rem; background: none; border: none; color: var(--white); font-family: var(--ui); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-align: left; cursor: pointer; transition: background 0.15s; box-sizing: border-box; }
    .cart-sub-dropdown button:hover { background: rgba(255,255,255,0.06); }
    .cart-sub-dropdown button.selected { background: rgba(255,255,255,0.08); color: #fff; }
    .cart-sub-dropdown button:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .cart-flavors-section { flex-shrink: 0; border-top: 1px solid rgba(255,255,255,0.07); padding: 0.85rem 1.25rem; }
    .cart-flavors-header { display: flex; align-items: center; justify-content: space-between; }
    .cart-flavors-title { font-family: var(--ui); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); text-align: center; flex: 1; }
    .cart-flavors-toggle { background: none; border: none; cursor: pointer; font-family: var(--ui); font-size: 0.5rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--w45); padding: 0; transition: color 0.2s; }
    .cart-flavors-toggle:hover { color: var(--white); }
    .cart-flavors-body { display: flex; gap: 0.75rem; margin-top: 0.85rem; justify-content: space-evenly; max-height: 300px; opacity: 1; overflow: hidden; }
    .cart-flavors-body.hidden { max-height: 0; opacity: 0; margin-top: 0; }
    .cart-flavor-card { width: 130px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
    .cart-flavor-img-wrap { position: relative; width: 110px; height: 110px; }
    .cart-flavor-img-wrap img { width: 110px; height: 110px; object-fit: contain; }
    .cart-flavor-soldout-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: transparent; border: 2px solid #fff; color: #fff; font-family: var(--ui); font-size: 0.62rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; padding: 0.3rem 0.6rem; text-align: center; pointer-events: none; }
    .cart-flavor-add-btn { width: 100%; background: #fff; color: #000; border: none; border-radius: 100px; padding: 0.38rem 0; font-family: var(--ui); font-size: 0.46rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; }
    .cart-flavor-add-btn.oos { background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.4); cursor: not-allowed; }
    .cart-flavor-add-btn.oos:hover { background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.4); }
    .cart-footer { flex-shrink: 0; padding: 1.1rem 1.5rem 1.75rem 1rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; gap: 0.8rem; }
    .cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; }
    /* Shipping bar */
    .cart-ship-bar { padding: 0.5rem 1.5rem 0.85rem 1rem; flex-shrink: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .cart-ship-track { position: relative; height: 36px; background: #3a3a3a; border-radius: 100px; overflow: hidden; }
    .cart-ship-fill { position: absolute; top: 0; left: 0; height: 100%; border-radius: 100px; background: #fff; transition: width 0.6s cubic-bezier(0.4,0,0.2,1); max-width: 100%; }
    .cart-ship-status { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; color: #fff; z-index: 1; pointer-events: none; text-align: center; padding: 0 1rem; }
    .cart-ship-status strong { font-weight: 800; }
    .cart-ship-status-dark { color: #000; clip-path: inset(0 100% 0 0); z-index: 2; }
    .cart-ship-status-dark strong { color: #000; }
    /* Prayer Request */
    .prayer-section { flex-shrink: 0; }
    .prayer-pill { width: 100%; background: #fff; border: 1.5px solid #fff; border-radius: 100px; padding: 0.75rem 1.25rem; font-family: var(--ui); font-size: 0.54rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #000; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; text-align: center; box-sizing: border-box; }
    .prayer-pill.active { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }
    .prayer-textarea-wrap { margin-top: 0.6rem; }
    .prayer-textarea { width: 100%; min-height: 72px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; color: #fff; font-size: 0.8rem; padding: 9px 11px; resize: none; box-sizing: border-box; font-family: inherit; line-height: 1.5; overflow: hidden; }
    .prayer-textarea::-webkit-scrollbar { display: none; }
    .prayer-textarea::placeholder { color: rgba(255,255,255,0.3); }
    .prayer-textarea:focus { outline: none; border-color: rgba(255,255,255,0.45); }
    .prayer-counter { text-align: right; font-size: 0.68rem; color: rgba(255,255,255,0.35); margin-top: 3px; letter-spacing: 0.04em; }
    /* Recommendations */
    .cart-rec-btn { width: 100%; height: 34px; background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; font-family: var(--ui); font-size: 0.54rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; margin-top: 0.5rem; transition: background 0.2s, transform 0.15s; }
    .cart-rec-btn:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }
    /* Subtotal */
    .cart-subtotal { display: flex; justify-content: space-between; align-items: center; }
    .cart-subtotal-left { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
    .cart-subtotal-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--w45); }
    .cart-subtotal-right { display: flex; align-items: baseline; gap: 0.5rem; }
    .cart-subtotal-compare { font-size: 0.82rem; color: var(--w45); text-decoration: line-through; }
    .cart-subtotal-amount { font-size: 1.35rem; font-weight: 800; color: var(--white); }
    /* Checkout button */
    .cart-checkout-btn { width: 100%; height: 54px; background: #fff; color: #000; border: none; border-radius: 100px; font-family: var(--ui); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: filter 0.2s, transform 0.15s; }
    .cart-checkout-btn:hover:not(:disabled) { filter: brightness(1.08); transform: translateY(-1px); }
    .cart-checkout-btn:disabled { opacity: 0.35; cursor: not-allowed; }
    /* Payment icons */
    .cart-payment-row { display: flex; align-items: center; justify-content: center; gap: 0.35rem; flex-wrap: wrap; padding-top: 0.1rem; }
    .cart-pay-icon { height: 22px; border-radius: 4px; display: block; opacity: 0.7; }

    @media (max-width: 768px) {
      /* Cart drawer — mobile */
      .cart-header { padding: 0.85rem 1rem 0.5rem; }
      .cart-title { font-size: 0.82rem; }
      .cart-close-btn svg { width: 18px; height: 18px; }
      .cart-items { padding: 0 1rem; }
      .cart-item { padding: 0.7rem 0; }
      .cart-item-img img { width: 76px; }
      .cart-item-name { font-size: 0.72rem; white-space: normal; line-height: 1.25; }
      .cart-item-variant { font-size: 0.5rem; }
      .cart-item-price-main { font-size: 0.88rem; }
      .cart-item-price-compare { font-size: 0.6rem; }
      .cart-qty-btn { width: 28px; height: 28px; font-size: 0.95rem; }
      .cart-qty-num { width: 24px; height: 28px; font-size: 0.7rem; }
      .cart-sub-pill { padding: 0.6rem 0.85rem; font-size: 0.5rem; }
      .cart-sub-dropdown button { font-size: 0.52rem; padding: 0.6rem 0.85rem; }
      .cart-ship-bar { padding: 0.35rem 1rem 0.6rem; }
      .cart-ship-track { height: 30px; }
      .cart-ship-status { font-size: 0.68rem; }
      .cart-flavors-section { padding: 0.65rem 1rem; }
      .cart-flavors-title { font-size: 0.56rem; }
      .cart-flavors-toggle { font-size: 0.44rem; }
      .cart-flavors-body { gap: 0.5rem; margin-top: 0.65rem; }
      .cart-flavor-card { width: 100px; }
      .cart-flavor-img-wrap { width: 84px; height: 84px; }
      .cart-flavor-img-wrap img { width: 84px; height: 84px; }
      .cart-flavor-add-btn { font-size: 0.42rem; padding: 0.32rem 0; }
      .cart-footer { padding: 0.8rem 1rem 1.25rem; gap: 0.6rem; }
      .cart-checkout-btn { height: 46px; font-size: 0.68rem; }
      .cart-subtotal-amount { font-size: 1.1rem; }
      .cart-subtotal-label { font-size: 0.56rem; }
      .cart-subtotal-compare { font-size: 0.72rem; }
      .prayer-pill { padding: 0.6rem 1rem; font-size: 0.5rem; }
      .prayer-textarea { font-size: 0.72rem; }
      .cart-pay-icon { height: 18px; }
      .cart-confirm-remove span { font-size: 0.56rem; }
      .cart-confirm-yes, .cart-confirm-no { font-size: 0.56rem; }
    }

    @media (max-width: 480px) {
      /* Cart drawer — small phones */
      .cart-header { padding: 0.75rem 0.85rem 0.45rem; }
      .cart-items { padding: 0 0.85rem; }
      .cart-item-img img { width: 66px; }
      .cart-item-name { font-size: 0.66rem; }
      .cart-footer { padding: 0.7rem 0.85rem 1rem; }
      .cart-flavors-body { gap: 0.35rem; }
      .cart-flavor-card { width: 88px; }
      .cart-flavor-img-wrap { width: 74px; height: 74px; }
      .cart-flavor-img-wrap img { width: 74px; height: 74px; }
      .cart-ship-bar { padding: 0.3rem 0.85rem 0.5rem; }
      .cart-ship-track { height: 26px; }
      .cart-ship-status { font-size: 0.6rem; }
    }
