/**
 * Poolshop – UI aus Stitch-Export (Material / Manrope / Work Sans, M3-Farben).
 * Alle .pl-*-Klassen für app.js beibehalten.
 */

:root {
  /* Stitch-Design-Tokens (aus Export) */
  --stitch-primary: #000a0f;
  --stitch-secondary: #7c5730;
  --stitch-background: #faf9f9;
  --stitch-on-background: #1a1c1c;
  --stitch-on-surface-variant: #42484a;
  --stitch-surface: #faf9f9;
  --stitch-surface-container: #eeeeee;
  --stitch-tertiary: #000a0d;
  --stitch-secondary-fixed: #ffdcbd;
  --stitch-outline-variant: #c2c7ca;
  --stitch-accent: #1994aa;
  --stitch-error: #ba1a1a;
  --stitch-white: #ffffff;

  --stitch-shadow-1: 0 1px 2px rgba(0, 10, 15, 0.06);
  --stitch-shadow-2: 0 8px 24px rgba(0, 10, 15, 0.08);
  --stitch-shadow-3: 0 20px 50px rgba(0, 10, 15, 0.12);
  --stitch-radius-sm: 0.5rem;
  --stitch-radius-md: 0.5rem;
  --stitch-radius-lg: 0.75rem;
  --stitch-font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --stitch-font-caps: "Work Sans", var(--stitch-font);

  --pl-navy: var(--stitch-primary);
  --pl-teal: var(--stitch-accent);
  --pl-teal-light: #6ed5eb;
  --stitch-surface-dim: #e8e8e8;
  --stitch-outline: rgba(114, 120, 123, 0.22);

  --pl-bg: var(--stitch-background);
  --pl-white: var(--stitch-white);
  --pl-text: var(--stitch-on-background);
  --pl-muted: var(--stitch-on-surface-variant);
  --pl-accent: var(--stitch-accent);
  --pl-accent-dark: #158094;
  --pl-border: var(--stitch-outline);
  --pl-check: var(--stitch-accent);
  --pl-radius: var(--stitch-radius-md);
  --pl-shadow: var(--stitch-shadow-2);
  /* Volle Breite mit responsivem Innenabstand (kein max-width-Container) */
  --pl-gutter: clamp(1rem, 4vw, 3.5rem);
  /* Fixierte Topbar (eine Zeile, Tailwind/Stitch-Referenz) */
  --pl-header-sticky-offset: clamp(4.5rem, 8vw + 2rem, 6rem);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  font-size: 1.35rem;
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

body.stitch-ui {
  margin: 0;
  width: 100%;
  min-width: 0;
  font-family: var(--stitch-font);
  color: var(--pl-text);
  background: var(--pl-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

#app {
  width: 100%;
  min-width: 0;
}

.pl-wrap {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-left: max(var(--pl-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--pl-gutter), env(safe-area-inset-right, 0px));
}

/* ——— Site-Header (Tailwind/Stitch-Referenz: frosted Topbar) ——— */
.pl-header-site {
  position: sticky;
  top: 0;
  z-index: 100;
}

.pl-topbar {
  position: relative;
}

.pl-topbar--stitch {
  background: color-mix(in srgb, var(--stitch-surface) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--stitch-outline-variant) 22%, transparent);
  box-shadow: var(--stitch-shadow-1);
}

.pl-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  flex-wrap: wrap;
}

@media (min-width: 961px) {
  .pl-topbar__inner {
    flex-wrap: nowrap;
  }
}

.pl-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  background: transparent;
  border-radius: 0;
  transition: opacity 0.15s;
}

.pl-logo:hover {
  opacity: 0.88;
}

.pl-logo--brand {
  line-height: 0;
}

.pl-logo__brand-img {
  height: clamp(2.65rem, 7vw, 3.65rem);
  width: auto;
  max-width: min(220px, 58vw);
  display: block;
  object-fit: contain;
  object-position: left center;
}

