/* Cleaning Help Shop — shared UI (Startseite, Katalog, Produktdetail) */
:root {
  --shop-ui-navy: #153a5c;
  --shop-ui-navy-hover: #0f2840;
  --shop-ui-blue: #1d4ed8;
  --shop-ui-muted: #64748b;
  --shop-ui-surface: #f4f6f9;
  --shop-ui-border: #e8eaef;
  --shop-ui-page: #f1f5f9;
  --shop-ui-radius: 12px;
  --shop-ui-radius-lg: 16px;
}

.shop-ui-page { background: var(--shop-ui-page); }
.shop-ui-page .shop-ui-main { padding-bottom: 3rem; }

.shop-ui-breadcrumb {
  font-size: .78rem;
  color: var(--shop-ui-muted);
  max-width: 72rem;
  margin: 0 auto 1rem;
  padding: 0 .25rem;
}
.shop-ui-breadcrumb a { color: var(--shop-ui-blue); text-decoration: none; font-weight: 500; }
.shop-ui-breadcrumb a:hover { text-decoration: underline; }
.shop-ui-bc-sep { margin: 0 .4rem; color: #cbd5e1; }

.shop-ui-header {
  max-width: 72rem;
  margin: 0 auto 1.25rem;
  background: #fff;
  border: 1px solid var(--shop-ui-border);
  border-radius: var(--shop-ui-radius-lg);
  padding: 1.35rem 1.25rem 1.4rem;
  box-shadow: 0 2px 8px rgba(15,23,42,.04);
}
@media (min-width: 768px) {
  .shop-ui-header { padding: 1.5rem 1.75rem; border-radius: 18px; }
}
.shop-ui-eyebrow {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--shop-ui-muted);
  margin-bottom: .4rem;
}
.shop-ui-title {
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0;
}
.shop-ui-lead { color: #64748b; font-size: .9rem; line-height: 1.55; max-width: 40rem; margin: .5rem 0 0; }
.shop-ui-meta {
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid #f1f5f9;
  font-size: .78rem;
  color: var(--shop-ui-muted);
}
.shop-ui-meta strong { color: #334155; font-weight: 700; }

.shop-ui-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  max-width: 72rem;
  margin: 0 auto 1rem;
  padding: 0 .25rem;
}
.shop-ui-range { font-size: .8rem; color: var(--shop-ui-muted); }
.shop-ui-pp-select { font-size: .8rem; max-width: 11rem; }

.shop-ui-catalog {
  max-width: 72rem;
  margin: 0 auto;
  background: linear-gradient(180deg, #fafbfd 0%, var(--shop-ui-surface) 100%);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  padding: 1rem .75rem 1.15rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
@media (min-width: 768px) {
  .shop-ui-catalog { padding: 1.15rem 1rem 1.25rem; }
}
.shop-ui-grid { --bs-gutter-x: .75rem; --bs-gutter-y: .75rem; }
@media (min-width: 768px) {
  .shop-ui-grid { --bs-gutter-x: .9rem; --bs-gutter-y: .9rem; }
}

.shop-ui-card,
#shop .shop-product-card {
  text-align: left;
  border-radius: var(--shop-ui-radius);
  overflow: hidden;
  border: 1px solid var(--shop-ui-border);
  background: #fff;
  box-shadow: 0 1px 0 rgba(15,23,42,.04);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.shop-ui-card:hover,
#shop .shop-product-card:hover {
  border-color: rgba(21,58,92,.35);
  box-shadow: 0 8px 24px rgba(15,23,42,.1), 0 0 0 1px rgba(21,58,92,.06);
  transform: translateY(-2px);
}
.shop-ui-card__media,
#shop .shop-product-card__media {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
  border-bottom: 1px solid var(--shop-ui-border);
}
.shop-ui-card__media::before,
#shop .shop-product-card__media::before {
  content: '';
  display: block;
  padding-bottom: 68%;
}
.shop-ui-card__img-wrap,
#shop .shop-product-card__img-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .65rem .75rem;
}
.shop-ui-card__img,
#shop .shop-product-card__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .22s ease;
}
.shop-ui-card:hover .shop-ui-card__img,
#shop .shop-product-card:hover .shop-product-card__img {
  transform: scale(1.04);
}
.shop-ui-card .card-body,
#shop .shop-product-card .card-body {
  padding: .7rem .8rem .8rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.shop-ui-brand,
