
.labren-product-page {
  --lp-yellow:#ffc400;
  --lp-black:#171717;
  --lp-cream:#fffdf8;
  --lp-gray:#696969;
  --lp-line:rgba(23,23,23,.10);
  width:100%;
  background:#fff;
  color:var(--lp-black);
  font-family:Inter,Arial,sans-serif;
}

.labren-product-page *,
.labren-product-page *::before,
.labren-product-page *::after {
  box-sizing:border-box;
}

.labren-product-page__wrap {
  width:min(1320px,calc(100% - 48px));
  margin:0 auto;
  padding:34px 0 95px;
}

.labren-product-breadcrumbs {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:26px;
  color:#8a8a8a;
  font-size:10px;
}

.labren-product-breadcrumbs a {
  color:inherit;
  text-decoration:none;
}

.labren-product-main {
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  gap:58px;
  align-items:start;
}

/* GALERIA */

.labren-product-gallery__stage {
  position:relative;
  min-height:620px;
  overflow:hidden;
  border:1px solid var(--lp-line);
  border-radius:24px;
  background:
    radial-gradient(circle at 85% 10%,rgba(255,196,0,.10),transparent 30%),
    linear-gradient(145deg,#fffdf8,#fff 65%,#fff8dc);
}

.labren-product-gallery__slide {
  display:none;
  min-height:620px;
  padding:34px;
  align-items:center;
  justify-content:center;
}

.labren-product-gallery__slide.is-active {
  display:flex;
}

.labren-product-gallery__slide img {
  width:100%;
  height:100%;
  max-height:550px;
  object-fit:contain;
}

.labren-product-gallery__thumbs {
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:92px;
  gap:10px;
  margin-top:14px;
  overflow-x:auto;
  padding-bottom:6px;
}

.labren-product-gallery__thumb {
  width:92px;
  height:92px;
  padding:8px;
  border:1px solid var(--lp-line);
  border-radius:12px;
  background:#fff;
  cursor:pointer;
}

.labren-product-gallery__thumb.is-active {
  border-color:var(--lp-yellow);
  box-shadow:0 0 0 2px rgba(255,196,0,.16);
}

.labren-product-gallery__thumb img {
  width:100%;
  height:100%;
  object-fit:contain;
}

.labren-product-badge {
  position:absolute;
  top:18px;
  z-index:2;
  padding:8px 11px;
  border-radius:999px;
  font-size:8px;
  font-weight:850;
  text-transform:uppercase;
}

.labren-product-badge--sale {
  left:18px;
  background:#171717;
  color:#fff;
}

.labren-product-badge--state {
  right:18px;
  background:var(--lp-yellow);
  color:#111;
}

/* PODSUMOWANIE */

.labren-product-summary {
  position:sticky;
  top:110px;
}

.labren-product-meta {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}

.labren-product-meta span {
  padding:8px 11px;
  border:1px solid var(--lp-line);
  border-radius:999px;
  background:#fff;
  color:#555;
  font-size:8px;
  font-weight:750;
  text-transform:uppercase;
}

.labren-product-meta .is-yellow {
  border-color:var(--lp-yellow);
  background:#fff5c7;
  color:#4c3900;
}

.labren-product-summary h1 {
  margin:0;
  font-family:Montserrat,Arial,sans-serif;
  font-size:clamp(38px,4.2vw,64px);
  font-weight:900;
  line-height:1.02;
  letter-spacing:-.05em;
}

.labren-product-sku {
  margin-top:14px;
  color:#999;
  font-size:10px;
}

.labren-product-short {
  margin-top:22px;
  color:#666;
  font-size:14px;
  line-height:1.75;
}

.labren-product-short p:last-child {
  margin-bottom:0;
}

.labren-product-price {
  margin-top:28px;
  font-family:Montserrat,Arial,sans-serif;
  font-size:34px;
  font-weight:900;
}

.labren-product-price del {
  margin-right:8px;
  color:#999;
  font-size:17px;
  font-weight:600;
}

.labren-product-price ins {
  text-decoration:none;
}

.labren-product-stock {
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
  color:#555;
  font-size:11px;
  font-weight:700;
}

.labren-product-stock span {
  width:9px;
  height:9px;
  border-radius:50%;
}

.labren-product-stock .is-in {
  background:#4d9144;
  box-shadow:0 0 0 4px rgba(77,145,68,.12);
}

.labren-product-stock .is-out {
  background:#b04c4c;
  box-shadow:0 0 0 4px rgba(176,76,76,.12);
}

.labren-product-buybox {
  margin-top:26px;
  padding:20px;
  border:1px solid var(--lp-line);
  border-radius:18px;
  background:var(--lp-cream);
}

.labren-product-cart {
  display:grid;
  grid-template-columns:150px minmax(0,1fr);
  gap:12px;
}

.labren-qty {
  display:grid;
  grid-template-columns:42px 1fr 42px;
  min-height:54px;
  overflow:hidden;
  border:1px solid var(--lp-line);
  border-radius:11px;
  background:#fff;
}

.labren-qty button {
  border:0;
  background:transparent;
  color:#111;
  font-size:22px;
  cursor:pointer;
}

.labren-qty input {
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  text-align:center;
  font:inherit;
  font-size:14px;
  font-weight:800;
  -moz-appearance:textfield;
}

.labren-qty input::-webkit-inner-spin-button,
.labren-qty input::-webkit-outer-spin-button {
  -webkit-appearance:none;
  margin:0;
}

.labren-add-to-cart,
.labren-variable-cart .single_add_to_cart_button {
  min-height:54px !important;
  padding:0 24px !important;
  border:0 !important;
  border-radius:11px !important;
  background:var(--lp-yellow) !important;
  color:#111 !important;
  font-size:10px !important;
  font-weight:900 !important;
  letter-spacing:.04em;
  text-transform:uppercase;
  cursor:pointer;
}

.labren-add-to-cart:hover,
.labren-variable-cart .single_add_to_cart_button:hover {
  background:#ffd234 !important;
}

.labren-product-help {
  margin-top:16px;
  padding:16px 18px;
  border-left:3px solid var(--lp-yellow);
  background:#fffaf0;
}

.labren-product-help strong {
  display:block;
  margin-bottom:5px;
  font-size:12px;
}

.labren-product-help span {
  color:#777;
  font-size:11px;
  line-height:1.5;
}

/* OPIS */

.labren-product-details {
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(320px,.7fr);
  gap:70px;
  margin-top:82px;
  padding-top:54px;
  border-top:1px solid var(--lp-line);
}

.labren-product-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#987300;
  font-size:9px;
  font-weight:850;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.labren-product-eyebrow::before {
  content:"";
  width:30px;
  height:3px;
  border-radius:999px;
  background:var(--lp-yellow);
}

.labren-product-details h2,
.labren-related h2 {
  margin:10px 0 24px;
  font-family:Montserrat,Arial,sans-serif;
  font-size:clamp(30px,3.2vw,46px);
  font-weight:850;
  letter-spacing:-.04em;
}

.labren-product-description {
  color:#5f5f5f;
  font-size:14px;
  line-height:1.8;
}

.labren-product-specs {
  padding:26px;
  border:1px solid var(--lp-line);
  border-radius:18px;
  background:var(--lp-cream);
}

.labren-product-specs h3 {
  margin:0 0 18px;
  font-family:Montserrat,Arial,sans-serif;
  font-size:20px;
}

.labren-product-specs dl {
  margin:0;
}

.labren-product-specs dl>div {
  display:grid;
  grid-template-columns:130px minmax(0,1fr);
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid var(--lp-line);
}

.labren-product-specs dl>div:last-child {
  border-bottom:0;
}

.labren-product-specs dt {
  color:#888;
  font-size:9px;
  font-weight:750;
  text-transform:uppercase;
}

.labren-product-specs dd {
  margin:0;
  color:#222;
  font-size:12px;
  font-weight:650;
  line-height:1.5;
}

/* RELATED */

.labren-related {
  margin-top:82px;
  padding-top:54px;
  border-top:1px solid var(--lp-line);
}

.labren-related__grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}

