
  /* ============ breadcrumb (shared) ============ */
  .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); }

  /* ============ CATEGORY HERO ============ */
  .shop-hero {
    padding: 70px 0 40px;
    background: var(--white);
  }
  @media (max-width: 900px) {
    .shop-hero { padding-top: 20px; padding-bottom: 28px; }
  }
  .shop-h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 5.4vw, 80px);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.015em;
    margin-top: 24px;
  }
  .shop-h1 em { font-style: italic; color: var(--gold); }
  .shop-lead {
    margin-top: 24px;
    max-width: 640px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(18px, 1.3vw, 21px);
    line-height: 1.5;
    color: rgba(26,23,20,0.78);
  }

  /* sub-category pills */
  .shop-subnav {
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .shop-subnav a {
    display: inline-flex;
    padding: 9px 16px;
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border: 1px solid rgba(26,23,20,0.18);
    background: var(--white);
    transition: background .2s, border-color .2s, color .2s;
  }
  .shop-subnav a:hover {
    background: var(--cream);
    border-color: rgba(26,23,20,0.4);
  }
  .shop-subnav a.is-active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
  }
  .shop-subnav a.is-feature {
    /* Eigenkollektion gets the active treatment plus a gold tag */
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    padding-right: 12px;
  }
  .shop-subnav .subnav-tag {
    display: inline-block;
    font-family: "Geist Mono", monospace;
    font-size: 8.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid var(--gold-light);
    padding: 2px 6px;
    margin-left: 8px;
    line-height: 1;
    transform: translateY(-1px);
  }
  .shop-subnav a.is-muted {
    color: rgba(26,23,20,0.55);
    border-color: rgba(26,23,20,0.10);
  }
  .shop-subnav a.is-muted:hover {
    color: var(--ink);
    border-color: rgba(26,23,20,0.25);
    background: var(--cream);
  }

  /* feature chip in the active filters bar */
  .shop-chip--feature {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
  }
  .shop-chip--feature .x { color: rgba(244,243,239,0.7); }
  .shop-chip--feature:hover {
    background: var(--ink);
    border-color: var(--gold);
  }
  .shop-chip--feature:hover .x { color: var(--gold); }

  /* ============ TOOLBAR ============ */
  .shop-toolbar {
    background: var(--white);
    border-top: 1px solid rgba(26,23,20,0.08);
    border-bottom: 1px solid rgba(26,23,20,0.08);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 50;
  }
  .shop-toolbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .shop-active {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .shop-active-label {
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.55);
    margin-right: 2px;
  }
  .shop-chip {
    background: var(--cream);
    border: 1px solid rgba(26,23,20,0.15);
    padding: 5px 9px 5px 12px;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color .2s, background .2s;
  }
  .shop-chip:hover {
    border-color: var(--gold);
    background: var(--white);
  }
  .shop-chip .x {
    font-size: 14px;
    line-height: 1;
    color: rgba(26,23,20,0.45);
    margin-left: 2px;
    transition: color .2s;
  }
  .shop-chip:hover .x { color: var(--gold); }
  .shop-chip-reset {
    background: none;
    border: 0;
    padding: 5px 0;
    cursor: pointer;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.55);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s;
  }
  .shop-chip-reset:hover { color: var(--gold); }

  .shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .shop-filter-btn {
    display: none;
    background: var(--white);
    border: 1px solid rgba(26,23,20,0.18);
    padding: 8px 14px;
    cursor: pointer;
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    align-items: center;
    gap: 8px;
    transition: border-color .2s;
  }
  .shop-filter-btn:hover { border-color: var(--gold); }
  .shop-filter-count {
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    width: 18px; height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-left: 2px;
  }

  .shop-count {
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.8);
  }
  .shop-count b {
    color: var(--ink);
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 20px;
    font-weight: 400;
    margin-right: 4px;
  }

  .shop-sort {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .shop-sort label {
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.8);
  }
  .shop-sort select {
    appearance: none;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--ink);
    padding: 6px 22px 6px 4px;
    font-family: "Geist", sans-serif;
    font-size: 13px;
    color: var(--ink);
    cursor: pointer;
    min-width: 150px;
  }
  .shop-sort select:focus { outline: none; border-color: var(--gold); }
  .shop-sort-caret {
    position: absolute;
    right: 4px;
    color: var(--ink);
    pointer-events: none;
  }

  @media (max-width: 900px) {
    .shop-toolbar { position: relative; }
    .shop-toolbar-inner { gap: 14px; }
    .shop-filter-btn { display: inline-flex; }
    .shop-active { order: 2; width: 100%; }
    .shop-toolbar-right { order: 1; width: 100%; justify-content: space-between; }
    .shop-count { font-size: 10px; }
    .shop-count b { font-size: 16px; }
  }

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

  /* ============ SIDEBAR / FILTERS ============ */
  .shop-sidebar { position: sticky; top: 88px; }
  .shop-sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .shop-filter h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(26,23,20,0.18);
    letter-spacing: -0.005em;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
  }
  .shop-filter-hint {
    font-family: "Geist Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* Eigenkollektion filter highlight */
  .shop-filter--style {
    background: var(--cream);
    padding: 18px 18px 14px;
    margin: -18px -18px 0;
    border: 1px solid rgba(26,23,20,0.10);
  }
  .shop-filter-feature label {
    grid-template-columns: 16px 1fr auto;
    align-items: center;
    padding: 10px 0 8px;
  }
  .shop-filter-feature span b {
    display: block;
    font-weight: 500;
    line-height: 1.1;
  }
  .shop-filter-feature span small {
    display: block;
    margin-top: 3px;
    font-family: "Geist Mono", monospace;
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .shop-filter-feature input:checked { background: var(--gold); border-color: var(--gold); }

  /* Visually de-prioritised filter items (Verlobungs-/Eheringe) */
  .shop-filter-low + span {
    color: rgba(26,23,20,0.65);
  }
  .shop-filter ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .shop-filter label {
    display: grid;
    grid-template-columns: 16px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 7px 0;
    font-size: 13.5px;
    color: var(--ink);
    cursor: pointer;
    transition: color .2s;
  }
  .shop-filter label:hover { color: var(--gold); }
  .shop-filter label:hover em { color: var(--gold); }
  .shop-filter input[type="checkbox"],
  .shop-filter input[type="radio"] {
    appearance: none;
    width: 14px; height: 14px;
    border: 1px solid rgba(26,23,20,0.4);
    background: var(--white);
    margin: 0;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: border-color .2s, background .2s;
  }
  .shop-filter input[type="radio"] { border-radius: 50%; }
  .shop-filter input[type="checkbox"]:checked,
  .shop-filter input[type="radio"]:checked {
    background: var(--ink);
    border-color: var(--ink);
  }
  .shop-filter input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 3px; top: 0px;
    width: 5px; height: 9px;
    border: solid var(--white);
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
  }
  .shop-filter input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    left: 3px; top: 3px;
    width: 6px; height: 6px;
    background: var(--white);
    border-radius: 50%;
  }
  .shop-filter input:checked + span { color: var(--ink); font-weight: 500; }
  .shop-filter label em {
    font-family: "Geist Mono", monospace;
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: rgba(26,23,20,0.45);
    transition: color .2s;
  }
  .shop-filter-radio label { grid-template-columns: 16px 1fr; }

  .shop-filter-actions {
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(26,23,20,0.10);
  }
  .shop-filter-reset {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: "Geist Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
    transition: color .2s;
  }
  .shop-filter-reset:hover { color: var(--gold); }

  /* mobile filter drawer */
  @media (max-width: 1000px) {
    .shop-sidebar {
      position: static;
      display: none;
    }
    .shop-sidebar.is-open {
      display: block;
      background: var(--cream);
      padding: 28px 24px;
      border: 1px solid rgba(26,23,20,0.10);
      margin-bottom: 24px;
    }
  }

  /* ============ PRODUCT GRID ============
     Higher-specificity selector so we beat the generic .new-grid (which is
     defined later in the same stylesheet and would otherwise win at equal
     specificity). */
  .new-grid.shop-grid-products {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 1100px) {
    .new-grid.shop-grid-products { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 460px) {
    .new-grid.shop-grid-products { grid-template-columns: 1fr; }
  }

  /* wish heart on product card */
  .card-wish {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 2;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(26,23,20,0.10);
    color: rgba(26,23,20,0.55);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .25s ease, transform .25s ease, color .2s ease, border-color .2s;
  }
  .new-card:hover .card-wish { opacity: 1; transform: translateY(0); }
  .card-wish:hover { color: var(--gold); border-color: var(--gold); }

  /* re-use .new-grid / .new-card styling from earlier pages */
  .new-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .new-card {
    position: relative;
    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); }

  /* ============ PAGINATION ============ */
  .shop-pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }
  .shop-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px; height: 40px;
    padding: 0 10px;
    font-family: "Geist Mono", monospace;
    font-size: 12px;
    color: var(--ink);
    text-decoration: none;
    background: var(--white);
    border: 1px solid rgba(26,23,20,0.15);
    transition: background .2s, border-color .2s, color .2s;
    cursor: pointer;
  }
  .shop-page:hover:not(:disabled) {
    background: var(--cream);
    border-color: var(--gold);
  }
  .shop-page.is-current {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
  }
  .shop-page--arrow .arr {
    font-size: 16px;
    color: inherit;
  }
  .shop-page--arrow:disabled {
    color: rgba(26,23,20,0.3);
    cursor: not-allowed;
    background: var(--white);
    border-color: rgba(26,23,20,0.10);
  }
  .shop-page-gap {
    padding: 0 4px;
    color: rgba(26,23,20,0.4);
    font-family: "Geist Mono", monospace;
  }

  /* sg2 additions */
  .shop-noresults {
    grid-column: 1 / -1;
    padding: 60px 0;
    text-align: center;
  }
  .shop-noresults p {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    color: rgba(26,23,20,0.75);
    margin-bottom: 16px;
  }
  .shop-noresults a {
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
  }
  .shop-noresults a:hover { color: var(--ink); }

  /* sg2 additions: reset link is an anchor in the theme - drop the browser
     underline, the border-bottom already provides the line */
  .shop-filter-reset { text-decoration: none; }

  /* ============ SEO text after product list (sg2 additions) ============ */
  .shop-seo {
    padding: 16px 0 84px;
  }
  .shop-seo-inner {
    max-width: 760px;
    font-family: "Geist", sans-serif;
    font-size: 15px;
    line-height: 1.72;
    color: rgba(26,23,20,0.74);
  }
  .shop-seo-inner > *:first-child { margin-top: 0; }
  .shop-seo-inner h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.2;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin: 36px 0 12px;
  }
  .shop-seo-inner h3 {
    font-family: "Geist", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin: 26px 0 8px;
  }
  .shop-seo-inner p { margin: 0 0 15px; }
  .shop-seo-inner ul, .shop-seo-inner ol { margin: 0 0 16px; padding-left: 20px; }
  .shop-seo-inner li { margin: 0 0 7px; }
  .shop-seo-inner a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .shop-seo-inner strong, .shop-seo-inner b { color: var(--ink); font-weight: 600; }

  /* ============ Mobile subnav: horizontal scroll like Zalando (sg2) ============ */
  @media (max-width: 720px) {
    .shop-subnav {
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x proximity;
      margin: 26px -20px 0;
      padding: 2px 20px;
      gap: 8px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      -webkit-mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 26px), transparent 100%);
      mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 26px), transparent 100%);
    }
    .shop-subnav::-webkit-scrollbar { display: none; }
    .shop-subnav li { flex: 0 0 auto; scroll-snap-align: start; }
    .shop-subnav a { white-space: nowrap; padding: 10px 16px; }
  }

/* Cormorant headlines at weight 500 (see base.css tail note). */
.shop-h1,
.shop-filter h3,
.shop-seo-inner h2,
.new-body h3 {
  font-weight: 500;
}