#shop .shop-product-brand {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6b7280;
}
.shop-ui-card-title,
#shop .shop-product-title {
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.35;
  color: #111827;
  letter-spacing: -.015em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.2em;
  margin: 0;
}
.shop-ui-card-title a,
#shop .shop-product-title a { color: inherit; text-decoration: none; }
.shop-ui-card-title a:hover,
#shop .shop-product-title a:hover { color: var(--shop-ui-blue); }
.shop-ui-desc,
#shop .shop-product-desc {
  font-size: .72rem;
  color: #6b7280;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.shop-ui-price-row,
#shop .shop-product-price-row {
  border-top: 1px solid #eceef2;
  margin-top: auto;
  padding-top: .6rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.shop-ui-price-label,
#shop .shop-price-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #94a3b8;
}
.shop-ui-price,
#shop .shop-product-price {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.shop-ui-cashback,
#shop .shop-product-cashback { color: #166534 !important; }
.shop-ui-effective,
#shop .shop-product-effective { color: var(--shop-ui-navy) !important; }
.shop-ui-price-row-inner,
#shop .shop-price-row-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: .35rem .5rem;
}
.shop-ui-price-row-inner.has-cashback { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
.shop-ui-btn-primary {
  background: var(--shop-ui-navy);
  border-color: var(--shop-ui-navy);
  color: #fff;
  font-size: .74rem;
  font-weight: 600;
  padding: .42rem .7rem;
  border-radius: 8px;
}
.shop-ui-btn-primary:hover { background: var(--shop-ui-navy-hover); border-color: var(--shop-ui-navy-hover); color: #fff; }
.shop-ui-btn-secondary {
  font-size: .74rem;
  font-weight: 600;
  padding: .42rem .7rem;
  border-radius: 8px;
  border-color: #d1d5db;
  color: #374151;
}
.shop-ui-btn-secondary:hover { border-color: #9ca3af; background: #f9fafb; color: #111827; }

.shop-ui-pagination-wrap { max-width: 72rem; margin: 1.25rem auto 0; }
.shop-ui-pagination-wrap .pagination .page-link { border-radius: 8px; margin: 0 2px; font-size: .82rem; }
.shop-ui-pagination-wrap .page-item.active .page-link {
  background: var(--shop-ui-navy);
  border-color: var(--shop-ui-navy);
}

.shop-ui-grid.is-loading { opacity: .55; pointer-events: none; transition: opacity .2s; }

#shop .shop-section-intro-inner {
  max-width: 46rem;
  margin: 0 auto 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(15,23,42,.07);
}
#shop .shop-hero-card { border-radius: var(--shop-ui-radius-lg); overflow: hidden; }
#shop .shop-hero-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(15,43,72,.82) 100%);
  padding-top: 3rem !important;
}

/* Produktdetail — Anfrageformular */
.pd-applicant-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-bottom: 1rem;
}
.pd-applicant-opt {
  position: relative;
}
.pd-applicant-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pd-applicant-opt label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: .85rem .65rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: #475569;
  transition: border-color .15s, background .15s, color .15s;
  margin: 0;
}
.pd-applicant-opt label i { font-size: 1.15rem; color: var(--shop-ui-blue); }
.pd-applicant-opt input:checked + label {
  border-color: var(--shop-ui-navy);
  background: #f0f7ff;
  color: var(--shop-ui-navy);
}
.pd-company-fields { transition: opacity .2s; }
.pd-company-fields.is-hidden { display: none; }

.shop-ui-empty {
  text-align: center;
  padding: 2.5rem 1.25rem;
  max-width: 28rem;
  margin: 0 auto;
}
.shop-ui-foot {
  max-width: 72rem;
  margin: 1.5rem auto 0;
  font-size: .72rem;
  color: #94a3b8;
  text-align: center;
}

@media (max-width: 480px) {
  .shop-ui-price-row-inner.has-cashback { grid-template-columns: 1fr 1fr; }
  .pd-applicant-switch { grid-template-columns: 1fr; }
}
