    .right-sidebar .content-area {
        width: 100%;
        float: none;
        margin-right: 0;
    }

    /* KWADRAT NA ZDJĘCIE */
.muurala-card__imgbox{
  aspect-ratio: 1 / 1;          /* zawsze kwadrat */
  width: 100%;
  overflow: hidden;

  /* centrowanie zawartości (img mniejsze -> w środku) */
  display: flex;
  align-items: center;
  justify-content: center;

  /* tło/placeholder w gradiencie jak na screenie */
  background: linear-gradient(135deg, #ededed 0%, #dcdcdc 100%);
}

/* OBRAZEK: mieści się w środku */
.muurala-card__img{
  max-width: 100%;
  max-height: 100%;
  width: 70%;
  height: 70%;

  object-fit: contain;         /* większe -> mieści się w środku */
  object-position: center;
  display: block;
}

/* Placeholder jeśli brak obrazka */
.muurala-card__img.ph{
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.12) 100%);
}

.muurala-card__price .muurala-badge {
    border: 1px dashed #000;
    padding: 2px 6px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    border: 1px solid #E0413C;
    color: #E0413C;
    background-color: #fff;
}

.nav-pills .nav-link {
    background-color: #EEF0F0;
}

.muurala-swatches{
  display:flex;
  align-items:center;
  gap: 12px;
}

.muurala-swatch{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--swatch, #111);
  display:inline-block;

  /* lekka obwódka jak na screenie */
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}

.muurala-swatch-more{
  margin-left: 6px;

  font-size: 14px;
  color: var(--wp--preset--color--text);
}


/* === HOME quick styles === */
  .home-hero{
    min-height: 72vh;
    background: url('<?php echo esc_url($img['hero']); ?>') center/cover no-repeat;
    position: relative;
  }
  .home-hero::before{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.10) 55%, rgba(0,0,0,0) 100%);
  }
  .home-hero .hero-content{ position: relative; z-index: 2; }
  .btn-pill{
    border-radius: 999px;
    padding: .9rem 1.4rem;
  }
  .btn-red{
    background:#e33b36; border-color:#e33b36; color:#fff;
  }
  .btn-red:hover{ filter: brightness(.95); color:#fff; }

  .section-soft{ 
    position: relative;
    background: #f7f7f7;
    padding-bottom: 0 !important; 
  }

  .section-soft:before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 27%;
    background: rgba(255, 255, 255, 1);
    pointer-events: none; 
  }

  .section-spacer{ padding: 5rem 0; }

  /* Inspirations tiles */
  .insp-tile{
    position: relative;
    border-radius: 0;
    overflow:hidden;
    background:#000;
    min-height: 360px;
  }
  .insp-tile img{
    width:100%; height:100%;
    object-fit: cover;
    display:block;
    transform: scale(1.01);
  }
  .insp-tile::after{
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(0deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 55%);
  }
  .insp-tile .tile-content{
    position:absolute; left:2.25rem; bottom:2.25rem;
    z-index:2;
    color:#fff;
  }
  .title-hand{
    font-weight: 800;
    letter-spacing: -0.02em;
  }
  .shadow-soft{ box-shadow: 0 12px 30px rgba(0,0,0,.08); }


  @media (max-width: 991.98px){
    .home-hero{ min-height: 64vh; }
  }

  .home-hero-video {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}

.home-hero-video .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* overlay dla czytelności tekstu */
.home-hero-video .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.10) 100%
  );
  z-index: 1;
}

.home-hero-video .hero-content {
  position: relative;
  z-index: 2;
}

/* mobile fallback */
@media (max-width: 767px) {
  .home-hero-video {
    min-height: 80vh;
  }
}


.muurala-loadmore{
  border-radius: 999px;
  padding: 10px 22px;
  background: var(--wp--preset--color--accent);
  color: #fff;
  border: 0;
  font-weight: 700;
}
.muurala-loadmore:disabled{
  opacity: .7;
}


.woocommerce-product-gallery__image a {
  aspect-ratio: 1 / 1;
  display: flex;
}

.woocommerce-product-gallery__image a img {
width: 100%;
    height: auto;
    object-fit: cover;
}