
  /* ============ CART STEPPER ============ */
  .cart-stepper-wrap {
    background: var(--white);
    border-bottom: 1px solid rgba(26,23,20,0.06);
    padding: 22px 0;
  }
  .cart-stepper {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .cart-stepper li {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.5);
    position: relative;
  }
  .cart-stepper li + li::before {
    content: "";
    width: 24px;
    height: 1px;
    background: rgba(26,23,20,0.2);
    margin-right: 12px;
  }
  .cart-stepper .cart-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    border: 1px solid rgba(26,23,20,0.25);
    color: rgba(26,23,20,0.5);
    font-size: 10px;
  }
  .cart-stepper li.is-active { color: var(--ink); }
  .cart-stepper li.is-active .cart-step-num {
    border-color: var(--ink);
    color: var(--ink);
    background: var(--ink);
    color: var(--white);
  }
  @media (max-width: 700px) {
    .cart-stepper { gap: 10px; }
    .cart-stepper li { font-size: 9.5px; gap: 8px; }
    .cart-stepper li + li::before { width: 12px; margin-right: 4px; }
    .cart-stepper .cart-step-label { display: none; }
    .cart-stepper li.is-active .cart-step-label { display: inline; }
  }

  /* ============ CART HEAD ============ */
  .cart-head {
    padding: 56px 0 36px;
    background: var(--white);
  }
  .cart-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 14px;
  }
  .cart-h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.01em;
  }
  .cart-h1 em { font-style: italic; color: var(--gold); }
  .cart-head-meta {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.8);
  }
  .cart-head-meta b {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    margin-right: 2px;
  }
  .cart-head-meta .sep { color: var(--gold); opacity: 0.5; }

  /* ============ CART MAIN ============ */
  .cart-main {
    padding: 0 0 100px;
    background: var(--white);
  }
  .cart-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
  }
  @media (max-width: 1000px) {
    .cart-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ============ ITEMS ============ */
  .cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 132px 1fr auto;
    gap: 32px;
    padding: 32px 0;
    border-top: 1px solid rgba(26,23,20,0.18);
    border-bottom: 1px solid rgba(26,23,20,0.10);
    align-items: center;
  }
  .cart-item + .cart-item { border-top: 0; }

  .cart-item-img {
    aspect-ratio: 1/1;
    background: var(--cream);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(26,23,20,0.08);
    display: block;
  }
  .cart-item-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s ease;
  }
  .cart-item-img:hover img { transform: scale(1.04); }
  .cart-item-tag {
    position: absolute;
    top: 8px; left: 8px;
    font-family: "Geist Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(255,255,255,0.92);
    padding: 4px 7px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(26,23,20,0.08);
  }

  /* info column - quiet, hierarchical, one line of specs */
  .cart-item-info { min-width: 0; }
  .cart-item-meta {
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.55);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .cart-item-meta .dot { color: rgba(26,23,20,0.25); }
  .cart-item-name {
    display: block;
    margin-top: 6px;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    color: var(--ink);
    text-decoration: none;
    transition: color .2s;
  }
  .cart-item-name:hover { color: var(--gold); }
  .cart-item-summary {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(26,23,20,0.72);
  }
  .cart-item-size {
    margin-top: 8px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 10px;
  }

  /* desktop default: show the long service text, hide the short one */
  .cart-item-service-short { display: none; }
  .cart-item-service-long { display: inline; }
  .cart-item-size-label {
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.55);
  }
  .cart-item-size-value {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 18px;
    color: var(--ink);
    line-height: 1;
  }
  .cart-item-size-tag {
    font-family: "Geist Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 3px 8px;
    border: 1px solid var(--gold);
    line-height: 1;
  }
  .cart-item-service {
    margin-top: 14px;
    font-family: "Geist Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.62);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .cart-item-service svg { color: var(--gold); flex-shrink: 0; }

  /* right column - price on top, qty below, quiet "Einzelstück" caption */
  .cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    text-align: right;
  }
  .cart-item-price {
    font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
    font-style: normal;
    font-size: 16px;
    color: var(--ink);
    line-height: 1;
  }
  .cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(26,23,20,0.18);
    background: var(--white);
  }
  .cart-qty-btn {
    width: 34px; height: 38px;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: "Geist", sans-serif;
    font-size: 17px;
    color: var(--ink);
    transition: background .2s, color .2s;
  }
  .cart-qty-btn:hover:not(:disabled) { background: var(--cream); color: var(--gold); }
  .cart-qty-btn:disabled { color: rgba(26,23,20,0.3); cursor: not-allowed; }
  .cart-qty-input {
    width: 38px; height: 38px;
    border: 0;
    text-align: center;
    background: transparent;
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    font-style: italic;
    color: var(--ink);
    -moz-appearance: textfield;
    border-left: 1px solid rgba(26,23,20,0.10);
    border-right: 1px solid rgba(26,23,20,0.10);
  }
  .cart-qty-input::-webkit-outer-spin-button,
  .cart-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
  .cart-qty-note {
    font-family: "Geist Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.5);
  }
  /* single-piece badge replacing the obsolete stepper */
  .cart-qty-single {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.8);
    border: 1px solid rgba(26,23,20,0.18);
    background: var(--white);
    padding: 9px 14px;
    white-space: nowrap;
  }
  .cart-qty-single::before {
    content: "";
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* single remove button, top-right of the card */
  .cart-item-remove {
    position: absolute;
    top: 18px; right: 0;
    width: 24px; height: 24px;
    border: 0;
    background: transparent;
    color: rgba(26,23,20,0.4);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color .2s, background .2s;
  }
  .cart-item-remove:hover { color: #a04444; background: rgba(160,68,68,0.06); }

  @media (max-width: 760px) {
    /* compact cart head - title, meta and stepper all rebalanced */
    .cart-head { padding: 28px 0 22px; }
    .cart-h1 { font-size: 26px; line-height: 1.1; }
    .cart-head-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      margin-top: 10px;
    }
    .cart-head-meta { font-size: 10px; gap: 8px; }
    .cart-head-meta b { font-size: 17px; }

    /* item card */
    .cart-item {
      grid-template-columns: 96px 1fr;
      grid-template-areas:
        "img  info"
        "right right";
      column-gap: 14px;
      row-gap: 18px;
      padding: 22px 0;
    }
    .cart-item-img { grid-area: img; }
    .cart-item-info { grid-area: info; padding-right: 26px; min-width: 0; }
    .cart-item-right {
      grid-area: right;
      /* row-reverse: price (first in markup) sits right, qty / "Einzelstück" left */
      flex-direction: row-reverse;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      gap: 12px;
      padding-top: 4px;
    }
    /* mobile meta: only show the category, drop the SKU + separator */
    .cart-item-meta { font-size: 9px; letter-spacing: 0.16em; }
    .cart-item-meta .dot,
    .cart-item-meta .cart-item-sku { display: none; }

    .cart-item-name { font-size: 22px; margin-top: 4px; }
    .cart-item-summary { font-size: 13px; line-height: 1.5; margin-top: 8px; }
    .cart-item-size { margin-top: 6px; gap: 4px 8px; }
    .cart-item-size-value { font-size: 16px; }
    .cart-item-size-tag {
      font-size: 8.5px;
      letter-spacing: 0.14em;
      padding: 2px 5px;
    }

    /* swap service text to short form */
    .cart-item-service { font-size: 9.5px; letter-spacing: 0.12em; margin-top: 10px; }
    .cart-item-service-long { display: none; }
    .cart-item-service-short { display: inline; }

    .cart-item-remove { top: 8px; right: -4px; }

    /* coupon + continue */
    .cart-belt {
      flex-direction: column;
      align-items: stretch;
      gap: 20px;
      margin-top: 22px;
    }
    .cart-coupon-field { flex-wrap: nowrap; }
    .cart-coupon-field input { min-width: 0; flex: 1; }
    .cart-continue { align-self: flex-start; }

    /* totals + help */
    .cart-totals-card { padding: 24px 22px 22px; }
    .cart-help { padding: 20px 22px; }
    .cart-help a { font-size: 22px; }

    /* main padding tighter */
    .cart-main { padding: 0 0 60px; }
    .cart-grid { gap: 28px; }
  }

  /* belt: coupon + continue */
  .cart-belt {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
  }
  .cart-coupon label {
    display: block;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.55);
    margin-bottom: 8px;
  }
  .cart-coupon-field {
    display: flex;
    gap: 8px;
  }
  .cart-coupon-field input {
    flex: 1;
    min-width: 200px;
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 14px;
    border: 1px solid rgba(26,23,20,0.2);
    background: var(--white);
    color: var(--ink);
    transition: border-color .2s;
  }
  .cart-coupon-field input:focus { outline: none; border-color: var(--gold); }
  .cart-coupon-field button {
    padding: 12px 18px;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--ink);
    cursor: pointer;
    font-family: "Geist", sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background .2s, color .2s;
  }
  .cart-coupon-field button:hover {
    background: var(--ink);
    color: var(--white);
  }
  .cart-continue {
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color .2s, gap .25s ease;
  }
  .cart-continue:hover { color: var(--gold); gap: 18px; }

  /* ============ TOTALS ============ */
  .cart-totals { position: sticky; top: 32px; }
  @media (max-width: 1000px) { .cart-totals { position: static; } }
  .cart-totals-card {
    background: var(--cream);
    border: 1px solid rgba(26,23,20,0.10);
    padding: 32px 30px 28px;
  }
  .cart-totals-list {
    margin: 18px 0 0;
    padding: 0;
    border-top: 1px solid rgba(26,23,20,0.12);
  }
  .cart-totals-list > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(26,23,20,0.08);
  }
  .cart-totals-list dt {
    font-size: 14px;
    color: var(--ink);
  }
  .cart-totals-list dt small {
    display: block;
    margin-top: 2px;
    font-family: "Geist Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.55);
  }
  .cart-totals-list dd {
    margin: 0;
    font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
    font-style: normal;
    font-size: 16px;
    color: var(--ink);
  }
  .cart-totals-list dd.is-free {
    color: #4a8c4a;
    font-style: normal;
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .cart-totals-sum {
    margin-top: 6px;
    padding: 20px 0 22px;
    border-bottom: 1px solid rgba(26,23,20,0.10);
  }
  .cart-totals-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
  }
  /* direct-child only - must not catch the price amount spans nested in <strong> */
  .cart-totals-sum-row > span {
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .cart-totals-sum-row strong {
    font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
    font-style: normal;
    font-size: 20px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
  }
  .cart-totals-sum small {
    display: block;
    margin-top: 10px;
    font-family: "Geist Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.55);
    line-height: 1.5;
  }

  .cart-checkout-btn {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
    padding: 18px 26px;
    font-size: 13px;
  }

  .cart-paymethods {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(26,23,20,0.10);
  }
  .cart-paymethods-label {
    display: block;
    font-family: "Geist Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.55);
    margin-bottom: 10px;
  }
  .cart-paymethods ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .pay-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(26,23,20,0.18);
    background: var(--white);
    font-family: "Geist Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.14em;
    color: rgba(26,23,20,0.78);
  }
  .pay-visa { color: #1a1f71; border-color: rgba(26,31,113,0.3); }
  .pay-mc { color: #b8002b; border-color: rgba(184,0,43,0.3); }
  .pay-amex { color: #1a4ca8; border-color: rgba(26,76,168,0.3); }
  .pay-pp { color: #003087; border-color: rgba(0,48,135,0.3); }
  .pay-ap { color: #111; }

  .cart-trust {
    margin: 22px 0 0;
    padding: 18px 0 0;
    list-style: none;
    border-top: 1px solid rgba(26,23,20,0.10);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cart-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Geist Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.75);
  }
  .cart-trust svg { color: var(--gold); flex-shrink: 0; }

  /* light variant - the checkout button is the only dark element on this page */
  .cart-help {
    margin-top: 22px;
    background: var(--white);
    color: var(--ink);
    border: 1px solid rgba(26,23,20,0.12);
    padding: 24px 24px 22px;
    text-align: center;
  }
  .cart-help small {
    display: block;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-text, #8b6f3f);
    margin-bottom: 4px;
  }
  .cart-help a {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 24px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s, color .2s;
  }
  .cart-help a:hover { border-color: var(--gold); color: var(--gold-text, #8b6f3f); }
  .cart-help span {
    display: block;
    margin-top: 4px;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.8);
  }

  /* ============ CROSS-SELL ============ */
  .cart-cross {
    background: var(--cream);
    padding: 100px 0;
    overflow: hidden;
  }

  /* On mobile: same horizontal-slider behavior as home "Neu im Haus" */
  @media (max-width: 760px) {
    .cart-cross .new-grid {
      display: flex !important;
      grid-template-columns: none;
      gap: 14px;
      overflow-x: auto;
      overflow-y: visible;
      scroll-snap-type: x mandatory;
      padding: 4px 0 18px;
      margin-right: -24px;
      padding-right: 24px;
      scrollbar-width: thin;
      scrollbar-color: rgba(26,23,20,0.25) transparent;
    }
    .cart-cross .new-grid::-webkit-scrollbar { height: 6px; }
    .cart-cross .new-grid::-webkit-scrollbar-track { background: transparent; }
    .cart-cross .new-grid::-webkit-scrollbar-thumb {
      background: rgba(26,23,20,0.18);
      border-radius: 3px;
    }
    .cart-cross .new-grid > .new-card {
      flex: 0 0 78vw;
      max-width: 320px;
      scroll-snap-align: start;
    }
  }
  .pdp-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }
  .pdp-section-h {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    margin-top: 14px;
  }
  .pdp-section-h em { color: var(--gold); font-style: italic; }

  /* new-card reused */
  .new-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .new-card {
    background: var(--white);
    border: 1px solid rgba(26,23,20,0.10);
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease, border-color .25s ease;
  }
  .new-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px -28px rgba(26,23,20,0.22);
    border-color: var(--gold);
  }
  .new-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--cream);
    overflow: hidden;
    border-bottom: 1px solid rgba(26,23,20,0.08);
  }
  .new-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .new-card:hover .new-media img { transform: scale(1.04); }
  .new-media-tag {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    font-family: "Geist Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(255,255,255,0.92);
    padding: 5px 9px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(26,23,20,0.08);
  }
  .new-body { padding: 22px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .new-body h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.005em;
  }
  .new-spec { font-size: 13px; line-height: 1.45; color: rgba(26,23,20,0.68); }
  .new-foot {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(26,23,20,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .new-price {
    font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
    font-style: normal;
    font-size: 16px;
    color: var(--ink);
  }
  .new-cta {
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .25s ease, color .2s;
  }
  .new-card:hover .new-cta { gap: 14px; color: var(--gold); }
  .home-section-link {
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color .2s, gap .25s ease;
  }
  .home-section-link:hover { color: var(--gold); gap: 18px; }
  @media (max-width: 1000px) { .new-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .new-grid { grid-template-columns: 1fr; } }

  /* ============ breadcrumb (shared with PDP) ============ */
  .pdp-breadcrumb {
    background: var(--white);
    border-bottom: 1px solid rgba(26,23,20,0.06);
    padding: 18px 0;
  }
  .pdp-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    list-style: none;
    padding: 0; margin: 0;
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.55);
  }
  .pdp-breadcrumb a { color: rgba(26,23,20,0.7); text-decoration: none; transition: color .2s; }
  .pdp-breadcrumb a:hover { color: var(--gold); }
  .pdp-breadcrumb .sep { color: rgba(26,23,20,0.3); }
  .pdp-breadcrumb [aria-current="page"] { color: var(--ink); }

  /* sg2 additions */
  /* cart page renders through page.php - neutralize its inner container,
     title and top padding so the breadcrumb sits flush under the header like
     the shop and product templates (which don't use .sg2-content) */
  .woocommerce-cart .sg2-content { padding-top: 0; }
  .woocommerce-cart .sg2-content > .container { max-width: none; padding: 0; }
  .woocommerce-cart .sg2-content .sg2-content-title { display: none; }

  .sg2-visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* WC item meta (variations, Germanized info) inside the info column */
  .cart-item-info dl.variation {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 10px;
    margin-top: 8px;
    font-size: 13px;
    color: rgba(26,23,20,0.7);
  }
  .cart-item-info dl.variation dt { font-weight: 500; }
  .cart-item-info dl.variation dd { margin: 0; }
  .cart-item-info dl.variation dd p { display: inline; }
  .cart-item-info .backorder_notification {
    margin-top: 8px;
    font-size: 12px;
    color: var(--burgundy);
  }

  /* coupon row in the totals list */
  .cart-totals-coupon dd .woocommerce-remove-coupon {
    display: inline-block;
    margin-left: 6px;
    font-size: 11px;
    color: #a04444;
    text-decoration: none;
  }
  .cart-totals-coupon dd .woocommerce-remove-coupon:hover { text-decoration: underline; }

  /* notices (added to cart, coupon applied/removed, errors) */
  /* the notice is focused programmatically (tabindex=-1) - drop the browser's
     blue focus ring; it is not keyboard-reachable so a11y stays intact */
  .woocommerce-cart .woocommerce-message:focus,
  .woocommerce-cart .woocommerce-message:focus-visible,
  .woocommerce-cart .woocommerce-info:focus,
  .woocommerce-cart .woocommerce-error:focus,
  .woocommerce-cart .woocommerce-notices-wrapper [tabindex="-1"]:focus { outline: none; box-shadow: none; }

  .woocommerce-cart .woocommerce-error,
  .woocommerce-cart .woocommerce-message,
  .woocommerce-cart .woocommerce-info {
    list-style: none;
    margin: 0 0 28px;
    padding: 14px 18px;
    border: 1px solid rgba(26,23,20,0.15);
    border-left: 2px solid var(--gold);
    background: var(--cream);
    font-size: 14px;
  }
  .woocommerce-cart .woocommerce-error { border-left-color: #a04444; }
  .woocommerce-cart .woocommerce-error li { margin: 0; }

  /* drop WooCommerce's icon-font glyph before the message text */
  .woocommerce-cart .woocommerce-message::before,
  .woocommerce-cart .woocommerce-info::before,
  .woocommerce-cart .woocommerce-error::before { display: none; }

  /* added-to-cart message: text left, action right */
  .woocommerce-cart .woocommerce-message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 20px;
    flex-wrap: wrap;
    line-height: 1.4;
  }
  /* "Einkauf fortsetzen" stays a quiet outline action - only "Zur Kasse" is black */
  .woocommerce-cart .woocommerce-message .button.wc-forward {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(26,23,20,0.28);
    font-family: "Geist Mono", ui-monospace, monospace;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 10px 18px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .woocommerce-cart .woocommerce-message .button.wc-forward:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold-text, #8b6f3f);
  }

  /* empty cart */
  .cart-empty { padding: 8px 0 80px; max-width: 560px; }
  .cart-empty-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    line-height: 1.45;
    color: rgba(26,23,20,0.75);
    margin-bottom: 32px;
  }

  /* ============ Sticky checkout bar (sg2 additions) ============ */
  .cart-sticky {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: var(--white);
    border-top: 1px solid rgba(26,23,20,0.10);
    box-shadow: 0 -8px 24px rgba(26,23,20,0.08);
    z-index: 90;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .cart-sticky.is-visible { transform: translateY(0); }
  .cart-sticky-inner {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .cart-sticky-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
  }
  .cart-sticky-label {
    font-family: "Geist Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.55);
  }
  .cart-sticky-total {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 22px;
    color: var(--ink);
  }
  .cart-sticky-total .woocommerce-Price-amount { white-space: nowrap; }
  .cart-sticky-btn {
    flex-shrink: 0;
    padding: 14px 26px;
    font-size: 12px;
  }
  @media (max-width: 600px) {
    .cart-sticky-inner { padding: 10px 0; }
    .cart-sticky-total { font-size: 19px; }
    .cart-sticky-btn { padding: 13px 20px; font-size: 11px; }
  }

/* Cormorant headlines at weight 500 (see base.css tail note). */
.cart-h1,
.cart-item-name,
.pdp-section-h,
.new-body h3 {
  font-weight: 500;
}

/* Tracking wrappers: GTM4WP keys remove_from_cart on .product-remove and reads the
   amount from .product-quantity. Both are markup hooks only - display:contents keeps
   the children laid out exactly as before, including the absolutely positioned remove
   button, which resolves against .cart-item either way. */
.product-remove,
.product-quantity { display: contents; }
