/* Official cart — 1:1 reference match (desktop + mobile) */

.dpp-cart-page {
  --dpp-cart-accent: #6d28d9;
  --dpp-cart-accent-dark: #5b21b6;
  --dpp-cart-ink: #111111;
  --dpp-cart-muted: #6b7280;
  --dpp-cart-line: #e8e8ea;
  --dpp-cart-bg: #f7f7f8;
  --dpp-cart-card: #ffffff;
  --dpp-cart-green: #e8f5ec;
  --dpp-cart-green-text: #166534;
  --dpp-cart-radius: 12px;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--dpp-cart-bg);
  color: var(--dpp-cart-ink);
  width: 100%;
  min-height: 70vh;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.dpp-cart-page *,
.dpp-cart-page *::before,
.dpp-cart-page *::after {
  box-sizing: border-box;
}

.dpp-cart-shell {
  width: min(1680px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

.dpp-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(22px, 2.4vw, 36px);
  align-items: start;
}

/* ——— Header ——— */
.dpp-cart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
}

.dpp-cart-title {
  margin: 0;
  font-size: clamp(1.75rem, 2.4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111111;
  line-height: 1.15;
}

.dpp-cart-continue-link {
  color: var(--dpp-cart-accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.dpp-cart-continue-link:hover {
  text-decoration: underline;
}

/* ——— Free shipping progress ——— */
.dpp-cart-ship-progress {
  background: var(--dpp-cart-card);
  border: 1px solid var(--dpp-cart-line);
  border-radius: var(--dpp-cart-radius);
  padding: 14px 16px 12px;
  margin-bottom: 12px;
}

.dpp-cart-ship-progress-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.dpp-cart-ship-ico {
  color: var(--dpp-cart-accent);
  display: inline-flex;
  flex: 0 0 auto;
}

.dpp-cart-ship-msg {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--dpp-cart-accent);
  line-height: 1.35;
}

.dpp-cart-ship-track-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dpp-cart-ship-track {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 10px;
  border-radius: 999px;
  background: #efe7ff;
  overflow: hidden;
}

.dpp-cart-ship-track.is-compact {
  height: 8px;
}

.dpp-cart-ship-bar {
  height: 100%;
  border-radius: inherit;
  background: var(--dpp-cart-accent);
  transition: width 0.35s ease;
}

.dpp-cart-ship-fraction {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  white-space: nowrap;
}

.dpp-cart-ship-fraction-sep {
  color: #9ca3af;
  font-weight: 600;
}

.dpp-cart-ship-lock {
  display: inline-flex;
  color: var(--dpp-cart-accent);
  margin-left: 2px;
  opacity: 0.8;
}

.dpp-cart-ship-scale {
  display: none;
}

/* ——— Green notice ——— */
.dpp-cart-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--dpp-cart-green);
  border: 1px solid #cfe8d6;
  margin-bottom: 14px;
}

.dpp-cart-notice-ico {
  color: #15803d;
  margin-top: 1px;
  flex: 0 0 auto;
}

.dpp-cart-notice p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--dpp-cart-green-text);
}

/* ——— Product table ——— */
.dpp-cart-table-wrap {
  background: var(--dpp-cart-card);
  border: 1px solid var(--dpp-cart-line);
  border-radius: var(--dpp-cart-radius);
  overflow: hidden;
}

.dpp-cart-table-head {
  display: grid;
  grid-template-columns: 76px minmax(160px, 1.7fr) 0.75fr 0.95fr 0.75fr minmax(200px, 1.55fr) 40px;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--dpp-cart-line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  background: #fafafa;
}

.dpp-cart-table-head span:first-child {
  grid-column: 1 / 3;
}

.dpp-cart-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dpp-cart-line {
  display: grid;
  grid-template-columns: 76px minmax(160px, 1.7fr) 0.75fr 0.95fr 0.75fr minmax(200px, 1.55fr) 40px;
  gap: 10px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--dpp-cart-line);
}

.dpp-cart-line:last-child {
  border-bottom: 0;
}

.dpp-cart-line-thumb {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  background: #f3f3f3 center/cover no-repeat;
  flex: 0 0 auto;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.dpp-cart-line-info {
  min-width: 0;
}

.dpp-cart-line-info-top {
  display: block;
}

.dpp-cart-line-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dpp-cart-ink);
  text-decoration: none;
  line-height: 1.35;
}

.dpp-cart-line-title:hover {
  color: var(--dpp-cart-accent);
}

.dpp-cart-line-meta {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--dpp-cart-muted);
  line-height: 1.35;
}

.dpp-cart-line-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.dpp-cart-line-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  background: #f3f4f6;
  border-radius: 999px;
  padding: 3px 8px;
  line-height: 1.2;
}