.pl-logo__img {
  height: clamp(52px, 5.5vw, 72px);
  width: auto;
  max-width: min(280px, 42vw);
  display: block;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.pl-topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

@media (min-width: 960px) {
  .pl-topnav--stitch {
    gap: 0.35rem 1.75rem;
  }
}

@media (max-width: 960px) {
  .pl-topbar__inner .pl-topnav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin-left: calc(-1 * max(var(--pl-gutter), env(safe-area-inset-left, 0px)));
    margin-right: calc(-1 * max(var(--pl-gutter), env(safe-area-inset-right, 0px)));
    padding-left: max(var(--pl-gutter), env(safe-area-inset-left, 0px));
    padding-right: max(var(--pl-gutter), env(safe-area-inset-right, 0px));
    padding-top: 0.75rem;
    margin-top: 0.35rem;
    border-top: 1px solid color-mix(in srgb, var(--stitch-outline-variant) 18%, transparent);
  }
}

.pl-topnav a {
  color: var(--pl-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-family: var(--stitch-font-caps);
  padding: 0.2rem 0 0.4rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.pl-topnav a:hover {
  color: var(--stitch-secondary);
}

.pl-topnav a.pl-topnav__link {
  cursor: pointer;
}

.pl-cms-body {
  line-height: 1.65;
}

.pl-cms-body h2,
.pl-cms-body h3 {
  margin-top: 1.5rem;
}

.pl-cms-body p {
  margin: 0.75rem 0;
}

.pl-cms-body ul,
.pl-cms-body ol {
  margin: 0.75rem 0 0.75rem 1.25rem;
}

.pl-topnav a.pl-topnav__active {
  color: var(--stitch-secondary);
  border-bottom-color: var(--stitch-secondary);
}

.pl-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.pl-topbar__shop {
  display: flex;
  align-items: center;
}

.pl-topbar__shop .pl-shop-topactions--global {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.pl-topbar__shop .pl-shop-account {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.pl-locale-switcher__select {
  appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: inherit;
  font: inherit;
  font-size: 0.875rem;
  padding: 0.45rem 2rem 0.45rem 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

.pl-locale-switcher__select option {
  color: #111;
  background: #fff;
}

.pl-topbar__cta {
  display: none;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .pl-topbar__cta {
    display: inline-flex;
  }
}

/* ——— Hero-Vollbild-Slider (Referenz SCREEN_7) ——— */
.pl-hero-slider {
  position: relative;
  overflow: hidden;
  height: 85vh;
  min-height: 600px;
  max-height: 920px;
}

@media (max-width: 640px) {
  .pl-hero-slider {
    height: 78vh;
    min-height: 480px;
  }

  .pl-hero-slider__dots {
    bottom: 1.25rem;
  }
}

.pl-hero-slider__slides {
  position: absolute;
  inset: 0;
}

.pl-hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.pl-hero-slider__slide--active {
  opacity: 1;
}

.pl-hero-slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 10, 15, 0.85) 0%,
    rgba(0, 10, 15, 0.4) 50%,
    rgba(0, 10, 15, 0.2) 100%
  );
  pointer-events: none;
}

.pl-hero-slider__overlay {
  display: none;
}

.pl-hero-slider__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}

.pl-hero-slider__content * {
  pointer-events: auto;
}

.pl-hero-slider__copy {
  max-width: 42rem;
}

.pl-hero-slider__kicker {
  display: block;
  font-family: var(--stitch-font-caps);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stitch-secondary-fixed);
  margin-bottom: 1rem;
}

.pl-hero-slider__copy h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.pl-hero-slider__lead {
  margin: 0;
  font-size: clamp(1rem, 1.2vw + 0.85rem, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--stitch-surface-variant);
  max-width: 32rem;
}

.pl-hero-slider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.pl-hero-slider__btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-weight: 700;
  border-radius: var(--stitch-radius-md);
}

.pl-hero-slider__btn-main .material-symbols-outlined {
  font-size: 1.25rem;
}

.pl-hero-slider__btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 1.75rem;
  font-weight: 700;
  border-radius: var(--stitch-radius-md);
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pl-hero-slider__btn-ghost:hover {
  background: #fff;
  color: var(--stitch-primary);
  border-color: #fff;
}

.pl-hero-slider__dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
  pointer-events: auto;
}

.pl-hero-slider__dot {
  width: 3rem;
  height: 0.25rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s, opacity 0.3s;
}

.pl-hero-slider__dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

.pl-hero-slider__dot--active {
  background: #fff;
}

.pl-checkrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.35rem;
  padding: 0;
  list-style: none;
}

