/** Shopify CDN: Minification failed

Line 218:7 Expected ":"

**/
/* ============================================================
   PRODUCT ACCESSOIRES — Accessoires-spezifische Styles
   Casa Poli · Shopify Custom Template
   Basis-Layout (Hero, Details-Wrapper) kommt von product-wine.css
   Dieses File: Specs-Grid, Details-Blocks, Cross-Sell
   ============================================================ */

/* ── CSS-Variablen Alias ── */
.pacc-details {
  --pacc-bg:     #f5f1ed;
  --pacc-text:   #1c1008;
  --pacc-muted:  #7a6555;
  --pacc-border: #ddd5ca;
}

/* ============================================================
   SPECS-GRID (Material, Maße, Volumen, Pflege)
   ============================================================ */
.pacc-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: .8rem;
  margin-bottom: 2.4rem;
}

.pacc-spec {
  background: #ede9e4;
  border-radius: .8rem;
  padding: 1.2rem 1.4rem;
}

.pacc-spec__label {
  font-size: 1.1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pw-muted, #7a6555);
  margin: 0 0 .4rem;
  font-weight: 600;
}

.pacc-spec__val {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--pw-text, #1c1008);
  margin: 0;
}

/* ============================================================
   CONTENT-BLOCKS (Beschreibung, Pflege)
   ============================================================ */
.pacc-block {
  padding: 1.8rem 0;
  border-top: 1px solid var(--pw-border, #ddd5ca);
}

.pacc-block__label {
  font-size: 1.1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pw-muted, #7a6555);
  margin: 0 0 1.2rem;
  font-weight: 600;
}

.pacc-text-body {
  font-size: 1.8rem;
  line-height: 1.8;
  color: var(--pw-text, #1c1008);
}

.pacc-text-body p { margin: 0 0 1rem; }
.pacc-text-body p:last-child { margin-bottom: 0; }

/* ── Pflege-Hinweis Pills ── */
.pacc-care-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.pacc-care-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 500;
  background: #ede8e2;
  color: var(--pw-text, #1c1008);
  border: 1px solid var(--pw-border, #ddd5ca);
}

/* ============================================================
   CROSS-SELL SECTION (pacc-cross)
   ============================================================ */
.pacc-cross {
  background: var(--pw-bg, #f5f1ed);
  padding: 4rem 2.4rem;
  border-top: 1px solid var(--pw-border, #ddd5ca);
}

.pacc-cross__inner {
  max-width: 96rem;
  margin: 0 auto;
}

.pacc-cross__heading {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: var(--pw-text, #1c1008);
  margin: 0 0 2.8rem;
  font-family: var(--font-heading-family, Georgia, serif);
  text-align: center;
}

.pacc-cross__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 1.6rem;
}

.pacc-cross__card {
  background: #fff;
  border: 1.5px solid var(--pw-border, #ddd5ca);
  border-radius: .8rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow .25s ease;
}

.pacc-cross__card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.pacc-cross__card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #ebe5df;
}

.pacc-cross__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.pacc-cross__card:hover .pacc-cross__card-img img {
  transform: scale(1.04);
}

.pacc-cross__card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pacc-cross__card-title {
  font-size: 1.4rem;
  color: var(--pw-text, #1c1008);
  line-height: 1.35;
  margin: 0 0 .4rem;
  flex: 1;
}

.pacc-cross__card-price {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--pw-text, #1c1008);
  margin: 0 0 .8rem;
}

.pacc-cross__card-btn {
  width: 100%;
  height: 3.6rem;
  background: var(--pw-btn, #3a2318);
  color: #fff;
  border: none;
  border-radius: .4rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s;
  font-family: var(--font-body-family, sans-serif);
}

.pacc-cross__card-btn:hover { background: var(--pw-btn-hover, #2c1a0e); }
.pacc-cross__card-btn.is-added { background: #3a6b4a; }

/* ── Zahlungsicons ── */
.pw-hero__payment { margin-top: 0.4rem; }

.pw-hero__pay-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pw-hero__pay-icon {
  height: 4rem;
  padding: 0 1.6rem;
  border: 1.5px solid var(--pw-border);
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backg