.dpp-cart-line-price,
.dpp-cart-line-total {
  font-size: 14px;
  font-weight: 700;
}

.dpp-cart-line-price--in-info {
  display: none;
}

.dpp-cart-line-price--col {
  display: block;
}

.dpp-cart-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dpp-cart-line);
  border-radius: 999px;
  overflow: visible;
  background: #fff;
  height: 36px;
  min-height: 36px;
  box-sizing: border-box;
}

.dpp-cart-qty button {
  width: 34px;
  height: 36px;
  min-height: 36px;
  border: 0;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: var(--dpp-cart-ink);
  line-height: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.dpp-cart-qty input {
  width: 36px;
  height: 36px;
  min-height: 36px;
  border: 0;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 36px;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: none;
  direction: ltr;
  unicode-bidi: isolate;
  background: transparent;
  color: var(--dpp-cart-ink);
  box-sizing: border-box;
  vertical-align: middle;
}

.dpp-cart-qty input::-webkit-outer-spin-button,
.dpp-cart-qty input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

/* Delivery estimate */
.dpp-cart-line-delivery {
  min-width: 0;
}

.dpp-cart-delivery-pill {
  --dpp-del-bg: #fff4e8;
  --dpp-del-date: #c2410c;
  --dpp-del-label: #8a5a2b;
  --dpp-del-method: #6b7280;
  --dpp-del-info: #4b5563;
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px 12px 11px;
  border-radius: 10px;
  background: var(--dpp-del-bg);
  border: 0;
  box-shadow: none;
  margin: 0;
}

.dpp-cart-delivery-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 3px;
}

.dpp-cart-delivery-truck {
  color: #374151;
  display: inline-flex;
  flex: 0 0 auto;
  line-height: 0;
}

.dpp-cart-delivery-truck svg {
  display: block;
  width: 14px;
  height: 14px;
}

.dpp-cart-delivery-kicker {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dpp-del-label);
  font-weight: 700;
  line-height: 1.2;
}

.dpp-cart-delivery-dates-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
  width: 100%;
}

.dpp-cart-delivery-dates {
  margin: 0;
  padding: 0;
  font-family: "Libre Baskerville", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dpp-del-date);
  line-height: 1.3;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.dpp-cart-delivery-method {
  display: block;
  margin: 2px 0 0;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 12px;
  color: var(--dpp-del-method);
  font-weight: 500;
  line-height: 1.3;
}

/* Plain text "?" — never a circled icon */
.dpp-cart-delivery-info {
  all: unset;
  cursor: pointer;
  display: inline;
  margin: 0;
  padding: 0;
  color: var(--dpp-del-info);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  vertical-align: baseline;
}

.dpp-cart-delivery-info::before,
.dpp-cart-delivery-info::after,
.dpp-cart-delivery-info svg,
.dpp-cart-delivery-info i,
.dpp-cart-delivery-info img {
  display: none !important;
  content: none !important;
}

.dpp-cart-delivery-info:hover,
.dpp-cart-delivery-info:focus-visible {
  color: #111;
  text-decoration: underline;
  outline: none;
}

.dpp-cart-remove {
  border: 0;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dpp-cart-remove:hover {
  color: #b91c1c;
  background: #fef2f2;
}

.dpp-cart-empty {
  padding: 48px 24px;
  text-align: center;
}

.dpp-cart-empty p {
  margin: 0 0 16px;
  color: var(--dpp-cart-muted);
}

/* ——— Trust row (reference: line icons, equal cards, no break) ——— */
.dpp-cart-trust {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 10px;
  align-items: stretch;
}

.dpp-cart-trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dpp-cart-card);
  border: 1px solid var(--dpp-cart-line);
  border-radius: 10px;
  padding: 14px 12px;
  min-width: 0;
  width: 100%;
  min-height: 84px;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.03);
}

.dpp-cart-trust-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-top: 0;
  margin-right: 2px;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
}

.dpp-cart-trust-icon svg,
.dpp-cart-trust svg {
  display: block;
  width: 22px;
  height: 22px;
  color: inherit;
  flex-shrink: 0;
}

.dpp-cart-trust-copy {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.dpp-cart-trust strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dpp-cart-trust span {
  margin-top: 0;
  font-size: 11px;
  color: var(--dpp-cart-muted);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ——— Sidebar ——— */
.dpp-cart-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
}

.dpp-cart-summary,
.dpp-cart-side-card {
  background: var(--dpp-cart-card);
  border: 1px solid var(--dpp-cart-line);
  border-radius: var(--dpp-cart-radius);
  padding: 18px;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
}

.dpp-cart-summary h2,
.dpp-cart-side-card h3 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  color: #111;
}

