.sw-home-lookfeel-products {
  display: grid;
  gap: 28px;
}

.sw-lookfeel-card {
  background: rgba(227, 226, 230, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 36px;
  padding: 26px 26px 30px;
  box-shadow:
    0 28px 80px rgba(19, 20, 34, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
}

.sw-lookfeel-label {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #525779;
  margin-bottom: 18px;
}

.sw-lookfeel-slider {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #d8d6dc;
}

.sw-lookfeel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 320px;
}

.sw-lookfeel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.9s ease, visibility 0.55s ease;
}

.sw-lookfeel-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.sw-lookfeel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sw-lookfeel-slider::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(18, 18, 22, 0.24), rgba(18, 18, 22, 0));
  pointer-events: none;
}

.sw-lookfeel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  color: #23253a;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.sw-lookfeel-nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.sw-lookfeel-prev { left: 16px; }
.sw-lookfeel-next { right: 16px; }

.sw-lookfeel-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.sw-lookfeel-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.sw-lookfeel-dots button.is-active {
  background: #ffffff;
  transform: scale(1.2);
}

.sw-product-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.sw-product-card {
  position: relative;
  min-height: 320px;
  border-radius: 36px;
  padding: 30px 36px;
  background:
    linear-gradient(180deg, rgba(247, 244, 247, 0.96) 0%, rgba(234, 230, 236, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 26px 60px rgba(16, 18, 31, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  overflow: hidden;
}

.sw-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 213, 153, 0.22), transparent 42%);
  pointer-events: none;
}

.sw-product-card__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a5f81;
}

.sw-product-card h3,
.sw-product-card p {
  position: relative;
  z-index: 1;
}