.pl-checkrow--on-dark li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.pl-checkrow li::before {
  content: "✓";
  color: var(--stitch-secondary-fixed);
  font-weight: 700;
  font-size: 0.75rem;
}

.pl-section-surface {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background: var(--stitch-surface);
  width: 100%;
}
.pl-section-head {
  text-align: center;
  margin-bottom: 0.5rem;
}
.pl-section-head .pl-section-title {
  margin: 0 0 1rem;
}
.pl-section-head__rule {
  width: 6rem;
  height: 0.25rem;
  background: var(--stitch-secondary);
  margin: 0 auto;
  border-radius: 999px;
}
.pl-section-lead {
  text-align: center;
  max-width: min(52rem, 100%);
  margin: 1.25rem auto 2rem;
  padding: 0 0.25rem;
}

.pl-section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--stitch-primary);
}

.pl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  width: 100%;
}

/* Kacheln – „Stitch“-Cards */
.pl-tile {
  background: var(--stitch-white);
  border: 1px solid color-mix(in srgb, var(--stitch-outline-variant) 22%, transparent);
  border-radius: var(--stitch-radius-md);
  box-shadow: var(--stitch-shadow-1);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.pl-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--stitch-shadow-3);
  border-color: color-mix(in srgb, var(--stitch-outline-variant) 35%, transparent);
}
.pl-tile__media {
  height: 16rem;
  background: linear-gradient(145deg, #e8e8e8, #dce8ea);
  overflow: hidden;
}
.pl-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.pl-tile:hover .pl-tile__media img {
  transform: scale(1.1);
}
.pl-tile h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.15rem, 1.5vw + 0.85rem, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--stitch-primary);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem) 0;
  letter-spacing: -0.01em;
}
.pl-tile p {
  margin: 0 0 1.5rem;
  flex: 1;
  font-size: clamp(0.9rem, 1vw + 0.8rem, 1rem);
  color: var(--pl-muted);
  padding: 0 clamp(1.25rem, 3vw, 2rem);
  line-height: 1.6;
}
.pl-tile .pl-btn {
  align-self: stretch;
  margin: 0 clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  justify-content: center;
  border-radius: var(--stitch-radius-md);
}

.pl-cat-hero {
  display: grid;
  grid-template-columns: minmax(0, min(100%, 280px)) 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin-bottom: 1.25rem;
  width: 100%;
}
@media (max-width: 640px) {
  .pl-cat-hero {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1200px) {
  .pl-cat-hero {
    grid-template-columns: minmax(200px, 340px) 1fr;
  }
}
.pl-cat-hero__img {
  width: 100%;
  height: auto;
  border-radius: var(--stitch-radius-md);
  border: 1px solid var(--stitch-outline);
  box-shadow: var(--stitch-shadow-2);
  display: block;
}
.pl-cat-hero__text .pl-section-title {
  margin-bottom: 0;
}

/* Buttons */
.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--stitch-radius-md);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.pl-btn:active {
  transform: scale(0.97);
}
.pl-btn--primary {
  background: var(--stitch-secondary);
  color: #fff;
  box-shadow: var(--stitch-shadow-2);
}
.pl-btn--primary:hover {
  filter: brightness(1.06);
  box-shadow: var(--stitch-shadow-3);
}
.pl-btn--secondary {
  background: var(--stitch-secondary);
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  box-shadow: var(--stitch-shadow-1);
}
.pl-btn--secondary:hover {
  filter: brightness(1.06);
}
.pl-btn--outline {
  background: transparent;
  color: var(--stitch-primary);
  border: 2px solid var(--stitch-primary);
  padding: calc(0.75rem - 2px) calc(1.5rem - 2px);
}
.pl-btn--outline:hover {
  background: var(--stitch-primary);
  color: #fff;
}
.pl-btn--ghost {
  background: var(--stitch-white);
  color: var(--pl-muted);
  border: 1px solid var(--stitch-outline);
  box-shadow: var(--stitch-shadow-1);
}
.pl-btn--ghost:hover {
  border-color: var(--stitch-accent);
  color: var(--stitch-primary);
  background: color-mix(in srgb, var(--stitch-accent) 8%, var(--stitch-white));
}