.lp-related-card {
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid var(--lp-line);
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 30px rgba(20,20,20,.045);
}

.lp-related-card__image {
  position:relative;
  display:block;
  aspect-ratio:1/1;
  background:linear-gradient(145deg,#fffdf8,#fff 65%,#fff8dc);
}

.lp-related-card__image img {
  width:100%;
  height:100%;
  padding:16px;
  object-fit:contain;
}

.lp-related-card__state {
  position:absolute;
  top:11px;
  right:11px;
  padding:6px 8px;
  border-radius:999px;
  background:var(--lp-yellow);
  color:#111;
  font-size:7px;
  font-weight:850;
  text-transform:uppercase;
}

.lp-related-card__body {
  display:flex;
  flex:1;
  flex-direction:column;
  padding:16px;
}

.lp-related-card h3 {
  margin:0;
  font-family:Montserrat,Arial,sans-serif;
  font-size:14px;
  line-height:1.4;
}

.lp-related-card h3 a {
  color:#111;
  text-decoration:none;
}

.lp-related-card__price {
  margin-top:auto;
  padding-top:16px;
  font-size:16px;
  font-weight:850;
}

.lp-related-card__button {
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  margin-top:13px;
  border-radius:9px;
  background:var(--lp-yellow);
  color:#111;
  font-size:8px;
  font-weight:850;
  text-decoration:none;
  text-transform:uppercase;
}

/* RESPONSIVE */

@media(max-width:1050px) {
  .labren-product-main {
    grid-template-columns:1fr;
    gap:34px;
  }

  .labren-product-summary {
    position:static;
  }

  .labren-product-gallery__stage,
  .labren-product-gallery__slide {
    min-height:520px;
  }

  .labren-product-details {
    grid-template-columns:1fr;
    gap:34px;
  }

  .labren-related__grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:700px) {
  .labren-product-page__wrap {
    width:calc(100% - 28px);
    padding-top:20px;
  }

  .labren-product-gallery__stage,
  .labren-product-gallery__slide {
    min-height:380px;
  }

  .labren-product-gallery__slide {
    padding:18px;
  }

  .labren-product-gallery__thumbs {
    grid-auto-columns:72px;
  }

  .labren-product-gallery__thumb {
    width:72px;
    height:72px;
  }

  .labren-product-summary h1 {
    font-size:40px;
  }

  .labren-product-cart {
    grid-template-columns:1fr;
  }

  .labren-product-specs dl>div {
    grid-template-columns:105px minmax(0,1fr);
  }
}

@media(max-width:430px) {
  .labren-product-gallery__stage,
  .labren-product-gallery__slide {
    min-height:310px;
  }

  .labren-related__grid {
    grid-template-columns:1fr;
  }
}