.sw-product-card h3 {
  margin: 0 0 18px;
  color: #232538;
  font-size: clamp(2rem, 2.8vw, 3.05rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 9ch;
}

.sw-product-card p {
  margin: 0;
  color: #5a5d72;
  font-size: 1.18rem;
  line-height: 1.62;
  max-width: 18ch;
  font-weight: 500;
}

.sw-product-card--embroidered {
  background:
    linear-gradient(180deg, rgba(248, 244, 247, 0.96) 0%, rgba(235, 230, 238, 0.94) 100%);
}

.sw-product-card--printed {
  background:
    linear-gradient(180deg, rgba(244, 241, 247, 0.96) 0%, rgba(232, 229, 238, 0.94) 100%);
}

.sw-product-card--basics {
  background:
    linear-gradient(180deg, rgba(247, 243, 239, 0.96) 0%, rgba(238, 232, 225, 0.94) 100%);
}

@media (max-width: 1200px) {
  .sw-product-cards {
    grid-template-columns: 1fr;
  }

  .sw-product-card {
    min-height: auto;
  }

  .sw-product-card h3,
  .sw-product-card p {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .sw-lookfeel-card {
    padding: 20px 20px 24px;
    border-radius: 28px;
  }

  .sw-lookfeel-track {
    min-height: 260px;
    aspect-ratio: 1 / 1;
  }

  .sw-lookfeel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .sw-lookfeel-prev { left: 12px; }
  .sw-lookfeel-next { right: 12px; }

  .sw-product-card {
    padding: 24px 24px 26px;
    border-radius: 28px;
  }

  .sw-product-card h3 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .sw-product-card p {
    font-size: 1rem;
    line-height: 1.55;
  }
}


/* ============================================================
   V157 FIXES: Hero kompakter, Shop-Block neu ausgerichtet, SEO-CTA
============================================================ */
#anfrage{
  scroll-margin-top: 120px;
}

.sw-hero-shell .sw-media-frame{
  min-height: 0;
  padding: clamp(1.15rem, 2.2vw, 1.8rem);
}

.sw-hero-shell .sw-media-panel{
  grid-template-rows: auto auto;
  gap: 18px;
}

.sw-media-card--slider{
  padding: 0;
  overflow: hidden;
}

.sw-hero-lookfeel__viewport{
  margin: 0 18px 0;
  border-radius: 24px;
  aspect-ratio: 1 / 0.97;
  min-height: 0;
  height: clamp(320px, 36vw, 465px);
}

.sw-hero-lookfeel__viewport::after{
  height: 28%;
}

.sw-quote-panel{
  padding: 1rem 1.1rem;
}

.sw-quote-panel p{
  margin: 0;
  color: var(--sw-offwhite);
  font-size: 1rem;
  line-height: 1.52;
}

.sw-quote-panel p strong{
  display: block;
  margin-bottom: .35rem;
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
  line-height: 1.04;
  color: var(--sw-offwhite);
}

.sw-quote-panel p span{
  display: block;
  max-width: 34ch;
}

.sw-section-dark .sw-showcase-grid{
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(1.25rem, 2.2vw, 2rem);
}

.sw-section-dark .sw-showcase-grid .wp-block-column:first-child{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sw-section-dark .sw-showcase-grid .wp-block-column:first-child p:not(.sw-eyebrow):not(.sw-price-note){
  max-width: 34ch;
}

.sw-section-dark .sw-shop-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.sw-section-dark .sw-shop-grid > .sw-category-card:last-child{
  grid-column: 1 / -1;
}

.sw-section-dark .sw-category-card{
  min-height: auto;
  padding: 26px 24px 24px;
}

.sw-section-dark .sw-category-card h3{
  margin: 0 0 14px;
  color: #232538;
  font-size: clamp(1.32rem, 1.7vw, 1.85rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 800;
  max-width: none;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.sw-section-dark .sw-category-card p{
  margin: 0;
  color: #5a5d72;
  font-size: clamp(.98rem, 1vw, 1.08rem);
  line-height: 1.58;
  max-width: 34ch;
  font-weight: 500;
}

.sw-price-note{
  margin-top: 1rem;
  width: fit-content;
}

@media (max-width: 1200px){
  .sw-section-dark .sw-showcase-grid{
    grid-template-columns: 1fr;
  }

  .sw-section-dark .sw-shop-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sw-section-dark .sw-shop-grid > .sw-category-card:last-child{
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px){
  #anfrage{
    scroll-margin-top: 96px;
  }

  .sw-hero-lookfeel__viewport{
    margin: 0 14px 0;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 308px;
  }

  .sw-quote-panel{
    padding: .95rem 1rem;
  }

  .sw-quote-panel p strong{
    font-size: 1.3rem;
  }

  .sw-section-dark .sw-shop-grid{
    grid-template-columns: 1fr;
  }

  .sw-section-dark .sw-shop-grid > .sw-category-card:last-child{
    grid-column: auto;
  }

  .sw-section-dark .sw-category-card{
    padding: 22px 20px;
  }

  .sw-section-dark .sw-category-card h3{
    font-size: 1.45rem;
  }
}


/* ============================================================
   V158 FIXES: echter Hero-Slider sauber aufgebaut
============================================================ */
.sw-media-card--slider{
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.sw-hero-lookfeel{
  display: grid;
  gap: 16px;
  height: 100%;
  padding: 18px 18px 0;
}

.sw-hero-lookfeel__bar{
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 0 8px;
}

.sw-hero-lookfeel__bar span{
  display: inline-block;
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #525779;
}

.sw-hero-lookfeel__viewport{
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 26px;
  background: #d8d6dc;
  aspect-ratio: 1 / 1.02;
  height: clamp(360px, 37vw, 520px);
  min-height: 360px;
  isolation: isolate;
}

.sw-hero-lookfeel__slides{
  position: relative;
  width: 100%;
  height: 100%;
}

.sw-hero-lookfeel__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .9s ease, visibility .55s ease;
}

.sw-hero-lookfeel__slide.is-active{
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.sw-hero-lookfeel__slide img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sw-hero-lookfeel__viewport::after{
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(to top, rgba(18,18,22,.18), rgba(18,18,22,0));
  pointer-events: none;
}

.sw-hero-lookfeel__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: #23253a;
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
  transition: transform .2s ease, background .2s ease;
}

.sw-hero-lookfeel__nav:hover{
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.sw-hero-lookfeel__nav--prev{ left: 16px; }
.sw-hero-lookfeel__nav--next{ right: 16px; }

.sw-hero-lookfeel__dots{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.sw-hero-lookfeel__dots button{
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.sw-hero-lookfeel__dots button.is-active{
  background: #fff;
  transform: scale(1.18);
}

.sw-quote-panel{
  margin-top: 0;
}

@media (max-width: 767px){
  .sw-hero-lookfeel{
    padding: 14px 14px 0;
    gap: 12px;
  }

  .sw-hero-lookfeel__bar{
    min-height: 24px;
    padding: 0 4px;
  }

  .sw-hero-lookfeel__bar span{
    font-size: .9rem;
    letter-spacing: .14em;
  }

  .sw-hero-lookfeel__viewport{
    border-radius: 22px;
    aspect-ratio: 1 / 1.08;
    height: auto;
    min-height: 300px;
  }

  .sw-hero-lookfeel__nav{
    width: 42px;
    height: 42px;
    font-size: 1.75rem;
  }

  .sw-hero-lookfeel__nav--prev{ left: 12px; }
  .sw-hero-lookfeel__nav--next{ right: 12px; }

  .sw-hero-lookfeel__dots{
    bottom: 14px;
  }
}


/* ============================================================
   V162 DESIGN LIBRARY
============================================================ */
.sw-lookfeel-card--hero{
  margin: 0;
  padding: 22px 22px 22px;
}

.sw-lookfeel-frame .sw-media-panel{
  gap: 18px;
}

.sw-lookfeel-frame .sw-lookfeel-slider{
  background: #d8d6dc;
}

.sw-lookfeel-premium-panel{
  padding: 22px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.08) 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}

.sw-lookfeel-premium-panel h3{
  margin: 0 0 10px;
  color: #f0f0f0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: .98;
  letter-spacing: -0.03em;
}

.sw-lookfeel-premium-panel p{
  margin: 0;
  color: rgba(240,240,240,.92);
  font-size: 1.14rem;
  line-height: 1.55;
}

.sw-library-note{
  margin-top: .75rem;
  color: #5a5d72;
  font-size: 1rem;
}

@media (max-width: 767px){
  .sw-lookfeel-premium-panel h3{
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .sw-lookfeel-premium-panel p{
    font-size: 1rem;
  }
}


/* ============================================================
   V163 SHOP REQUEST BLOCK REWORK
============================================================ */
.sw-section-dark .sw-showcase-grid{
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(1.25rem, 2vw, 2rem);
  align-items: stretch;
}

.sw-section-dark .sw-showcase-grid .wp-block-column{
  min-width: 0;
}

.sw-section-dark .sw-showcase-grid .wp-block-column:first-child{
  padding-right: clamp(.25rem, 1vw, .75rem);
}

.sw-section-dark .sw-showcase-grid .wp-block-column:first-child h2{
  max-width: 12ch;
  text-wrap: balance;
}

.sw-section-dark .sw-showcase-grid .wp-block-column:first-child > p:not(.sw-eyebrow):not(.sw-mini-card):not(.sw-price-note){
  max-width: 37ch;
  color: rgba(245,245,247,.9);
}

.sw-section-dark .wp-block-buttons{
  gap: 12px;
}

.sw-section-dark .sw-mini-card,
.sw-section-dark .sw-price-note{
  margin-top: 1rem;
  width: fit-content;
  max-width: 34ch;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(17,18,27,.94), rgba(17,18,27,.86));
  color: rgba(255,255,255,.96);
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

.sw-section-dark .sw-shop-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.sw-section-dark .sw-shop-grid > .sw-category-card:last-child{
  grid-column: 1 / -1;
}

.sw-section-dark .sw-category-card{
  min-height: 0;
  padding: 24px 24px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(247,244,247,.96) 0%, rgba(236,232,239,.94) 100%);
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 22px 52px rgba(16,18,31,.16), inset 0 1px 0 rgba(255,255,255,.38);
}

.sw-section-dark .sw-category-card.sw-category-card--embroidered{
  background: linear-gradient(180deg, rgba(248,244,247,.96) 0%, rgba(235,230,238,.94) 100%);
}

.sw-section-dark .sw-category-card.sw-category-card--printed{
  background: linear-gradient(180deg, rgba(244,241,247,.96) 0%, rgba(232,229,238,.94) 100%);
}

.sw-section-dark .sw-category-card.sw-category-card--basics{
  background: linear-gradient(180deg, rgba(247,243,239,.96) 0%, rgba(238,232,225,.94) 100%);
}

.sw-section-dark .sw-category-card .sw-product-card__eyebrow{
  margin: 0 0 12px;
}

.sw-section-dark .sw-category-card h3{
  margin: 0 0 12px;
  max-width: none;
  color: #232538;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 800;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

.sw-section-dark .sw-category-card p{
  max-width: 32ch;
  margin: 0;
  color: #5a5d72;
  font-size: clamp(.98rem, 1.04vw, 1.08rem);
  line-height: 1.58;
  font-weight: 500;
}

@media (max-width: 1200px){
  .sw-section-dark .sw-showcase-grid{
    grid-template-columns: 1fr;
  }

  .sw-section-dark .sw-showcase-grid .wp-block-column:first-child{
    padding-right: 0;
  }
}

@media (max-width: 767px){
  .sw-section-dark .sw-showcase-grid .wp-block-column:first-child h2{
    max-width: none;
  }

  .sw-section-dark .sw-shop-grid{
    grid-template-columns: 1fr;
  }

  .sw-section-dark .sw-shop-grid > .sw-category-card:last-child{
    grid-column: auto;
  }

  .sw-section-dark .sw-category-card{
    padding: 22px 20px;
  }

  .sw-section-dark .sw-category-card h3{
    font-size: 1.55rem;
  }
}