.pl-breadcrumb {
  font-size: 0.86rem;
  color: var(--pl-muted);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.pl-breadcrumb a {
  color: var(--stitch-accent);
  text-decoration: none;
  font-weight: 600;
}
.pl-breadcrumb a:hover {
  text-decoration: underline;
}

.pl-config-layout {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  width: 100%;
}
@media (min-width: 960px) {
  .pl-config-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, min(380px, 32vw));
    align-items: start;
  }
}

.pl-panel {
  background: var(--stitch-surface);
  border: 1px solid var(--stitch-outline);
  border-radius: var(--stitch-radius-md);
  padding: 1.35rem 1.45rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--stitch-shadow-1);
}
.pl-panel h3 {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--stitch-primary);
  letter-spacing: -0.01em;
}
.pl-panel .pl-desc {
  font-size: 0.92rem;
  color: var(--pl-muted);
  margin-bottom: 1rem;
  line-height: 1.55;
}
.pl-panel .pl-desc.pl-rich ul {
  padding-left: 1.2rem;
}

.pl-field {
  margin-bottom: 0.9rem;
}
.pl-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--stitch-primary);
}
.pl-field input,
.pl-field select,
.pl-field textarea {
  width: 100%;
  max-width: 280px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--stitch-outline);
  border-radius: var(--stitch-radius-sm);
  font: inherit;
  background: var(--stitch-surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.pl-field input:focus,
.pl-field select:focus,
.pl-field textarea:focus {
  outline: none;
  border-color: var(--stitch-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--stitch-accent) 25%, transparent);
}
.pl-dim-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.pl-field--inline input {
  max-width: 120px;
}

/* Auswahl-Karten */
.pl-choice {
  border: 2px solid var(--stitch-outline);
  border-radius: var(--stitch-radius-sm);
  padding: 0.9rem 1rem;
  margin-bottom: 0.55rem;
  cursor: pointer;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--stitch-surface-dim);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.pl-choice:hover {
  border-color: color-mix(in srgb, var(--stitch-accent) 40%, transparent);
}
.pl-choice input {
  margin-top: 0.25rem;
  accent-color: var(--stitch-accent);
}
.pl-choice--selected {
  border-color: var(--stitch-accent);
  background: color-mix(in srgb, var(--stitch-accent) 12%, var(--stitch-white));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--stitch-accent) 28%, transparent);
}
.pl-choice strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
}
.pl-choice small {
  color: var(--pl-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.pl-summary {
  position: sticky;
  top: var(--pl-header-sticky-offset);
  background: var(--stitch-surface);
  border: 1px solid var(--stitch-outline);
  border-radius: var(--stitch-radius-md);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--stitch-shadow-2);
}
.pl-summary h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--stitch-primary);
}
.pl-summary ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.86rem;
  color: var(--pl-text);
  line-height: 1.5;
}
.pl-summary .pl-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--stitch-outline);
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.55;
}
.pl-summary .pl-actions {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pl-alert {
  padding: 0.85rem 1rem;
  border-radius: var(--stitch-radius-sm);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.pl-alert--err {
  background: color-mix(in srgb, var(--stitch-error) 12%, #fff);
  color: #7f1d1d;
  border: 1px solid color-mix(in srgb, var(--stitch-error) 35%, #fff);
}
.pl-alert--ok {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.pl-loading {
  padding: 3rem var(--pl-gutter);
  text-align: center;
  color: var(--pl-muted);
  font-weight: 500;
}

.pl-footer {
  background: var(--stitch-tertiary);
  color: var(--stitch-surface);
  margin-top: 0;
  padding: 0;
  font-size: 1rem;
}
.pl-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
  /* Nur vertikal: horizontale Abstände kommen von .pl-wrap (padding-Shorthand würde links/rechts auf 0 setzen) */
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
}
@media (min-width: 768px) {
  .pl-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pl-footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.pl-footer__logo-wrap {
  margin-bottom: 0.5rem;
}
.pl-footer__logo-img {
  height: clamp(2.5rem, 6vw, 3.25rem);
  width: auto;
  max-width: 12rem;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.pl-footer__text {
  margin: 0;
  color: rgba(250, 249, 249, 0.78);
  line-height: 1.6;
  font-size: 1rem;
}
.pl-footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  opacity: 0.85;
}
.pl-footer__social .material-symbols-outlined {
  font-size: 1.5rem;
  cursor: default;
}
.pl-footer__heading {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--stitch-surface);
}
.pl-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(250, 249, 249, 0.78);
  line-height: 1.6;
}
.pl-footer__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.pl-footer__icon {
  color: var(--stitch-secondary-fixed);
  font-size: 1.25rem !important;
  flex-shrink: 0;
}
.pl-footer__links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.pl-footer__links a:hover {
  color: var(--stitch-secondary-fixed);
}
.pl-footer__inline-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.pl-footer__inline-link:hover {
  color: var(--stitch-secondary-fixed);
}
.pl-footer__legal {
  border-top: 1px solid color-mix(in srgb, var(--stitch-outline-variant) 22%, transparent);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}
.pl-footer__legal p {
  margin: 0 auto;
  max-width: min(56rem, 100%);
  font-size: 1rem;
  color: rgba(250, 249, 249, 0.72);
  line-height: 1.6;
}

.pl-muted {
  color: var(--pl-muted);
  font-size: 0.88rem;
}

/* Rechtstexte (Impressum, DSGVO, AGB, Widerruf) */
.pl-legal-topbar {
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 4.25rem;
}

.pl-legal-back {
  font-family: var(--stitch-font-caps);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--stitch-secondary);
  text-decoration: none;
  white-space: nowrap;
}

.pl-legal-back:hover {
  text-decoration: underline;
}

.pl-legal-doc {
  max-width: 48rem;
  padding-top: clamp(1.5rem, 4vw, 2.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  color: var(--pl-text);
}

.pl-legal-doc h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--stitch-primary);
}

.pl-legal-doc h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--stitch-primary);
}

