/* ============================================
   SECTION: Products ("Was in Ihrer Pflegebox steckt") — 2026 refresh
============================================ */

.products {
  background:
    linear-gradient(180deg, var(--color-surface-soft) 0%, var(--color-bg) 100%);
  position: relative;
}

.products__layout {
  display: grid;
  gap: var(--space-9);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .products__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: var(--space-11);
    align-items: stretch;
  }
}

/* ---- Visual + product chips ---- */
.products__visual-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.products__visual {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-bg-sand) 0%, var(--color-accent-soft) 100%);
  box-shadow: var(--sh-4);
  isolation: isolate;
}
.products__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}
.products__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

/* Product chip cloud */
.products__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  padding: var(--space-1);
}
.product-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-pill);
  padding: 9px 14px 9px 12px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  transition:
    border-color var(--t-fast),
    background var(--t-fast),
    transform var(--t-fast),
    box-shadow var(--t-fast);
  box-shadow: var(--sh-1);
}
@media (hover: hover) {
  .product-chip:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-soft);
    transform: translateY(-1px);
    box-shadow: var(--sh-2);
  }
}
.product-chip .icon {
  width: 16px; height: 16px;
  color: var(--color-primary);
}

/* ---- Right column ---- */
.products__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.option-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  align-items: center;
  box-shadow: var(--sh-1);
  transition:
    border-color var(--t-fast),
    transform var(--t-med),
    box-shadow var(--t-med);
  position: relative;
  overflow: hidden;
}
.option-card::before {
  content: "";
  position: absolute;
  right: 0; bottom: 0;
  width: 96px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(47, 79, 151, 0.22));
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-out);
}
@media (hover: hover) {
  .option-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--sh-3);
  }
  .option-card:hover::before { opacity: 1; }
}
.option-card .icon-circle--sm { margin-bottom: 0; }
.option-card .icon-circle--sm::before { display: none; }
.option-card__title {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: 2px;
  letter-spacing: var(--tracking-normal);
}
.option-card__text {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Info pills strip */
.products__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

/* ---- Bottom action strip ---- */
.products__action {
  margin-top: var(--space-9);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-6) var(--space-7);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-1);
}
@media (max-width: 520px) {
  .option-card,
  .products__action {
    padding: var(--space-5);
  }
  .products__chips {
    gap: var(--space-2);
  }
  .product-chip {
    flex: 1 1 calc(50% - var(--space-2));
    justify-content: center;
    min-width: 0;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .products__action {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
  }
}
.products__action-text {
  font-size: var(--fs-body);
  color: var(--color-text);
  max-width: 540px;
  line-height: 1.55;
}