.dpp-cart-summary-rows {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.dpp-cart-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.dpp-cart-summary-row.is-savings strong {
  color: var(--dpp-cart-savings, #15803d);
}

.dpp-cart-summary-row.is-total {
  padding-top: 12px;
  border-top: 1px solid var(--dpp-cart-line);
  margin-top: 4px;
}

.dpp-cart-summary-row.is-total span,
.dpp-cart-summary-row.is-total strong {
  color: var(--dpp-cart-accent);
  font-size: 1.2rem;
  font-weight: 800;
}

.dpp-cart-installments {
  margin: 0 0 14px;
  font-size: 12px;
  color: var(--dpp-cart-muted);
  line-height: 1.4;
}

.dpp-cart-docs {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.dpp-cart-docs a {
  color: var(--dpp-cart-accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.dpp-cart-docs a:hover {
  text-decoration: underline;
}

.dpp-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dpp-cart-btn-primary {
  background: #111;
  color: #fff;
  border-color: #111;
  margin-bottom: 10px;
}

.dpp-cart-btn-primary:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.dpp-cart-btn-ghost {
  background: #fff;
  color: var(--dpp-cart-accent);
  border-color: var(--dpp-cart-accent);
}

.dpp-cart-btn-ghost:hover {
  background: #f5f3ff;
}

.dpp-cart-pay {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--dpp-cart-line);
}

.dpp-cart-pay-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
}

.dpp-cart-pay img,
.dpp-cart-pay .dpp-cart-pay-strip img,
.dpp-cart-pay .dpp-pay-icon img {
  max-width: 100%;
  height: auto;
  max-height: 22px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: none;
}
.dpp-cart-pay .dpp-pay-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dpp-cart-pay .dpp-pay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  min-height: 0;
  line-height: 0;
}

.dpp-cart-side-card p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--dpp-cart-muted);
}

.dpp-cart-side-card a {
  font-size: 13px;
  font-weight: 700;
  color: var(--dpp-cart-accent);
  text-decoration: none;
}

/* ——— Brand bar ——— */
.dpp-cart-brand-bar {
  list-style: none;
  margin: 24px 0 0;
  padding: 18px 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  background: var(--dpp-cart-card);
  border: 1px solid var(--dpp-cart-line);
  border-radius: var(--dpp-cart-radius);
  text-align: center;
  align-items: start;
}