.pl-legal-doc p,
.pl-legal-doc li {
  font-size: 1rem;
  line-height: 1.65;
}

.pl-legal-doc ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.35rem;
}

.pl-legal-doc a {
  color: var(--stitch-accent);
  font-weight: 600;
}

.pl-legal-doc a:hover {
  text-decoration: underline;
}

.pl-legal-note {
  padding: 1rem 1.15rem;
  margin: 0 0 1.5rem;
  background: color-mix(in srgb, var(--stitch-surface-container) 70%, var(--stitch-background));
  border: 1px solid var(--stitch-outline);
  border-radius: var(--stitch-radius-md);
  font-size: 0.92rem !important;
}

.pl-legal-meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stitch-outline);
  font-size: 0.9rem !important;
  color: var(--pl-muted);
}

.pl-legal-formbox {
  margin: 1rem 0 2rem;
  padding: 1.25rem 1.35rem;
  background: var(--stitch-surface);
  border: 1px solid var(--stitch-outline);
  border-radius: var(--stitch-radius-md);
  font-size: 0.95rem;
}

.pl-footer--legal-sub {
  margin-top: 0;
}

.pl-footer--legal-sub .pl-footer__legal {
  text-align: center;
}

.pl-footer--legal-sub .pl-footer__legal p {
  color: rgba(250, 249, 249, 0.85);
}

.pl-footer--legal-sub .pl-footer__legal a {
  color: var(--stitch-secondary-fixed);
  font-weight: 600;
}

/* ——— Kontakt (Tailwind-Referenz, ohne Tailwind) ——— */
.pl-contact {
  width: 100%;
  background: var(--stitch-surface);
}

.pl-contact-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pl-contact-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.pl-contact-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(0, 10, 15, 0.58), rgba(0, 10, 15, 0.58));
}

.pl-contact-hero__inner {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  max-width: 42rem;
}

.pl-contact-hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.pl-contact-hero__lead {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}

.pl-contact-main {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.pl-contact-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 1024px) {
  .pl-contact-grid {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    align-items: start;
    gap: 2rem;
  }
}

.pl-contact-kicker {
  display: block;
  font-family: var(--stitch-font-caps);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stitch-secondary);
  margin-bottom: 0.5rem;
}

.pl-contact-aside__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--stitch-primary);
}

.pl-contact-aside__intro {
  margin: 0 0 1.75rem;
  color: var(--pl-muted);
  line-height: 1.6;
}

.pl-contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pl-contact-details__row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pl-contact-details__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stitch-surface-container);
}

.pl-contact-details__icon .material-symbols-outlined {
  color: var(--stitch-secondary);
  font-size: 1.35rem;
}

.pl-contact-details__label {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--stitch-primary);
}

.pl-contact-details__text {
  margin: 0;
  color: var(--pl-muted);
  line-height: 1.5;
  font-size: 0.98rem;
}

.pl-contact-details__text a {
  color: var(--stitch-accent);
  font-weight: 600;
  text-decoration: none;
}

.pl-contact-details__text a:hover {
  text-decoration: underline;
}

.pl-contact-form-card {
  background: var(--stitch-white);
  border: 1px solid color-mix(in srgb, var(--stitch-outline-variant) 22%, transparent);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--stitch-shadow-1);
}

.pl-contact-form__row2 {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pl-contact-form__row2 {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.pl-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pl-contact-field__label {
  display: block;
  font-family: var(--stitch-font-caps);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--pl-muted);
  margin-bottom: 0.35rem;
}

.pl-contact-field__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid color-mix(in srgb, var(--stitch-outline-variant) 55%, transparent);
  padding: 0.85rem 0;
  font: inherit;
  font-size: 1rem;
  color: var(--pl-text);
  border-radius: 0;
  transition: border-color 0.2s;
}

.pl-contact-field__input::placeholder {
  color: color-mix(in srgb, var(--pl-muted) 65%, transparent);
}

.pl-contact-field__input:hover {
  border-bottom-color: color-mix(in srgb, var(--stitch-outline-variant) 85%, transparent);
}

.pl-contact-field__input:focus {
  outline: none;
  border-bottom-color: var(--stitch-secondary);
}

.pl-contact-field__textarea {
  resize: vertical;
  min-height: 7rem;
}

.pl-contact-form__actions {
  padding-top: 0.5rem;
}

.pl-contact-form__submit {
  width: 100%;
  background: var(--stitch-primary);
  color: #fff;
  padding: 1rem 1.75rem;
  font-family: var(--stitch-font-caps);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
}

@media (min-width: 768px) {
  .pl-contact-form__submit {
    width: auto;
    min-width: 14rem;
  }
}

.pl-contact-form__submit:hover {
  background: var(--stitch-secondary);
}

.pl-contact-form__submit:active {
  transform: scale(0.98);
}

.pl-contact-form__msg {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0.75rem 1rem;
  border-radius: var(--stitch-radius-sm);
}

.pl-contact-form__msg--ok {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.pl-contact-form__msg--err {
  background: color-mix(in srgb, var(--stitch-error) 10%, #fff);
  color: #7f1d1d;
  border: 1px solid color-mix(in srgb, var(--stitch-error) 30%, #fff);
}

.pl-contact-map {
  position: relative;
  height: min(500px, 70vw);
  min-height: 280px;
  overflow: hidden;
}

.pl-contact-map__bg {
  position: absolute;
  inset: 0;
  background: var(--stitch-surface-container-high);
}

.pl-contact-map__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.5;
}

.pl-contact-map__pin-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 1rem;
}

.pl-contact-map__pin {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--stitch-white);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--stitch-shadow-3);
  border: 1px solid color-mix(in srgb, var(--stitch-outline-variant) 25%, transparent);
  pointer-events: auto;
  max-width: 100%;
}

.pl-contact-map__pin-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--stitch-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pl-contact-map__pin-icon .material-symbols-outlined {
  color: #fff;
  font-size: 1.25rem;
}

.pl-contact-map__pin-title {
  margin: 0 0 0.15rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--stitch-primary);
}

.pl-contact-map__pin-meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--pl-muted);
}