.dpp-cart-brand-bar li {
  min-width: 0;
  padding: 4px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.dpp-cart-brand-ico {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #f3e8ff;
  color: var(--dpp-cart-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dpp-cart-brand-ico svg {
  display: block;
  width: 18px;
  height: 18px;
}

.dpp-cart-brand-bar strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.dpp-cart-brand-bar span {
  display: block;
  font-size: 12px;
  color: var(--dpp-cart-muted);
  line-height: 1.35;
}

/* ——— Recs ——— */
.dpp-cart-recs {
  margin-top: 36px;
}

.dpp-cart-recs .dpp-personal-feed {
  width: 100%;
  max-width: none;
  margin: 0;
}

.dpp-cart-mobile-ship {
  display: none;
}

.dpp-cart-delivery-dialog {
  border: 0;
  border-radius: 14px;
  padding: 0;
  max-width: 420px;
  width: calc(100% - 32px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.dpp-cart-delivery-dialog::backdrop {
  background: rgba(17, 17, 17, 0.45);
}

.dpp-cart-delivery-dialog form {
  padding: 22px;
}

.dpp-cart-delivery-dialog h3 {
  margin: 0 0 8px;
}

.dpp-cart-delivery-dialog p {
  margin: 0 0 16px;
  color: var(--dpp-cart-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* ——— Responsive ——— */
@media (max-width: 1280px) {
  .dpp-cart-shell {
    width: calc(100% - 36px);
  }

  .dpp-cart-table-head,
  .dpp-cart-line {
    grid-template-columns: 68px minmax(140px, 1.5fr) 0.7fr 0.85fr 0.7fr minmax(180px, 1.4fr) 36px;
  }

  .dpp-cart-line-thumb {
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 1100px) {
  .dpp-cart-layout {
    grid-template-columns: 1fr;
  }

  .dpp-cart-aside {
    position: static;
  }

  .dpp-cart-brand-bar,
  .dpp-cart-trust {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .dpp-cart-shell {
    width: calc(100% - 20px);
    padding: 10px 0 96px;
  }

  .dpp-cart-layout {
    display: flex;
    flex-direction: column;
  }

  .dpp-cart-main {
    display: contents;
  }

  .dpp-cart-main-top {
    order: 1;
  }

  .dpp-cart-aside {
    order: 2;
  }

  .dpp-cart-trust {
    order: 3;
    margin-top: 12px;
  }

  .dpp-cart-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 10px;
  }

  .dpp-cart-title {
    font-size: 1.55rem;
  }

  .dpp-cart-continue-link {
    font-size: 13px;
  }

  .dpp-cart-ship-progress {
    padding: 12px;
    margin-bottom: 10px;
  }

  .dpp-cart-ship-track-row {
    display: none;
  }

  .dpp-cart-ship-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dpp-cart-muted);
  }

  .dpp-cart-notice {
    margin-bottom: 10px;
    padding: 11px 12px;
  }

  .dpp-cart-table-head {
    display: none;
  }

  .dpp-cart-table-wrap {
    background: transparent;
    border: 0;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
  }

  .dpp-cart-lines {
    display: grid;
    gap: 12px;
  }

  /*
   * Mobile: each line is a distinct white card
   * thumb | title + price
   *       | qty ........ trash
   * delivery (full width)
   */
  .dpp-cart-line {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) auto;
    grid-template-areas:
      "thumb info info"
      "thumb qty remove"
      "delivery delivery delivery";
    column-gap: 12px;
    row-gap: 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid var(--dpp-cart-line);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(17, 17, 17, 0.04);
  }

  .dpp-cart-line:last-child {
    border-bottom: 1px solid var(--dpp-cart-line);
  }

  .dpp-cart-line-thumb {
    grid-area: thumb;
    width: 84px !important;
    height: 84px !important;
    border-radius: 10px;
  }

  .dpp-cart-line-info {
    grid-area: info;
    min-width: 0;
  }

  .dpp-cart-line-info-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  .dpp-cart-line-title {
    flex: 1;
    min-width: 0;
    font-size: 14px;
  }

  .dpp-cart-line-price--col,
  .dpp-cart-line-total {
    display: none !important;
  }

  .dpp-cart-line-price--in-info {
    display: block !important;
    margin: 0;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    text-align: right;
  }

  .dpp-cart-line-qty {
    grid-area: qty;
    justify-self: start;
    align-self: center;
  }

  .dpp-cart-qty {
    height: 38px;
    min-height: 38px;
  }

  .dpp-cart-qty button {
    width: 36px;
    height: 38px;
    min-height: 38px;
  }

  .dpp-cart-qty input {
    width: 38px;
    height: 38px;
    min-height: 38px;
    line-height: 38px;
    font-size: 15px;
  }

  .dpp-cart-line-remove {
    grid-area: remove;
    justify-self: end;
    align-self: center;
  }

  .dpp-cart-line-delivery {
    grid-area: delivery;
    width: 100%;
  }

  .dpp-cart-delivery-pill {
    padding: 11px 12px;
    border-radius: 10px;
  }

  .dpp-cart-trust {
    margin-top: 16px;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: 1fr;
    gap: 10px;
    align-items: stretch;
    justify-items: stretch;
  }

  .dpp-cart-trust li {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 92px;
    height: 100%;
    padding: 12px;
    gap: 10px;
    align-items: center;
    box-sizing: border-box;
  }

  .dpp-cart-trust-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    color: #6b7280;
  }

  .dpp-cart-trust-icon svg,
  .dpp-cart-trust svg {
    width: 20px;
    height: 20px;
  }

  .dpp-cart-trust-copy {
    min-width: 0;
    flex: 1 1 auto;
  }

  .dpp-cart-trust strong {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dpp-cart-trust span {
    font-size: 10px;
    -webkit-line-clamp: 2;
  }

  .dpp-cart-brand-bar {
    margin-top: 14px;
    padding: 14px 6px;
    grid-template-columns: 1fr 1fr;
    gap: 14px 8px;
  }

  .dpp-cart-aside {
    margin-top: 6px;
  }

  .dpp-cart-summary,
  .dpp-cart-side-card {
    box-shadow: none;
  }

  .dpp-cart-mobile-ship {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--dpp-cart-line);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
  }

  .dpp-cart-mobile-ship p {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--dpp-cart-accent);
    text-align: center;
  }

  body.dpp-cart-island-active {
    padding-bottom: 72px;
  }
}

@media (max-width: 520px) {
  .dpp-cart-line {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    padding: 12px;
  }

  .dpp-cart-line-thumb {
    width: 76px !important;
    height: 76px !important;
  }

  .dpp-cart-trust li {
    min-height: 84px;
  }
}

@media (min-width: 1600px) {
  .dpp-cart-shell {
    width: min(1760px, calc(100% - 64px));
  }
}