.pl-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0, 10, 15, 0.92);
  color: #fff;
  padding: 12px 0;
}
.pl-cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.pl-cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }
.pl-cookie-banner__text { flex: 1; min-width: 200px; }
.pl-cookie-banner__sub { margin-top: 0.35rem !important; font-size: 0.85rem; opacity: 0.9; }
.pl-cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pl-cookie-opt { font-size: 0.85rem; display: flex; align-items: center; gap: 4px; }
.pl-ref-grid, .pl-news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 1rem; }
.pl-ref-card, .pl-news-card { border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; overflow: hidden; background: #fff; }
.pl-ref-card a, .pl-news-card a { display: block; color: inherit; text-decoration: none; padding: 0 0 1rem; }
.pl-ref-card__img, .pl-news-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.pl-ref-card h3, .pl-news-card h3 { font-size: 1rem; margin: 0.75rem 1rem 0.35rem; }
.pl-ref-card p, .pl-news-card p { margin: 0 1rem; font-size: 0.9rem; color: #555; }
.pl-news-grid--list { grid-template-columns: 1fr; }
.pl-news-card--row a { display: grid; grid-template-columns: 200px 1fr; gap: 1rem; padding: 0; }
.pl-news-card--row img { height: 100%; min-height: 120px; }
.pl-cms-ref__img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px 8px 0 0; }
.pl-cms-ref a { color: inherit; text-decoration: none; display: block; }
.pl-nav-dropdown { position: relative; display: inline-block; }
.pl-nav-dropdown__caret { font-size: 0.65em; margin-left: 4px; }
.pl-nav-dropdown__panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 8px 0;
  z-index: 50;
}
.pl-nav-dropdown:hover .pl-nav-dropdown__panel,
.pl-nav-dropdown:focus-within .pl-nav-dropdown__panel { display: block; }
.pl-nav-dropdown__link {
  display: block;
  padding: 8px 16px;
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
}
.pl-nav-dropdown__link:hover { background: #f0f8fa; }
.pl-cms-block { margin: 1.5rem 0; }
.pl-cms-block--image-text { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
.pl-cms-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.pl-cms-gallery__item img { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; }
.pl-cms-faq__item { border: 1px solid #ddd; border-radius: 8px; padding: 10px 14px; margin-bottom: 8px; }
.pl-cms-block--cta { text-align: center; padding: 2rem; background: #f5f8fa; border-radius: 12px; }
.pl-cms-ref-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.pl-cms-featured img { max-width: 100%; border-radius: 12px; margin: 1rem 0; }
.pl-alert--warn { background: #fff3cd; color: #856404; padding: 12px; border-radius: 8px; margin-bottom: 1rem; }
@media (max-width: 768px) {
  .pl-cms-block--image-text { grid-template-columns: 1fr; }
}
.pl-mollie-label { display:flex; align-items:flex-start; gap:10px; cursor:pointer; font-weight:600; }
.pl-mollie-label input { margin-top:4px; }
.pl-btn--secondary { background:#fff; color:var(--pl-primary,#0d6efd); border:2px solid var(--pl-primary,#0d6efd); }
.pl-btn--secondary:hover { background:#f0f7ff; }

/* Webshop (Artikelstamm) */
.pl-shop { padding-bottom: 3rem; }
.pl-shop-header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.pl-shop-account { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.95rem; }
.pl-shop-layout { display: grid; grid-template-columns: minmax(200px, 260px) 1fr; gap: 1.5rem; }
@media (max-width: 768px) { .pl-shop-layout { grid-template-columns: 1fr; } }
.pl-shop-sidebar { display: flex; flex-direction: column; gap: 0.35rem; }
.pl-shop-cat { display: block; padding: 0.45rem 0.65rem; border-radius: 8px; text-decoration: none; color: inherit; font-size: 0.92rem; }
.pl-shop-cat:hover { background: color-mix(in srgb, var(--stitch-primary) 8%, transparent); }
.pl-shop-cat--active { background: color-mix(in srgb, var(--stitch-primary) 12%, transparent); font-weight: 600; }
.pl-shop-cat span { opacity: 0.65; font-size: 0.85em; }
.pl-shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); gap: 1.25rem; }
.pl-shop-card { border: 1px solid color-mix(in srgb, var(--stitch-outline-variant) 25%, transparent); border-radius: 12px; overflow: hidden; background: #fff; display: flex; flex-direction: column; }
.pl-shop-card__img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #f4f6f8; }
.pl-shop-card__img--empty { min-height: 160px; }
.pl-shop-card__body { padding: 1rem; flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.pl-shop-card__cat { font-size: 0.8rem; opacity: 0.7; margin: 0; }
.pl-shop-card__nr { font-size: 0.85rem; opacity: 0.75; margin: 0; }
.pl-shop-card__price { font-weight: 700; margin: 0.25rem 0 0.75rem; }
.pl-shop-badge { display: inline-block; background: #e8f5e9; color: #2e7d32; padding: 0.15rem 0.5rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; }
.pl-shop-search { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; max-width: 480px; }
.pl-shop-search input { flex: 1; padding: 0.55rem 0.75rem; border: 1px solid #ccc; border-radius: 8px; }
.pl-shop-detail { display: grid; grid-template-columns: minmax(200px, 360px) 1fr; gap: 2rem; margin-top: 1rem; }
@media (max-width: 768px) { .pl-shop-detail { grid-template-columns: 1fr; } }
.pl-shop-detail__img { width: 100%; border-radius: 12px; border: 1px solid #eee; }
.pl-shop-detail__price { font-size: 1.35rem; font-weight: 700; }
.pl-shop-detail__desc { margin: 1rem 0; line-height: 1.55; }
.pl-shop-back { text-decoration: none; }
.pl-shop-auth { max-width: 420px; }
.pl-shop-form label { display: block; margin-bottom: 0.75rem; font-weight: 600; font-size: 0.9rem; }
.pl-shop-form input, .pl-shop-form select { display: block; width: 100%; margin-top: 0.25rem; padding: 0.5rem; border: 1px solid #ccc; border-radius: 8px; font-weight: 400; }
.pl-btn--sm { padding: 0.35rem 0.75rem; font-size: 0.85rem; }
.pl-shop-empty { padding: 2rem; opacity: 0.75; }
.pl-shop-hint { font-size: 0.9rem; opacity: 0.85; }
.pl-alert--ok { background: #e8f5e9; color: #1b5e20; padding: 1rem; border-radius: 8px; margin: 1rem 0; }
.pl-shop-topactions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.pl-shop-cart-badge { display: inline-block; min-width: 1.25rem; padding: 0 0.35rem; background: var(--stitch-primary, #0a4); color: #fff; border-radius: 999px; font-size: 0.75rem; font-weight: 700; text-align: center; }
.pl-shop-card__actions { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: auto; }
.pl-shop-add-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-top: 1rem; }
.pl-shop-qty-input { width: 5rem; padding: 0.4rem; border: 1px solid #ccc; border-radius: 8px; }
.pl-shop-cart-table-wrap { overflow-x: auto; margin: 1rem 0; }
.pl-shop-cart-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.pl-shop-cart-table th, .pl-shop-cart-table td { padding: 0.65rem 0.5rem; border-bottom: 1px solid #e8e8e8; text-align: left; vertical-align: middle; }
.pl-shop-cart-thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; margin-right: 0.5rem; vertical-align: middle; }
.pl-shop-cart-qty { width: 4.5rem; padding: 0.35rem; border: 1px solid #ccc; border-radius: 6px; }
.pl-shop-cart-footer { max-width: 520px; margin-left: auto; text-align: right; }
.pl-shop-cart-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.5rem; margin-top: 1rem; }
.pl-shop-note-label { display: block; text-align: left; margin: 1rem 0; font-weight: 600; font-size: 0.9rem; }
.pl-shop-note-label textarea { display: block; width: 100%; margin-top: 0.35rem; padding: 0.5rem; border: 1px solid #ccc; border-radius: 8px; font-weight: 400; }
.pl-shop-toast { position: fixed; bottom: 1.5rem; right: 1.5rem; background: #1b5e20; color: #fff; padding: 0.75rem 1.1rem; border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.18); opacity: 0; transform: translateY(12px); transition: opacity 0.2s, transform 0.2s; z-index: 9999; pointer-events: none; }
.pl-shop-toast--visible { opacity: 1; transform: translateY(0); }
.pl-shop-mollie-opt { display: block; text-align: left; margin: 1rem 0; font-size: 0.95rem; cursor: pointer; }
.pl-shop-mollie-opt input { margin-right: 0.5rem; }
.pl-shop-guest { text-align: left; margin: 1.25rem 0; padding: 1rem; border: 1px solid #e8e8e8; border-radius: 10px; background: #fafafa; }
.pl-shop-guest h2 { margin: 0 0 0.75rem; font-size: 1.1rem; }
.pl-shop-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 560px) { .pl-shop-form-row { grid-template-columns: 1fr; } }
.pl-shop-account-grid { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(280px, 1.2fr); gap: 1.5rem; align-items: start; }
@media (max-width: 900px) { .pl-shop-account-grid { grid-template-columns: 1fr; } }
.pl-shop-panel { border: 1px solid #e8e8e8; border-radius: 12px; padding: 1.25rem; background: #fff; }
.pl-shop-panel h2 { margin: 0 0 1rem; font-size: 1.15rem; }

